-
Notifications
You must be signed in to change notification settings - Fork 30
Maven Repository
Endi S. Dewata edited this page Jul 10, 2024
·
2 revisions
The Maven repository for JSS is located at https://github.com/dogtagpki/repo/tree/maven.
Warning
|
This is still under construction. Currently the artifacts only do not contain the native binaries needed for runtime. |
To use the repository, add the following into pom.xml
:
<repository>
<id>dogtagpki</id>
<url>https://raw.githubusercontent.com/dogtagpki/repo/maven</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
To use the modules, add the dependencies as needed:
<dependency>
<groupId>org.dogtagpki.jss</groupId>
<artifactId>jss-base</artifactId>
<version>5.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.dogtagpki.jss</groupId>
<artifactId>jss-tomcat</artifactId>
<version>5.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.dogtagpki.jss</groupId>
<artifactId>jss-tomcat-9.0</artifactId>
<version>5.6.0-SNAPSHOT</version>
</dependency>