Skip to content

Commit 8f7cb38

Browse files
Jujube OrangeJujube Orange
authored andcommitted
build(maven): move extension declared in module at root level
Having multiple submodules declaring extensions cause the maven-deploy-plugin to not deploy artifacts when using -DdeployAtEnd=true. See apache/maven-deploy-plugin#1
1 parent 60b9efd commit 8f7cb38

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

.mvn/extensions.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
3+
<extension>
4+
<groupId>kr.motd.maven</groupId>
5+
<artifactId>os-maven-plugin</artifactId>
6+
<version>1.5.0.Final</version>
7+
</extension>
38
<extension>
49
<groupId>me.qoomon</groupId>
510
<artifactId>maven-git-versioning-extension</artifactId>

robert-crypto-grpc-server-messaging/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,6 @@
6969
</dependencies>
7070

7171
<build>
72-
<extensions>
73-
<extension>
74-
<groupId>kr.motd.maven</groupId>
75-
<artifactId>os-maven-plugin</artifactId>
76-
<version>1.5.0.Final</version>
77-
</extension>
78-
</extensions>
7972
<plugins>
8073
<plugin>
8174
<groupId>org.xolstice.maven.plugins</groupId>

robert-crypto-grpc-server/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,6 @@
154154
</dependencies>
155155

156156
<build>
157-
<extensions>
158-
<extension>
159-
<groupId>kr.motd.maven</groupId>
160-
<artifactId>os-maven-plugin</artifactId>
161-
<version>1.5.0.Final</version>
162-
</extension>
163-
</extensions>
164157
<plugins>
165158
<plugin>
166159
<groupId>org.xolstice.maven.plugins</groupId>

0 commit comments

Comments
 (0)