forked from donald-jackson/centrifuge-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (56 loc) · 1.65 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.onlinerby'
buildscript {
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
repositories {
mavenCentral()
jcenter()
google()
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "0.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
testOptions.unitTests.includeAndroidResources = true
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
// implementation 'com.github.archiecrown:Java-WebSocket:ca36afc469'
implementation 'org.java-websocket:Java-WebSocket:1.5.1'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'org.slf4j:slf4j-api:1.7.26'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.robolectric:robolectric:4.4'
testImplementation 'org.mockito:mockito-core:3.6.28'
testImplementation 'com.squareup.okhttp3:okhttp:4.9.0'
testImplementation 'com.squareup.okhttp:mockwebserver:2.7.5'
testImplementation 'commons-codec:commons-codec:1.13'
testImplementation "org.testcontainers:testcontainers:1.11.1"
}
configurations.all {
resolutionStrategy {
force 'com.google.guava:guava:27.1-android'
}
}