mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-21 05:05:31 +00:00
15 lines
315 B
Groovy
15 lines
315 B
Groovy
apply plugin: "java-library"
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ["src"]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
/* local dependencies */
|
|
implementation project(":com.sap.sse.common")
|
|
implementation project(":com.sap.sse.security.common")
|
|
implementation project(":com.sap.sse.datamining.annotations")
|
|
}
|