-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (32 loc) · 1.28 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
plugins {
id 'java'
}
group 'ai.quantumsense.tgmonitor'
version '0.0.1'
sourceCompatibility = 1.8
apply plugin: 'application'
mainClassName = 'ai.quantumsense.tgmonitor.main.core.Main'
allprojects {
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.slf4j:slf4j-simple:1.8.0-beta2'
implementation 'com.github.tg-monitor:tgm-ipc-core:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-corefacade:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-backend:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-telegram:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-notification:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-monitor:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-matching:master-SNAPSHOT'
implementation 'com.github.tg-monitor:tgm-servicelocator-instances: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'
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}