Skip to content

Commit 47126fb

Browse files
committed
Remove plugin duplicates
Signed-off-by: Artur Ciocanu <[email protected]>
1 parent b1c3a8b commit 47126fb

File tree

24 files changed

+93
-519
lines changed

24 files changed

+93
-519
lines changed

dapr-spring/dapr-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
99
<version>1.17.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>dapr-spring-boot-autoconfigure</artifactId>

dapr-spring/dapr-spring-boot-tests/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
99
<version>1.17.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>dapr-spring-boot-tests</artifactId>

dapr-spring/dapr-spring-data/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
99
<version>1.17.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>dapr-spring-data</artifactId>

dapr-spring/dapr-spring-messaging/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
99
<version>1.17.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>dapr-spring-messaging</artifactId>

dapr-spring/dapr-spring-workflows/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
99
<version>1.17.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>dapr-spring-workflows</artifactId>

dapr-spring/pom.xml

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<groupId>io.dapr</groupId>
99
<artifactId>dapr-sdk-parent</artifactId>
1010
<version>1.17.0-SNAPSHOT</version>
11+
<relativePath>../pom.xml</relativePath>
1112
</parent>
1213

1314
<groupId>io.dapr.spring</groupId>
@@ -73,55 +74,15 @@
7374
<plugin>
7475
<groupId>org.apache.maven.plugins</groupId>
7576
<artifactId>maven-source-plugin</artifactId>
76-
<version>${maven-sources-plugin.version}</version>
77-
<executions>
78-
<execution>
79-
<id>attach-sources</id>
80-
<goals>
81-
<goal>jar-no-fork</goal>
82-
</goals>
83-
</execution>
84-
</executions>
8577
</plugin>
86-
8778
<plugin>
8879
<groupId>org.apache.maven.plugins</groupId>
8980
<artifactId>maven-javadoc-plugin</artifactId>
90-
<version>${maven-javadoc-plugin.version}</version>
91-
<configuration>
92-
<notimestamp>true</notimestamp>
93-
</configuration>
94-
<executions>
95-
<execution>
96-
<id>attach-javadocs</id>
97-
<goals>
98-
<goal>jar</goal>
99-
</goals>
100-
</execution>
101-
</executions>
10281
</plugin>
103-
10482
<plugin>
10583
<groupId>org.jacoco</groupId>
10684
<artifactId>jacoco-maven-plugin</artifactId>
107-
<version>${jacoco-maven-plugin.version}</version>
10885
<executions>
109-
<execution>
110-
<id>default-prepare-agent</id>
111-
<goals>
112-
<goal>prepare-agent</goal>
113-
</goals>
114-
</execution>
115-
<execution>
116-
<id>report</id>
117-
<phase>test</phase>
118-
<goals>
119-
<goal>report</goal>
120-
</goals>
121-
<configuration>
122-
<outputDirectory>target/jacoco-report/</outputDirectory>
123-
</configuration>
124-
</execution>
12586
<execution>
12687
<id>check</id>
12788
<goals>

examples/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<groupId>io.dapr</groupId>
99
<artifactId>dapr-sdk-parent</artifactId>
1010
<version>1.17.0-SNAPSHOT</version>
11+
<relativePath>../pom.xml</relativePath>
1112
</parent>
1213

1314
<artifactId>dapr-sdk-examples</artifactId>

0 commit comments

Comments
 (0)