Skip to content

Commit 710eafa

Browse files
committed
Ready for v. 1.0.0
1 parent a060bc5 commit 710eafa

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build-dist.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
]

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2121
if (!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'),

0 commit comments

Comments
 (0)