Skip to content

Commit

Permalink
DOC: Add repository config to get snapshot package of maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhm0311 authored and jhpark816 committed Jul 8, 2024
1 parent c272605 commit 9355a09
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,38 @@ ___
## Getting Started
___
### Gradle

#### Repository

```groovy
repositories {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
```

#### Dependency

```groovy
dependencies {
testImplementation "com.jam2in.arcus:arcus-test-container:0.0.1-SNAPSHOT"
}
```

### Maven

#### Repository

```xml
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
```

#### Dependency

```xml
<dependency>
<groupId>com.jam2in.arcus</groupId>
Expand Down

0 comments on commit 9355a09

Please sign in to comment.