-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (34 loc) · 1018 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-gradle-plugin'
id 'groovy'
id 'maven-publish'
}
group 'org.graphoenix'
version '0.1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation 'org.graphoenix:graphoenix-core:0.1.0-SNAPSHOT'
implementation 'org.graphoenix:graphoenix-java:0.1.0-SNAPSHOT'
implementation 'org.graphoenix:graphoenix-protobuf:0.1.0-SNAPSHOT'
implementation 'org.graphoenix:nozdormu-inject:0.1.0-SNAPSHOT'
implementation 'org.graphoenix:nozdormu-config:0.1.0-SNAPSHOT'
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.25.3'
implementation('org.antlr:antlr4:4.9.3') {
exclude group: 'org.glassfish', module: 'javax.json'
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}