forked from otrosien/test-libaddress-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
28 lines (25 loc) · 805 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
buildscript {
rootProject.ext.useMavenLocal = rootProject.hasProperty('useMavenLocal')
repositories {
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
if (useMavenLocal) {
mavenLocal()
}
maven { url "http://artifactory.epages.works:8081/artifactory/ng-release-local" }
}
dependencies {
classpath "com.epages.ng:ng-gradle-plugins:0.8.${useMavenLocal ? '0-SNAPSHOT' : '201612081237'}"
}
}
apply plugin:'ng-repository'
apply plugin:'ng-java'
apply plugin:'ng-boot'
apply plugin:'ng-artifactory'
apply plugin:'ng-sonar'
dependencies {
compile 'com.epages.libaddressinput:common:0.2'
compile 'com.neovisionaries:nv-i18n:1.21'
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.6.1'
}