|
46 | 46 | <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version> |
47 | 47 | <versions-maven-plugin.version>2.16.2</versions-maven-plugin.version> |
48 | 48 | <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
49 | | - <github-release-plugin.version>1.6.0</github-release-plugin.version> |
50 | 49 | <maven.version>3.6</maven.version> |
51 | 50 | </properties> |
52 | 51 | <modules> |
|
107 | 106 | <artifactId>nexus-staging-maven-plugin</artifactId> |
108 | 107 | <version>${nexus-staging-maven-plugin.version}</version> |
109 | 108 | </plugin> |
110 | | - <plugin> |
111 | | - <groupId>de.jutzig</groupId> |
112 | | - <artifactId>github-release-plugin</artifactId> |
113 | | - <version>${github-release-plugin.version}</version> |
114 | | - </plugin> |
115 | 109 | </plugins> |
116 | 110 | </pluginManagement> |
117 | 111 | <plugins> |
|
261 | 255 | </dependency> |
262 | 256 | </dependencies> |
263 | 257 | <profiles> |
264 | | - <profile> |
265 | | - <id>ossrh</id> |
266 | | - <activation> |
267 | | - <property> |
268 | | - <name>channel</name> |
269 | | - <value>ossrh</value> |
270 | | - </property> |
271 | | - </activation> |
272 | | - <build> |
273 | | - <plugins> |
274 | | - <plugin> |
275 | | - <groupId>org.apache.maven.plugins</groupId> |
276 | | - <artifactId>maven-gpg-plugin</artifactId> |
277 | | - <executions> |
278 | | - <execution> |
279 | | - <id>sign-artifacts</id> |
280 | | - <phase>verify</phase> |
281 | | - <goals> |
282 | | - <goal>sign</goal> |
283 | | - </goals> |
284 | | - </execution> |
285 | | - </executions> |
286 | | - </plugin> |
287 | | - <plugin> |
288 | | - <groupId>org.sonatype.plugins</groupId> |
289 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
290 | | - <extensions>true</extensions> |
291 | | - <configuration> |
292 | | - <serverId>ossrh</serverId> |
293 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
294 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
295 | | - </configuration> |
296 | | - </plugin> |
297 | | - </plugins> |
298 | | - </build> |
299 | | - <distributionManagement> |
300 | | - <snapshotRepository> |
301 | | - <id>ossrh</id> |
302 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
303 | | - </snapshotRepository> |
304 | | - </distributionManagement> |
305 | | - </profile> |
306 | | - <profile> |
307 | | - <id>github</id> |
308 | | - <activation> |
309 | | - <property> |
310 | | - <name>channel</name> |
311 | | - <value>github</value> |
312 | | - </property> |
313 | | - </activation> |
314 | | - <build> |
315 | | - <plugins> |
316 | | - <plugin> |
317 | | - <groupId>de.jutzig</groupId> |
318 | | - <artifactId>github-release-plugin</artifactId> |
319 | | - <configuration> |
320 | | - <releaseName>${project.name} ${project.version}</releaseName> |
321 | | - <tag>v${project.version}</tag> |
322 | | - </configuration> |
323 | | - </plugin> |
324 | | - </plugins> |
325 | | - </build> |
326 | | - </profile> |
327 | 258 | <profile> |
328 | 259 | <id>windows</id> |
329 | 260 | <properties> |
|
0 commit comments