Skip to content

Commit

Permalink
Merge pull request #148 from ebocher/deploy_plugin
Browse files Browse the repository at this point in the history
Fix deploy action
  • Loading branch information
ebocher authored Jan 11, 2023
2 parents 290a81b + 3e2d863 commit 37ae13d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
+ Fix javadoc build errors.
+ Remove OrbisParent dependency
+ Fix HERMANNSKOGEL DATUM , add seven parameters transformation
+ Fix POSTDAM DATUM, add seven parameters transformation
+ Fix POSTDAM DATUM, add seven parameters transformation
+ Add maven deploy profile
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,29 @@
</plugins>
</build>

<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

</project>

0 comments on commit 37ae13d

Please sign in to comment.