Skip to content

Commit

Permalink
build: change groupId and artifactId
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Mar 27, 2022
1 parent 8725079 commit 148d132
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -36,7 +36,7 @@ repositories {
}
dependencies {
implementation "org.auioc.mods.arnicalib:arnicalib-<MINECRAFT_VERSION>:<ARNICALIB_VERSION>:forgelib"
implementation "org.auioc.mcmod:arnicalib:<MINECRAFT_VERSION>-<ARNICALIB_VERSION>:forgelib"
}
```

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Expand Up @@ -15,9 +15,9 @@ apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: 'org.spongepowered.mixin'

version = "${arnicalib_version}"
group = 'org.auioc.mods.arnicalib'
archivesBaseName = "arnicalib-${minecraft_version}"
group = 'org.auioc.mcmod'
archivesBaseName = "arnicalib"
version = "${minecraft_version}-${arnicalib_version}"

java.toolchain.languageVersion = JavaLanguageVersion.of(17)

Expand Down Expand Up @@ -74,7 +74,7 @@ ext {
"Specification-Vendor": 'AUIOC',
"Specification-Version": '1',
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Version": "${arnicalib_version}",
"Implementation-Vendor" :'AUIOC',
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"TweakClass": 'org.spongepowered.asm.launch.MixinTweaker',
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -11,4 +11,4 @@ mappings_version=1.18.2

mixin_version=0.8.5

arnicalib_version=5.0.3
arnicalib_version=5.1.0

0 comments on commit 148d132

Please sign in to comment.