-
Notifications
You must be signed in to change notification settings - Fork 58
MavenHowTo
johnny.bufu edited this page Jun 4, 2015
·
1 revision
Add following to your project's pom.xml in the <dependencies>
section:
<dependency>
<groupId>org.openid4java</groupId>
<artifactId>openid4java</artifactId>
<version>0.9.7</version>
</dependency>
If you want to try the SNAPSHOT version, add the following to your pom.xml:
<project ...>
...
<repositories>
<repository>
<id>openid4java snapshots repository</id>
<name>openid4java snapshots repository</name>
<url>https://oss.sonatype.org/content/repositories/openid4java-snapshots</url>
<snapshots />
</repository>
</repositories>
...
<dependencies>
...
<dependency>
<groupId>org.openid4java</groupId>
<artifactId>openid4java</artifactId>
<version>0.9.8-SNAPSHOT</version>
</dependency>
...
</dependencies>
...
</project>