Skip to content

Commit

Permalink
add 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alingse committed Dec 8, 2024
1 parent 6e66b60 commit af8a3a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
"java.configuration.updateBuildConfiguration": "automatic"
}
9 changes: 4 additions & 5 deletions java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id("maven-publish")
id 'maven-publish'
}

repositories {
Expand All @@ -14,7 +14,7 @@ dependencies {
}

group = 'thriftlabs'
version = '0.0.3'
version = '0.0.4'

jar {
archiveBaseName.set('thriftparser')
Expand All @@ -24,14 +24,13 @@ test {
useJUnitPlatform()
}


publishing {
publications {
mavenJava(MavenPublication) {
from components.java
groupId = 'thriftlabs'
groupId = group
artifactId = 'thriftparser'
version = '0.0.3'
version = version
}
}

Expand Down

0 comments on commit af8a3a2

Please sign in to comment.