Skip to content

Commit 4953ba7

Browse files
yigittschuchortdev
authored andcommitted
little code cleanup
1 parent 42c4b36 commit 4953ba7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,15 @@ cache:
3232

3333
before_install:
3434
- chmod +x gradlew
35+
- chmod +x ksp/gradlew
3536

3637
install:
3738
- ./gradlew assemble --info --no-daemon
39+
- ./gradlew -p ksp assemble --info --no-daemon
3840

3941
script:
4042
- ./gradlew check --info --no-daemon
43+
- ./gradlew -p ksp check --info --no-daemon
4144

4245
notifications:
4346
email: false

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ buildscript {
44
repositories {
55
mavenCentral()
66
maven { url 'https://jitpack.io' }
7-
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
87
}
98

109
dependencies {
@@ -16,6 +15,7 @@ buildscript {
1615

1716
plugins {
1817
id 'java'
18+
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version"
1919
id "com.github.gmazzo.buildconfig" version "2.0.1"
2020
}
2121

@@ -32,7 +32,6 @@ repositories {
3232
maven { url 'https://jitpack.io' }
3333
maven { url 'https://kotlin.bintray.com/kotlinx' }
3434
jcenter()
35-
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
3635
}
3736

3837
idea {

ksp/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
includeBuild("../.") {
22
name("kotlin-compile-testing")
33
}
4-
rootProject.name = 'kotlin-compile-testing-ksp'
4+
rootProject.name = 'kotlin-compile-testing-ksp'

settings.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
rootProject.name = 'kotlin-compile-testing'
2-
include(":kotlin-compile-testing-ksp")
3-
project(":kotlin-compile-testing-ksp").setProjectDir(new File("ksp"))
1+
rootProject.name = 'kotlin-compile-testing'

0 commit comments

Comments
 (0)