-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (32 loc) · 901 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
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'java'
}
group 'ai.quantumsense.tgmonitor'
version '0.0.4'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'junit', name: 'junit', version: '4.12'
compile 'com.google.code.findbugs:jsr305:3.0.2'
compile 'com.google.code.gson:gson:2.8.5'
}
jar {
exclude('ai/quantumsense/tgmonitor/test/**')
}
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
dependencies {
implementation 'com.github.tg-monitor:tgm-backend:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-monitor:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-entities:0.0.2'
implementation 'com.github.tg-monitor:tgm-logincodeprompt:0.0.1'
implementation 'com.github.tg-monitor:tgm-servicelocator:0.0.1'
}