Skip to content

Commit

Permalink
Fix releases deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Mar 12, 2020
1 parent 2d5a317 commit a1fd76c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- The first library release

[Unreleased]: https://github.com/PDAL/java/compare/v1.0.0...HEAD
[v1.0.0]: https://github.com/PDAL/java/compare/567d940706b08860f99492713ce706c3be02c33e...v1.0.0
[3.567d940]: https://github.com/geotrellis/gdal-warp-bindings/compare/0cc769caa6a9d179fae4dfa0aca8e291b64bbdb0...567d940706b08860f99492713ce706c3be02c33e
[Unreleased]: https://github.com/geotrellis/compare/v1.0.0...HEAD
[v1.0.0]: https://github.com/geotrellis/compare/567d940706b08860f99492713ce706c3be02c33e...v1.0.0
[33.567d940]: https://github.com/geotrellis/gdal-warp-bindings/compare/0cc769caa6a9d179fae4dfa0aca8e291b64bbdb0...567d940706b08860f99492713ce706c3be02c33e
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
Expand All @@ -70,14 +73,26 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
<failOnWarnings>false</failOnWarnings>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<serverId>sonatype_releases</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
Expand Down

0 comments on commit a1fd76c

Please sign in to comment.