-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (35 loc) · 1.03 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
name = "bintray"
url = "https://dl.bintray.com/thesledgehammer/development/"
}
}
}
plugins {
id 'groovy'
id 'maven'
id "com.jfrog.bintray" version "1.8.4"
}
//apply from: rootProject.file('git-maven.gradle')
//apply from: rootProject.file('mavenBintray.gradle')
group= "com.thesledgehammer.Groovy-data-structure-algorithms"
archivesBaseName = "Groovy-Data-Structure-Algorithms"
repositories {
maven {
name = "Apache Groovy"
url = "https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all"
//url = "https://repo1.maven.org/maven2/org/codehaus/groovy/groovy-all"
}
maven {
name = "Google Guava"
url = "https://mvnrepository.com/artifact/com.google.guava/guava"
// url = "https://repo1.maven.org/maven2/com/google/guava/guava"
}
}
dependencies {
compile "org.codehaus.groovy:groovy-all:${groovy_version}"
compile group: 'com.google.guava', name: 'guava', version: '27.1-jre'
}