Maven Repo
API Repository
Maven Repo
If you are developing for the game side.
<!-- andrei1058 snapshots repo-->
<repository>
<id>andrei1058-repo</id>
<url>http://repo.andrei1058.com/snapshots/</url>
</repository>
<!-- andrei1058 releases repo-->
<repository>
<id>andrei1058-repo</id>
<url>http://repo.andrei1058.com/releases/</url>
</repository>
<!-- SteveSus dependency -->
<dependency>
<groupId>com.andrei1058</groupId>
<artifactId>stevesus-api</artifactId>
<version>version</version>
<scope>provided</scope>
</dependency>
<!-- SteveSus common dependency -->
<!-- This enhances the stevesus api because the common -->
<!-- part is used both on game-side and connector-side. -->
<dependency>
<groupId>com.andrei1058</groupId>
<artifactId>stevesus-common-api</artifactId>
<version>version</version>
<scope>provided</scope>
</dependency>
If you are developing for the connector side.
<!-- andrei1058 snapshots repo-->
<repository>
<id>andrei1058-repo</id>
<url>http://repo.andrei1058.com/snapshots/</url>
</repository>
<!-- andrei1058 releases repo-->
<repository>
<id>andrei1058-repo</id>
<url>http://repo.andrei1058.com/releases/</url>
</repository>
<!-- SteveSus Connector dependency -->
<dependency>
<groupId>com.andrei1058</groupId>
<artifactId>stevesus-connector-api</artifactId>
<version>version</version>
<scope>provided</scope>
</dependency>
<!-- SteveSus common dependency -->
<!-- This enhances the api because the common -->
<!-- part is used both on game-side and connector-side. -->
<dependency>
<groupId>com.andrei1058</groupId>
<artifactId>stevesus-common-api</artifactId>
<version>version</version>
<scope>provided</scope>
</dependency>
Last updated
Was this helpful?