ghubstan cffbfcf481
Split API examples & doc generator into separate modules
This might give Python devs an easier time than if all the sample
code lived deep inside a gradle project.  This means there is
no root project gradle build file;  the reference-doc-builder and
java-examples modules are separate java projects, with their own
build files.
2022-03-16 17:21:25 -03:00

34 lines
949 B
Groovy

plugins {
id 'java'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
group 'bisq'
version '0.0.1-SNAPSHOT'
dependencies {
compileOnly 'javax.annotation:javax.annotation-api:1.2'
implementation 'net.sf.jopt-simple:jopt-simple:5.0.4'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.google.protobuf:protobuf-java:3.12.4'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'ch.qos.logback:logback-classic:1.1.11'
implementation 'ch.qos.logback:logback-core:1.1.11'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
compileOnly 'org.projectlombok:lombok:1.18.22'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
}
test {
useJUnitPlatform()
}