📖
SteveSus
  • Introduction
  • Configuration
    • config.yml
  • Hooks
    • PlaceholderAPI
  • Development
    • Getting Started
    • Maven Repo
Powered by GitBook
On this page

Was this helpful?

  1. Development

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>
PreviousGetting Started

Last updated 4 years ago

Was this helpful?