Skip to content

Commit

Permalink
Updating POM (#4)
Browse files Browse the repository at this point in the history
Co-authored-by: Kim Freskgård <kim@curity.io>
  • Loading branch information
kfreskgard and Kim Freskgård authored Feb 13, 2023
1 parent 74b11c2 commit 2bc1d24
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.example.curity</groupId>
<artifactId>nonce-authenticator</artifactId>
<groupId>io.curity.identityserver.plugin</groupId>
<artifactId>identityserver.plugins.authenticators.nonce</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

Expand Down Expand Up @@ -50,6 +50,23 @@
</plugins>
</build>

<repositories>
<repository>
<id>customer-release-repo</id>
<url>https://nexus.curityio.net/repository/customer-release-repo/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>customer-snapshot-repo</id>
<url>https://nexus.curityio.net/repository/customer-snapshot-repo</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>se.curity.identityserver</groupId>
Expand All @@ -68,6 +85,17 @@
<artifactId>jose4j</artifactId>
<version>0.9.1</version>
</dependency>

</dependencies>
<distributionManagement>
<repository>
<id>customer-release-repo</id>
<name>Curity Nexus Release Repository</name>
<url>https://nexus.curityio.net/repository/customer-release-repo/</url>
</repository>
<snapshotRepository>
<id>customer-snapshot-repo</id>
<name>Curity Nexus Snapshot Repository</name>
<url>https://nexus.curityio.net/repository/customer-snapshot-repo/</url>
</snapshotRepository>
</distributionManagement>
</project>

0 comments on commit 2bc1d24

Please sign in to comment.