Skip to content

Commit 5f7fd0a

Browse files
Release 2.0
1 parent 492dfa2 commit 5f7fd0a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ buildscript {
1313
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
1414
classpath 'org.asciidoctor:asciidoctorj-epub3:1.5.0-alpha.6'
1515
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.11'
16+
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:latest.release"
1617
}
1718
}
1819

19-
version file('version.txt').text.trim()
2020
group "org.grails.plugins"
21+
def versionTxt = file("${rootProject.projectDir}/version.txt")
22+
version = versionTxt.exists() ? versionTxt.text.trim() : '0.1'
2123

2224
apply plugin: 'maven-publish'
2325
apply plugin: 'eclipse'
@@ -65,26 +67,23 @@ task wrapper(type: Wrapper) {
6567
gradleVersion = gradleWrapperVersion
6668
}
6769

68-
bootRepackage.enabled = false
69-
7070
assets {
7171
packagePlugin = true
7272
}
7373

7474
grailsPublish {
7575
user = System.getenv('BINTRAY_USER')
7676
key = System.getenv('BINTRAY_KEY')
77-
repo = 'plugins'
7877
githubSlug = 'robertoschwald/grails-schwartz-monitor'
7978
issueTrackerUrl = 'https://github.com/robertoschwald/grails-schwartz-monitor/issues'
8079
vcsUrl = 'https://github.com/robertoschwald/grails-schwartz-monitor/'
80+
websiteUrl = project.hasProperty('websiteUrl') ? project.websiteUrl : "http://grails.org/plugin/$project.name"
8181
license {
8282
name = project.hasProperty('license') ? [project.license] : ['Apache-2.0']
8383
}
8484
title = "Grails Schwartz Monitor"
8585
desc = "Monitor Quartz Jobs. Supports Grails-Schwartz and Grails-Quartz."
8686
developers = [robertoschwald:"Robert Oschwald"]
87-
userOrg = 'symentis GmbH'
8887
}
8988

9089
task docs(dependsOn: ['asciidoctor', 'groovydoc']) {

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
grailsVersion=3.1.9
22
gradleWrapperVersion=2.13
3-
assetPipelineVersion=2.14.3
3+
assetPipelineVersion=2.14.3
4+
5+
license=['Apache-2.0']

0 commit comments

Comments
 (0)