Skip to content

Commit 2c29e87

Browse files
authored
Merge pull request #2493 from yue9944882/chore/jacoco-plugin-mgmt-cleanup
Chore: Merge jacoco maven plugin declaration to parent pom
2 parents b2d937d + d016cfc commit 2c29e87

File tree

4 files changed

+20
-48
lines changed

4 files changed

+20
-48
lines changed

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)