Skip to content

Commit

Permalink
Update intro.md
Browse files Browse the repository at this point in the history
Signed-off-by: Ryder Belserion <[email protected]>
  • Loading branch information
ryderbelserion authored Apr 14, 2024
1 parent 211f728 commit e7ab11e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/plugins/crazycrates/api/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ sidebar_label: API Intro
```gradle
repositories {
maven {
url = "https://repo.crazycrew.us/releases"
url = "https://repo.crazycrew.us/snapshots"
}
}
```

```gradle
dependencies {
compileOnly "us.crazycrew.crazycrates:api:0.3"
compileOnly "us.crazycrew.crazycrates:api:1.0-snapshot"
}
```
</details>
Expand All @@ -39,13 +39,13 @@ dependencies {

```gradle
repositories {
maven("https://repo.crazycrew.us/releases")
maven("https://repo.crazycrew.us/snapshots")
}
```

```gradle
dependencies {
compileOnly("us.crazycrew.crazycrates:api:0.3")
compileOnly("us.crazycrew.crazycrates:api:1.0-snapshot")
}
```
</details>
Expand All @@ -59,15 +59,15 @@ dependencies {
```xml
<repository>
<id>crazycrew-releases</id>
<url>https://repo.crazycrew.us/releases</url>
<url>https://repo.crazycrew.us/snapshots</url>
</repository>
```

```xml
<dependency>
<groupId>us.crazycrew.crazycrates</groupId>
<artifactId>api</artifactId>
<version>0.3</version>
<version>1.0-snapshot</version>
<scope>provided</scope>
</dependency>
```
Expand Down

0 comments on commit e7ab11e

Please sign in to comment.