-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (28 loc) · 838 Bytes
/
build.gradle
File metadata and controls
37 lines (28 loc) · 838 Bytes
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
group 'com.gitlab.qsy'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://jitpack.io"
// credentials { username authToken }
}
}
task runMain(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = 'main.Main'
}
task showMeCache << {
configurations.compile.each { println it }
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.github.QSYteam', name: 'libterminal', version: 'dev-SNAPSHOT', changing: true
//compile group: 'com.github.QSYteam', name: 'libterminal', version: 'preinicio_rutinas-SNAPSHOT', changing: true
}