Skip to content

Commit

Permalink
Merge pull request #27 from jaspervp/gradle_fix
Browse files Browse the repository at this point in the history
fixed annotationProcessor
  • Loading branch information
thoutbeckers committed Apr 9, 2018
2 parents 16150f9 + 0aeeb13 commit 5153ce8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ jdk:

android:
components:
- tools # important to always do this first, since the version installed of platform-tools below depends on it
- platform-tools
- build-tools-24.0.0
- android-24
- tools
- extra-android-m2repository
- extra-google-m2repository
- build-tools-27.0.3
- android-27

env:
global:
Expand Down
1 change: 1 addition & 0 deletions WhenRobo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies {

provided "org.roboguice:roboguice:$roboGuiceVersion"
provided "org.roboguice:roboblender:$roboGuiceVersion"
annotationProcessor "org.roboguice:roboblender:$roboGuiceVersion"
}

project.tasks.withType(JavaCompile) { task ->
Expand Down
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ allprojects {
repositories {
jcenter()
mavenCentral()
google()


}
Expand All @@ -14,6 +15,8 @@ buildscript {
repositories {
jcenter()
mavenCentral()
google()

}

dependencies {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
httpmimeVersion=4.5.2
coverallsGradlePluginVersion=2.6.3

compileSdkVersionProp=24
buildToolsVersionProp=24.0.0
androidGradleVersion=2.1.2
targetSdkVersionProp=24
supportVersion=24.0.0
compileSdkVersionProp=27
targetSdkVersionProp=27
buildToolsVersionProp=27.0.3
androidGradleVersion=3.1.0
supportVersion=27.0.2

groovyVersion=2.4.6
junitVersion=4.12
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

0 comments on commit 5153ce8

Please sign in to comment.