Skip to content

Commit

Permalink
adventure update
Browse files Browse the repository at this point in the history
  • Loading branch information
CubBossa committed Feb 21, 2024
1 parent 1f43d10 commit 9c008f6
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,42 @@
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>nexus-release</id>
<url>https://nexus.leonardbausenwein.de/repository/maven-public/</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.5.1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<serverId>nexus</serverId>
<nexusUrl>http://localhost:8081/nexus/</nexusUrl>
<skipStaging>true</skipStaging>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 9c008f6

Please sign in to comment.