Skip to content

Commit

Permalink
modified pom to be able to publish to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
torakiki committed Nov 6, 2023
1 parent 6a181a6 commit 08cd572
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Expand Up @@ -20,6 +20,15 @@
<tag>v5.1.3</tag>
</scm>

<licenses>
<license>
<name>GNU Affero General Public License</name>
<url>https://www.gnu.org/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
<comments>AGPLv3</comments>
</license>
</licenses>

<distributionManagement>
<snapshotRepository>
<id>pdfsam-ossrh-snapshots</id>
Expand Down Expand Up @@ -95,6 +104,23 @@
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down

0 comments on commit 08cd572

Please sign in to comment.