Skip to content

Commit

Permalink
11.4.0.0: Update README.MD for API
Browse files Browse the repository at this point in the history
  • Loading branch information
SirBlobman committed May 21, 2023
1 parent 3bc994f commit ecc8f61
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions api/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ A lot of developers use maven to build projects more easily.
**Repository: SirBlobman Public**

Maven:

```xml
<repositories>
<!-- SirBlobman Public Repository -->
Expand All @@ -21,8 +20,7 @@ Maven:
</repositories>
```

Gradle:

Gradle Groovy:
```groovy
repositories {
maven {
Expand All @@ -32,6 +30,7 @@ repositories {
}
```

Gradle Kotlin:
```kotlin
repositories {
maven("https://nexus.sirblobman.xyz/public/")
Expand All @@ -41,40 +40,39 @@ repositories {
**Dependency: CombatLogX API**

Maven:

```xml
<dependencies>
<!-- BlueSlimeCore -->
<dependency>
<groupId>com.github.sirblobman.api</groupId>
<artifactId>core</artifactId>
<version>2.8-SNAPSHOT</version>
<version>2.9-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

<!-- CombatLogX API -->
<dependency>
<groupId>com.github.sirblobman.combatlogx</groupId>
<artifactId>api</artifactId>
<version>11.3-SNAPSHOT</version>
<version>11.4-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
```

Gradle:

Gradle Groovy:
```groovy
dependencies {
compileOnly 'com.github.sirblobman.api:core:2.8-SNAPSHOT'
compileOnly 'com.github.sirblobman.combatlogx:api:11.3-SNAPSHOT'
compileOnly 'com.github.sirblobman.api:core:2.9-SNAPSHOT'
compileOnly 'com.github.sirblobman.combatlogx:api:11.4-SNAPSHOT'
}
```

Gradle Kotlin:
```kotlin
dependencies {
compileOnly("com.github.sirblobman.api:core:2.8-SNAPSHOT")
compileOnly("com.github.sirblobman.combatlogx:api:11.3-SNAPSHOT")
compileOnly("com.github.sirblobman.api:core:2.9-SNAPSHOT")
compileOnly("com.github.sirblobman.combatlogx:api:11.4-SNAPSHOT")
}
```

Expand Down

0 comments on commit ecc8f61

Please sign in to comment.