diff --git a/.vscode/settings.json b/.vscode/settings.json index 050505c..04cd618 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,3 @@ { - "java.configuration.updateBuildConfiguration": "interactive" + "java.configuration.updateBuildConfiguration": "automatic" } diff --git a/java/build.gradle b/java/build.gradle index dbc4967..cd2c025 100644 --- a/java/build.gradle +++ b/java/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id("maven-publish") + id 'maven-publish' } repositories { @@ -14,7 +14,7 @@ dependencies { } group = 'thriftlabs' -version = '0.0.3' +version = '0.0.4' jar { archiveBaseName.set('thriftparser') @@ -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 } }