Skip to content

Commit

Permalink
Prepare 3.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zbynek committed Dec 9, 2023
1 parent d26e0ca commit 30cbacf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To use the Gradle Plugins DSL, add the following lines to your `build.gradle` sc

```gradle
plugins {
id "org.javacc.javacc" version "3.0.0"
id "org.javacc.javacc" version "3.0.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = 'org.javacc.plugin'
version = '3.0.0'
version = '3.0.1'
}

defaultTasks 'clean', ':javacc-gradle-plugin:build'
Expand Down
13 changes: 13 additions & 0 deletions subprojects/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,19 @@ publishing {
}
}

afterEvaluate {
publishing {
publications {
it.find({ it.artifactId == 'org.javacc.javacc.gradle.plugin'}).pom.withXml {
def scm = asNode().appendNode('scm')
scm.appendNode('url', 'https://github.com/javacc/javaccPlugin')
scm.appendNode('connection', 'scm:https://github.com/javacc/javaccPlugin.git')
scm.appendNode('developerConnection', 'scm:git://github.com/javacc/javaccPlugin.git')
}
}
}
}

bintray {
if (!project.hasProperty('bintrayUser')) {
ext.bintrayUser = ''
Expand Down

0 comments on commit 30cbacf

Please sign in to comment.