Skip to content

Commit 3d87581

Browse files
authored
Remove unused 'ci' profile (#2987)
1 parent 23e3786 commit 3d87581

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

pom.xml

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Tests & Code coverage:
99
1010
* Executing benchmark assertions: `mvn clean test -Pbenchmark`
1111
* Executing benchmarks (long running!): `mvn test -Pbenchmark -pl vavr-benchmark`
12-
* Executing code coverage report: `mvn -P ci clean test jacoco:report`
1312
1413
We use these goals frequently to keep the dependencies and plugins up-to-date:
1514
@@ -302,10 +301,6 @@ We use these goals frequently to keep the dependencies and plugins up-to-date:
302301
<artifactId>maven-surefire-plugin</artifactId>
303302
<version>${maven.surefire.version}</version>
304303
<configuration>
305-
<!-- ForkJoinPool parallelism for io.vavr.concurrent.Future.
306-
Typically this is the number of cores by default.
307-
In the travis-ci build env this is currently set to 1. -->
308-
<!--<argLine>-Djava.util.concurrent.ForkJoinPool.common.parallelism=1</argLine>-->
309304
<parallel>all</parallel>
310305
<threadCount>4</threadCount>
311306
<reuseForks>true</reuseForks>
@@ -315,38 +310,6 @@ We use these goals frequently to keep the dependencies and plugins up-to-date:
315310
</pluginManagement>
316311
</build>
317312
<profiles>
318-
<!-- A profile for code coverage analysis in ci environments -->
319-
<profile>
320-
<id>ci</id>
321-
<activation>
322-
<property>
323-
<name>env.CI</name>
324-
</property>
325-
</activation>
326-
<build>
327-
<plugins>
328-
<plugin>
329-
<groupId>org.jacoco</groupId>
330-
<artifactId>jacoco-maven-plugin</artifactId>
331-
<version>${maven.jacoco.version}</version>
332-
<executions>
333-
<execution>
334-
<goals>
335-
<goal>prepare-agent</goal>
336-
</goals>
337-
</execution>
338-
<execution>
339-
<id>report</id>
340-
<phase>test</phase>
341-
<goals>
342-
<goal>report</goal>
343-
</goals>
344-
</execution>
345-
</executions>
346-
</plugin>
347-
</plugins>
348-
</build>
349-
</profile>
350313
<profile>
351314
<id>sonatype-oss-release</id>
352315
<modules>

0 commit comments

Comments
 (0)