forked from Trinitou/dawproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (26 loc) · 851 Bytes
/
build.gradle
File metadata and controls
31 lines (26 loc) · 851 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
plugins {
id 'java'
id 'eclipse'
id 'idea'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1'
runtimeOnly 'com.sun.xml.bind:jaxb-impl:3.0.0'
implementation 'commons-io:commons-io:2.11.0'
testImplementation 'junit:junit:4.13.1'
annotationProcessor 'com.github.therapi:therapi-runtime-javadoc-scribe:0.13.0'
implementation 'com.github.therapi:therapi-runtime-javadoc:0.13.0'
testImplementation 'com.j2html:j2html:1.6.0'
testImplementation 'org.reflections:reflections:0.10.2'
}
group = 'com.bitwig.open'
version = '1-SNAPSHOT'
description = 'dawproject file format'
java.sourceCompatibility = JavaVersion.VERSION_16
buildDir = new File(project.projectDir, "target")