Comment out module related gradle code

We are going to use a separate (intellij?) module instead for the API
This commit is contained in:
James Seibel
2022-08-23 21:29:09 -05:00
parent c965fb41b9
commit fc9faeb6e5
2 changed files with 15 additions and 14 deletions
+14 -13
View File
@@ -229,19 +229,20 @@ subprojects { p ->
}
}
// Tells gradle where to look for other modules
// Why isn't the classpath added to the modules path by default?
if (p == project(":core")) {
compileJava {
inputs.property('moduleName', 'dhApi')
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath
]
classpath = files()
}
}
}
// this can be un-commented if we ever wanted to make DH modular (AKA use a module-info.java file) again
// // Tells gradle where to look for other modules
// // Why isn't the classpath added to the modules path by default?
// if (p == project(":core")) {
// compileJava {
// inputs.property('moduleName', 'dhApi')
// doFirst {
// options.compilerArgs = [
// '--module-path', classpath.asPath
// ]
// classpath = files()
// }
// }
// }
// Run mergeJars when running build
build.finalizedBy(mergeJars)
+1 -1
Submodule core updated: 63309e1fb3...e2d90f6627