Skip to content

Commit 40f5979

Browse files
Dewey joseDewey jose
authored andcommitted
Set maven-deploy-plugin skip: true for parent and param plugin, skip: false for maven plugin
1 parent fe207b0 commit 40f5979

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

graphqlcodegen-maven-plugin/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@
9898
<groupId>com.diffplug.spotless</groupId>
9999
<artifactId>spotless-maven-plugin</artifactId>
100100
</plugin>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-deploy-plugin</artifactId>
104+
<version>3.1.1</version>
105+
<configuration>
106+
<skip>false</skip>
107+
</configuration>
108+
</plugin>
101109
</plugins>
102110
</build>
103111

graphqlcodegen-param-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<plugin>
5757
<groupId>org.apache.maven.plugins</groupId>
5858
<artifactId>maven-deploy-plugin</artifactId>
59-
<version>${maven-deploy-plugin.version}</version>
59+
<version>3.1.1</version>
6060
<configuration>
6161
<skip>true</skip>
6262
</configuration>

pom.xml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@
124124
</distributionManagement>
125125

126126
<build>
127+
<plugins>
128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-deploy-plugin</artifactId>
131+
<version>3.1.1</version>
132+
<configuration>
133+
<skip>true</skip>
134+
</configuration>
135+
</plugin>
136+
</plugins>
127137
<pluginManagement>
128138
<plugins>
129139
<plugin>
@@ -169,14 +179,6 @@
169179
</execution>
170180
</executions>
171181
</plugin>
172-
<plugin>
173-
<groupId>org.apache.maven.plugins</groupId>
174-
<artifactId>maven-deploy-plugin</artifactId>
175-
<version>3.1.1</version>
176-
<configuration>
177-
<skip>true</skip>
178-
</configuration>
179-
</plugin>
180182
</plugins>
181183
</pluginManagement>
182184
</build>

0 commit comments

Comments
 (0)