Skip to content

Commit

Permalink
Rename artifact to just java-utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
srnyx committed Sep 12, 2023
1 parent d14b69a commit 8ff4604
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# srnyx's Java Utilities [![Release](https://jitpack.io/v/srnyx/srnyx-java-utilities.svg)](https://jitpack.io/#xyz.srnyx/srnyx-java-utilities)
# srnyx's Java Utilities [![Release](https://jitpack.io/v/srnyx/java-utilities.svg)](https://jitpack.io/#xyz.srnyx/java-utilities)

A general Java utility library for srnyx's projects

### Wiki / Javadocs

- **Wiki:** [github.com/srnyx/srnyx-java-utilities/wiki](https://github.com/srnyx/srnyx-java-utilities/wiki)
- **Javadocs:** [javadoc.jitpack.io/xyz/srnyx/srnyx-java-utilities/latest/javadoc/index.html](https://javadoc.jitpack.io/xyz/srnyx/srnyx-java-utilities/latest/javadoc/index.html)
- **Wiki:** [github.com/srnyx/java-utilities/wiki](https://github.com/srnyx/java-utilities/wiki)
- **Javadocs:** [javadoc.jitpack.io/xyz/srnyx/java-utilities/latest/javadoc/index.html](https://javadoc.jitpack.io/xyz/srnyx/java-utilities/latest/javadoc/index.html)

## Importing

You can import the library using [Jitpack](https://jitpack.io/#xyz.srnyx/srnyx-java-utilities). Make sure to replace `VERSION` with the version you want. You **MUST** use `implementation`.
You can import the library using [Jitpack](https://jitpack.io/#xyz.srnyx/java-utilities). Make sure to replace `VERSION` with the version you want. You **MUST** use `implementation`.

- **Gradle Kotlin** (`build.gradle.kts`)**:**
```kotlin
Expand All @@ -24,7 +24,7 @@ repositories {
}
// Lazy Library dependency declaration
dependencies {
implementation("xyz.srnyx", "srnyx-java-utilities", "VERSION")
implementation("xyz.srnyx", "java-utilities", "VERSION")
}
```
- **Gradle Groovy** (`build.gradle`)**:**
Expand All @@ -40,7 +40,7 @@ repositories {
}
// Lazy Library dependency declaration
dependencies {
implementation 'xyz.srnyx:srnyx-java-utilities:VERSION'
implementation 'xyz.srnyx:java-utilities:VERSION'
}
```
* **Maven** (`pom.xml`)**:**
Expand Down Expand Up @@ -89,7 +89,7 @@ dependencies {
<dependencies>
<dependency>
<groupId>xyz.srnyx</groupId>
<artifactId>srnyx-java-utilities</artifactId>
<artifactId>java-utilities</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies.compileOnly("org.jetbrains:annotations:24.0.1")

setupJava("xyz.srnyx", "1.0.0", "General Java utility library for srnyx's projects", JavaVersion.VERSION_1_8)
setupPublishing(
artifactId = "srnyx-java-utilities",
artifactId = "java-utilities",
url = "https://java-utilities.srnyx.com",
licenses = listOf(LicenseData.MIT),
developers = listOf(DeveloperData.srnyx))
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "srnyxJavaUtilities"
rootProject.name = "JavaUtilities"

0 comments on commit 8ff4604

Please sign in to comment.