-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (44 loc) · 1.22 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
plugins {
id 'maven-publish'
id 'java'
}
group 'com.github.FRC-For-FTC-Tools'
version '0.0.2'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.13.0'
implementation 'org.java-websocket:Java-WebSocket:1.4.1'
//#region Remove for FTC SDK to work
// runtimeOnly 'org.slf4j:slf4j-api:1.7.36'
// runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl:2.20.0'
// runtimeOnly 'org.apache.logging.log4j:log4j-core:2.20.0'
//#endregion
implementation 'com.google.guava:guava:31.1-jre'
implementation 'org.msgpack:msgpack-core:0.9.3'
}
tasks.withType(JavaCompile) {
options.compilerArgs.add('-AprotoSourcePath=src/main/proto')
}
sourceSets {
main {
java {
}
}
}
publishing {
publications {
maven(MavenPublication) {
groupId = 'com.github.FRC-For-FTC-Tools'
artifactId = 'nt-self-impl'
version = '0.0.1'
from components.java
}
}
}