Skip to content

Commit

Permalink
fix group and name, add bintray plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
franzbecker committed Aug 28, 2015
1 parent f25ad4a commit 031fc75
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
31 changes: 24 additions & 7 deletions build.gradle
@@ -1,10 +1,13 @@
group 'net.franz_becker.gradle'
version currentVersion
plugins {
id 'com.jfrog.bintray' version '1.3.1'
id 'java-gradle-plugin'
id 'groovy'
id 'maven'
id 'jacoco'
}

apply plugin: 'java-gradle-plugin'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'jacoco'
group 'net.franz_becker'
version currentVersion

repositories {
jcenter()
Expand All @@ -27,4 +30,18 @@ jacocoTestReport {
}
}

check.dependsOn jacocoTestReport
check.dependsOn jacocoTestReport

bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
configurations = ['archives']
pkg {
repo = 'maven'
name = 'gradle-lombok-plugin'
licenses = ['Apache-2.0']
version {
name = "${project.version}"
}
}
}
2 changes: 1 addition & 1 deletion settings.gradle
@@ -1 +1 @@
rootProject.name = 'lombok-installer'
rootProject.name = 'gradle-lombok'

0 comments on commit 031fc75

Please sign in to comment.