We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60cf80a commit 7aee536Copy full SHA for 7aee536
1 file changed
server/build.gradle
@@ -11,12 +11,9 @@ plugins {
11
id "java-library"
12
id "application"
13
id "nebula.ospackage-application" version "8.0.3"
14
- id "idea"
15
}
16
17
-idea.module.outputDir file("out/production/classes")
18
-
19
-group = 'ai.swim'
+group = 'org.swimos'
20
description = 'Tutorial- Web Agents'
21
ext.moduleName = 'swim.tutorial'
22
sourceCompatibility = 1.9
@@ -38,11 +35,18 @@ dependencies {
38
35
39
36
40
37
afterEvaluate {
+
+ sourceSets {
+ main.output.resourcesDir = main.java.outputDir
41
+ }
42
43
compileJava {
44
if (useModules) {
45
doFirst {
46
options.compilerArgs += [
47
'--module-path', classpath.asPath,
48
+ '--patch-module', "$moduleName="
49
+ + files(sourceSets.main.resources.srcDirs).asPath,
50
]
51
classpath = files()
52
0 commit comments