maven-gradle-repo-guide/README.md

40 lines
918 B
Markdown
Raw Normal View History

# Maven Gradle Repo Guide
2021-07-28 15:58:12 +07:00
- Apache Maven
```xml
<repositories>
<repository>
<id>CUBETIQ Directory</id>
<url>https://nexus.kh.cubetiqs.com/repository/maven/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>CUBETIQ Directory Snapshots</id>
<url>https://nexus.kh.cubetiqs.com/repository/maven-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
```
- Gradle Groovy DSL
```groovy
repositories {
maven { url "https://nexus.kh.cubetiqs.com/repository/maven/" }
maven { url "https://nexus.kh.cubetiqs.com/repository/maven-snapshots/" }
}
```
- Gradle Kotlin DSL
```kotlin
repositories {
maven("https://nexus.kh.cubetiqs.com/repository/maven/")
maven("https://nexus.kh.cubetiqs.com/repository/maven-snapshots/")
}
```