Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change IDEA config to use COMPILE instead of PROVIDED
- running individual unit tests after a full run has issues when they are marked as PROVIDED due to how the classpaths are set
  • Loading branch information
benjchristensen committed May 17, 2013
1 parent e2f5968 commit ff24f3f
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion hystrix-contrib/hystrix-metrics-event-stream/build.gradle
Expand Up @@ -21,6 +21,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
2 changes: 1 addition & 1 deletion hystrix-contrib/hystrix-network-auditor-agent/build.gradle
Expand Up @@ -31,6 +31,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
2 changes: 1 addition & 1 deletion hystrix-contrib/hystrix-request-servlet/build.gradle
Expand Up @@ -19,6 +19,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
Expand Up @@ -19,6 +19,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
Expand Up @@ -19,6 +19,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
5 changes: 3 additions & 2 deletions hystrix-core/build.gradle
Expand Up @@ -36,6 +36,7 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided

}
}
}
2 changes: 1 addition & 1 deletion hystrix-dashboard/build.gradle
Expand Up @@ -28,6 +28,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
2 changes: 1 addition & 1 deletion hystrix-examples-webapp/build.gradle
Expand Up @@ -27,6 +27,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}
2 changes: 1 addition & 1 deletion hystrix-examples/build.gradle
Expand Up @@ -24,6 +24,6 @@ eclipse {
idea {
module {
// include 'provided' dependencies on the classpath
scopes.PROVIDED.plus += configurations.provided
scopes.COMPILE.plus += configurations.provided
}
}

0 comments on commit ff24f3f

Please sign in to comment.