Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Frotty committed Oct 13, 2023
1 parent 822a164 commit 062a7ff
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,21 @@ artifacts {
}


def isReleaseBuild() {
return version.contains("SNAPSHOT") == false
publishing {
publications {
mavenJava(MavenPublication) {
from components.java

groupId = 'com.github.peterzeller'
artifactId = 'abstractsyntaxgen'
version = '0.3.3'
}
}
repositories {
mavenLocal()
}
}

// Ensure artifacts are published to mavenLocal() during the build
build.dependsOn publishToMavenLocal

0 comments on commit 062a7ff

Please sign in to comment.