-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Levi Qian
committed
Nov 13, 2017
1 parent
c301a27
commit 4fb19ce
Showing
32 changed files
with
142 additions
and
696 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
allprojects { | ||
apply plugin: 'java' | ||
apply plugin: 'maven' | ||
apply plugin: 'eclipse' | ||
|
||
group = 'skyeye' | ||
version = '1.2.0' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' | ||
buildDir = 'target' | ||
|
||
ext { | ||
mavenClouderaUrl = 'https://repository.cloudera.com/artifactory/cloudera-repos' | ||
mavenPublicUrl = 'http://192.168.88.8:8081/nexus/content/repositories/public' | ||
mavenReleaseUrl = 'http://192.168.88.8:8081/nexus/content/repositories/releases' | ||
mavenSnapshotUrl = 'http://192.168.88.8:8081/nexus/content/repositories/snapshots' | ||
} | ||
|
||
repositories { | ||
mavenLocal() | ||
maven { url mavenPublicUrl } | ||
maven { url mavenReleaseUrl } | ||
maven { url mavenSnapshotUrl } | ||
mavenCentral() | ||
} | ||
} | ||
|
||
subprojects { | ||
|
||
ext { | ||
kafkaVersion = '0.10.0.1' | ||
zookeeperVersion = '3.4.6' | ||
curatorVersion = '2.11.0' | ||
zkclientVersion = '0.10' | ||
slf4jVersion = '1.7.25' | ||
fastJsonVersion = '1.2.40' | ||
dubboVersion = '2.8.4-skyeye-trace-1.2.0' | ||
springBootVersion = '1.5.6.RELEASE' | ||
springVersion = '4.3.10.RELEASE' | ||
hbaseVersion = '1.0.0-cdh5.4.0' | ||
httpclientVersion = '4.5.3' | ||
jacksonVersion = '1.9.13' | ||
logbackVersion = '1.1.11' | ||
log4j2Version = '2.7' | ||
log4jVersion = '1.2.17' | ||
zullVersion = '1.3.0' | ||
springBootVersion = '1.5.6.RELEASE' | ||
gradlePluginVersion = '1.0.3.RELEASE' | ||
esVersion = '2.3.3' | ||
hadoopVersion = '2.6.0-cdh5.4.0' | ||
} | ||
|
||
dependencies { | ||
|
||
} | ||
} |
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,8 @@ | ||
include 'skyeye-base' | ||
include 'skyeye-client:skyeye-client-core', 'skyeye-client:skyeye-client-log4j', 'skyeye-client:skyeye-client-logback', 'skyeye-client:skyeye-client-log4j2' | ||
include 'skyeye-trace:skyeye-trace-core', 'skyeye-trace:skyeye-trace-sc' | ||
include 'skyeye-data:skyeye-data-dubbox', 'skyeye-data:skyeye-data-hbase', 'skyeye-data:skyeye-data-http', 'skyeye-data:skyeye-data-jpa', 'skyeye-data:skyeye-data-rabbitmq' | ||
include 'skyeye-collector:skyeye-collector-core', 'skyeye-collector:skyeye-collector-backup', 'skyeye-collector:skyeye-collector-indexer', 'skyeye-collector:skyeye-collector-metrics', 'skyeye-collector:skyeye-collector-trace' | ||
include 'skyeye-alarm' | ||
include 'skyeye-web' | ||
include 'skyeye-monitor' |
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
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 +1 @@ | ||
rootProject.name = 'skyeye-base' | ||
rootProject.name = 'skyeye-base' |
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
Oops, something went wrong.