File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,9 @@ bintray {
201201 // released = date
202202 if (project. hasProperty(' scm.tag' ))
203203 vcsTag = project. property(' scm.tag' )
204- // Seems to default to version without this.
204+ // Defaults to version without this.
205+ // Since my convention is to tag precisely with version, this
206+ // is unnecessary for me.
205207 attributes = [
206208 ' gradle-plugin' : " com.admc.javaPropFile:$project . group :$project . name "
207209 ]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ if (localGradleFile.isFile()) {
1616 apply from : localGradleFile
1717}
1818
19- if (version == ' unspecified' ) version = ' 1.0.0a '
19+ if (version == ' unspecified' ) version = ' 1.0.0 '
2020// N.b. As of today, Bintray doesn't accept snapshots
2121if (! project. hasProperty(' org.name' ))
2222 project. ext. set(' org.name' , ((group == ' com.admc' )
@@ -52,7 +52,7 @@ jar { doFirst {
5252 exclude ' **/.*/**'
5353 jar { manifest { attributes(
5454 ' Specification-Title' : ' JavaPropFile Gradle Plugin' ,
55- ' Specification-Version' : ' 1.0.0a ' ,
55+ ' Specification-Version' : ' 1.0.0 ' ,
5656 // N.b. As of today, Bintray doesn't accept snapshots
5757 ' Specification-Vendor' : ' Axis Data Management Corp.' ,
5858 ' Implementation-Title' : project. property(' jar.title' ),
You can’t perform that action at this time.
0 commit comments