-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (24 loc) · 749 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (24 loc) · 749 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
plugins {
id 'java-library'
id 'maven-publish'
}
group 'com.tyron'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
google()
}
dependencies {
testImplementation 'com.google.truth:truth:1.1.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.google.guava:guava:31.0.1-android'
implementation files('libs/javac-new.jar')
implementation 'com.google.auto.value:auto-value-annotations:1.8.2'
annotationProcessor 'com.google.auto.value:auto-value:1.8.2'
}
test {
useJUnitPlatform()
}