Skip to content

Commit 076d103

Browse files
committed
inc version to v1.1
1 parent 17b86b8 commit 076d103

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,33 @@
1-
kotlin_version = '1.1.4'
2-
31
group = 'com.github.holgerbrandl'
4-
version = '1.0'
5-
6-
repositories {
7-
mavenCentral()
8-
}
2+
version = '1.1'
93

104
buildscript {
11-
ext.kotlin_version = '1.1.2'
5+
ext.kotlin_version = '1.1.60'
126

137
repositories {
148
mavenCentral()
159
}
10+
1611
dependencies {
1712
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1813
}
1914
}
2015

16+
2117
apply plugin: 'java'
2218
apply plugin: 'kotlin'
2319
apply plugin: 'maven-publish'
2420

21+
2522
repositories {
26-
jcenter()
23+
mavenCentral()
2724
}
2825

26+
// should not be needed
27+
//dependencies {
28+
// compileOnly "org.jetbrains.kotlin:kotlin-stdlib"
29+
//}
30+
2931
task sourcesJar(type: Jar, dependsOn: classes) {
3032
classifier = 'sources'
3133
from sourceSets.main.allSource
@@ -41,8 +43,6 @@ artifacts {
4143
archives javadocJar
4244
}
4345

44-
45-
4646
publishing {
4747
publications {
4848
maven(MavenPublication) {

0 commit comments

Comments
 (0)