File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
ext. githubProjectName = rootProject. name // Change if github project name is not the same as the root project's name
3
3
4
4
buildscript {
5
- repositories { mavenRepo url : ' http://jcenter.bintray.com' }
5
+ repositories {
6
+ mavenLocal()
7
+ maven { url ' http://jcenter.bintray.com' }
8
+ }
6
9
apply from : file(' gradle/buildscript.gradle' ), to : buildscript
7
10
}
8
11
@@ -44,4 +47,3 @@ project(':template-server') {
44
47
compile project(' :template-client' )
45
48
}
46
49
}
47
-
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ repositories {
4
4
repositories { maven { url ' http://dl.bintray.com/content/netflixoss/external-gradle-plugins/' } } // For gradle-release
5
5
}
6
6
dependencies {
7
- classpath ' nl.javadude.gradle.plugins:license-gradle-plugin:0.6.0 '
7
+ classpath ' nl.javadude.gradle.plugins:license-gradle-plugin:0.6.1 '
8
8
classpath ' com.mapvine:gradle-cobertura-plugin:0.1'
9
9
classpath ' gradle-release:gradle-release:1.1'
10
10
}
Original file line number Diff line number Diff line change @@ -5,5 +5,6 @@ apply plugin: 'license' //nl.javadude.gradle.plugins.license.LicensePlugin
5
5
license {
6
6
header rootProject. file(' codequality/HEADER' )
7
7
ext. year = Calendar . getInstance(). get(Calendar . YEAR )
8
+ skipExistingHeaders true
8
9
}
9
10
}
You can’t perform that action at this time.
0 commit comments