Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Update api-documentation.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored Jul 13, 2023
1 parent 444d7f4 commit f74f444
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions sources/api/api-documentation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ repositories {
}
dependencies {
implementation(platform("com.intellectualsites.bom:bom-1.18.x:{bomVersion}"))
compileOnly("com.plotsquared:PlotSquared-Core")
implementation(platform("com.intellectualsites.bom:bom-newest:{bomVersion}"))
compileOnly("com.plotsquared:plotsquared-core")
}
----

Expand All @@ -48,8 +48,8 @@ repositories {
dependencies {
implementation(platform("com.intellectualsites.bom:bom-newest:{bomVersion}"))
compileOnly("com.plotsquared:PlotSquared-Core")
compileOnly("com.plotsquared:PlotSquared-Bukkit") { isTransitive = false }
compileOnly("com.plotsquared:plotsquared-core")
compileOnly("com.plotsquared:plotsquared-bukkit") { isTransitive = false }
}
----

Expand Down Expand Up @@ -77,7 +77,7 @@ dependencies {
<dependencies>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>PlotSquared-Core</artifactId>
<artifactId>plotsquared-core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -97,7 +97,7 @@ dependencies {
<dependencies>
<dependency>
<groupId>com.intellectualsites.bom</groupId>
<artifactId>bom-1.18.x</artifactId>
<artifactId>bom-newest</artifactId>
<version>{bomVersion}</version>
<scope>import</scope>
<type>pom</type>
Expand All @@ -107,17 +107,17 @@ dependencies {
<dependencies>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>PlotSquared-Core</artifactId>
<artifactId>plotsquared-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>PlotSquared-Bukkit</artifactId>
<artifactId>plotsquared-bukkit</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>PlotSquared-Core</artifactId>
<artifactId>plotsquared-core</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
Expand Down

0 comments on commit f74f444

Please sign in to comment.