-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split out gradle file for each subproject
- Loading branch information
1 parent
88e0fe0
commit 5db9129
Showing
11 changed files
with
68 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
javadoc { | ||
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED | ||
title "Spectator" | ||
} | ||
|
||
task(checkCompatibility, dependsOn: 'jar', type: JavaExec) { | ||
doFirst { | ||
main = 'com.googlecode.japi.checker.cli.Main' | ||
classpath = files("$projectDir/../codequality/japi-checker-cli-0.2.0-SNAPSHOT.jar") | ||
args = [ | ||
"$projectDir/../codequality/spectator-api-BASELINE.jar", | ||
jar.archivePath.path | ||
] | ||
} | ||
} | ||
|
||
build { | ||
it.dependsOn checkCompatibility | ||
it.dependsOn licenseMain | ||
it.dependsOn licenseTest | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
project(':spectator-ext-log4j2') { | ||
dependencies { | ||
compile project(':spectator-api') | ||
compile 'org.apache.logging.log4j:log4j-api:2.1' | ||
compile 'org.apache.logging.log4j:log4j-core:2.1' | ||
} | ||
dependencies { | ||
compile project(':spectator-api') | ||
compile 'org.apache.logging.log4j:log4j-api:2.1' | ||
compile 'org.apache.logging.log4j:log4j-core:2.1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
compile project(':spectator-ext-gc') | ||
compile project(':spectator-ext-jvm') | ||
compile project(':spectator-ext-sandbox') | ||
compile project(':spectator-reg-servo') | ||
compile 'com.google.inject:guice:3.0' | ||
compile 'com.jcraft:jzlib:1.1.3' | ||
compile 'com.netflix.archaius:archaius-core:0.6.3' | ||
compile 'com.netflix.eureka:eureka-client:1.1.146' | ||
compile 'com.netflix.iep-shadow:iep-rxnetty:0.4.4' | ||
compile 'com.netflix.iep-shadow:iep-rxnetty-contexts:0.4.4' | ||
compile 'com.netflix.iep-shadow:iep-rxjava:1.0.2' | ||
testCompile 'com.netflix.governator:governator:1.2.20' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dependencies { | ||
compile project(':spectator-nflx-plugin') | ||
compile 'com.netflix.governator:governator:1.2.20' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
compile 'com.yammer.metrics:metrics-core:2.2.0' | ||
jmh project(':spectator-api') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
compile 'io.dropwizard.metrics:metrics-core:3.1.0' | ||
jmh project(':spectator-api') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dependencies { | ||
compile project(':spectator-api') | ||
compile 'com.netflix.servo:servo-core:0.8.0' | ||
jmh project(':spectator-api') | ||
} |