Skip to content

Commit

Permalink
build: group fixed
Browse files Browse the repository at this point in the history
Took 10 minutes
  • Loading branch information
xFedeT committed May 1, 2024
1 parent 62475bd commit dffe092
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ subprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'

def group = 'it.fedet'
def artifact = 'minigames'

def ver = semver.version

allprojects {
group = 'it.fedet'
version = ver


semver {
releaseTagNameFormat = "v%s"
}
Expand Down Expand Up @@ -80,6 +81,17 @@ subprojects {

}

publishing {
publications {
maven(MavenPublication) {
groupId project.group
artifactId project.name
version project.version
from components.java
}
}
}

compileJava {
options.compilerArgs += ["-parameters"]
}
Expand Down

0 comments on commit dffe092

Please # to comment.