Skip to content

Commit 7d61ba2

Browse files
committed
Fix deploy issue
1 parent fb173d9 commit 7d61ba2

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

grpc-rest-proxy/pom.xml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,29 +77,23 @@
7777
<build>
7878
<plugins>
7979
<plugin>
80+
<groupId>org.apache.maven.plugins</groupId>
8081
<artifactId>maven-source-plugin</artifactId>
82+
<version>3.2.1</version>
8183
<executions>
8284
<execution>
8385
<id>attach-sources</id>
84-
<phase>deploy</phase>
8586
<goals>
86-
<goal>jar-no-fork</goal>
87+
<goal>jar</goal>
8788
</goals>
8889
</execution>
8990
</executions>
9091
</plugin>
9192

9293
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
9395
<artifactId>maven-deploy-plugin</artifactId>
94-
<executions>
95-
<execution>
96-
<id>deploy</id>
97-
<phase>deploy</phase>
98-
<goals>
99-
<goal>deploy</goal>
100-
</goals>
101-
</execution>
102-
</executions>
96+
<version>3.1.4</version>
10397
</plugin>
10498
</plugins>
10599
</build>

0 commit comments

Comments
 (0)