Skip to content

Commit

Permalink
fix(dynamicAccounts): Included java files in source set (#5090)
Browse files Browse the repository at this point in the history
* fix(dynamicAccounts): Compilation error for testing

Proves that the build of clouddriver-configserver doesn't include java source files

* fix(dynamicAccounts): Included java files in source set

* fix(dynamicAccounts): Removed compilation error
  • Loading branch information
german-muzquiz committed Nov 11, 2020
1 parent de10c06 commit c0c90db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions clouddriver-configserver/clouddriver-configserver.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ apply plugin: 'java-library'

tasks.compileGroovy.enabled=false

sourceSets {
main {
java.srcDirs = ['src/main/java']
}
}

dependencies {
compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
Expand Down

0 comments on commit c0c90db

Please sign in to comment.