Skip to content

Commit 08a354c

Browse files
committed
merge jacoco maven plugin declaration to parent pom
Signed-off-by: yue9944882 <[email protected]>
1 parent b2d937d commit 08a354c

File tree

6 files changed

+22
-66
lines changed

6 files changed

+22
-66
lines changed

extended/pom.xml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,6 @@
8383
<plugin>
8484
<groupId>org.jacoco</groupId>
8585
<artifactId>jacoco-maven-plugin</artifactId>
86-
<version>0.8.8</version>
87-
<executions>
88-
<execution>
89-
<id>jacoco-initialize</id>
90-
<goals>
91-
<goal>prepare-agent</goal>
92-
</goals>
93-
</execution>
94-
<execution>
95-
<id>jacoco-report</id>
96-
<phase>test</phase>
97-
<goals>
98-
<goal>report</goal>
99-
</goals>
100-
</execution>
101-
</executions>
10286
</plugin>
10387
<plugin>
10488
<groupId>org.apache.felix</groupId>
@@ -128,7 +112,7 @@
128112
<artifactId>maven-surefire-plugin</artifactId>
129113
<configuration>
130114
<argLine>
131-
@{argLine} -Xms512m -Xmx1500m --illegal-access=warn --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.time=ALL-UNNAMED
115+
@{argLine} -Xms1024m -Xmx2048m --illegal-access=warn --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.time=ALL-UNNAMED
132116
</argLine>
133117
<parallel>methods</parallel>
134118
<perCoreThreadCount>false</perCoreThreadCount>

kubernetes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<value>conf/log4j.properties</value>
3535
</property>
3636
</systemProperties>
37-
<argLine>-Xms512m -Xmx1500m</argLine>
37+
<argLine>-Xms1024m -Xmx2000m</argLine>
3838
<parallel>methods</parallel>
3939
<useUnlimitedThreads>true</useUnlimitedThreads>
4040
<forkCount>1</forkCount>

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,26 @@ limitations under the License.
554554
</execution>
555555
</executions>
556556
</plugin>
557+
<plugin>
558+
<groupId>org.jacoco</groupId>
559+
<artifactId>jacoco-maven-plugin</artifactId>
560+
<version>0.8.8</version>
561+
<executions>
562+
<execution>
563+
<id>jacoco-initialize</id>
564+
<goals>
565+
<goal>prepare-agent</goal>
566+
</goals>
567+
</execution>
568+
<execution>
569+
<id>jacoco-report</id>
570+
<phase>test</phase>
571+
<goals>
572+
<goal>report</goal>
573+
</goals>
574+
</execution>
575+
</executions>
576+
</plugin>
557577
</plugins>
558578
</build>
559579
</profile>

spring-aot/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,6 @@
5252
<plugin>
5353
<groupId>org.jacoco</groupId>
5454
<artifactId>jacoco-maven-plugin</artifactId>
55-
<version>0.8.8</version>
56-
<executions>
57-
<execution>
58-
<id>jacoco-initialize</id>
59-
<goals>
60-
<goal>prepare-agent</goal>
61-
</goals>
62-
</execution>
63-
<execution>
64-
<id>jacoco-report</id>
65-
<phase>test</phase>
66-
<goals>
67-
<goal>report</goal>
68-
</goals>
69-
</execution>
70-
</executions>
7155
</plugin>
7256
<plugin>
7357
<groupId>org.apache.felix</groupId>

spring/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,6 @@
7777
<plugin>
7878
<groupId>org.jacoco</groupId>
7979
<artifactId>jacoco-maven-plugin</artifactId>
80-
<version>0.8.8</version>
81-
<executions>
82-
<execution>
83-
<id>jacoco-initialize</id>
84-
<goals>
85-
<goal>prepare-agent</goal>
86-
</goals>
87-
</execution>
88-
<execution>
89-
<id>jacoco-report</id>
90-
<phase>test</phase>
91-
<goals>
92-
<goal>report</goal>
93-
</goals>
94-
</execution>
95-
</executions>
9680
</plugin>
9781
<plugin>
9882
<groupId>org.apache.felix</groupId>

util/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -123,22 +123,6 @@
123123
<plugin>
124124
<groupId>org.jacoco</groupId>
125125
<artifactId>jacoco-maven-plugin</artifactId>
126-
<version>0.8.8</version>
127-
<executions>
128-
<execution>
129-
<id>jacoco-initialize</id>
130-
<goals>
131-
<goal>prepare-agent</goal>
132-
</goals>
133-
</execution>
134-
<execution>
135-
<id>jacoco-report</id>
136-
<phase>test</phase>
137-
<goals>
138-
<goal>report</goal>
139-
</goals>
140-
</execution>
141-
</executions>
142126
</plugin>
143127
<plugin>
144128
<groupId>org.apache.felix</groupId>

0 commit comments

Comments
 (0)