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