Skip to content

Commit 3d8bc85

Browse files
authored
Add Eclipse configuration for multi-module project
2 parents 2efa04b + b7e936b commit 3d8bc85

17 files changed

Lines changed: 161 additions & 30 deletions

File tree

.classpath

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="bin/main" path="src/main/java">
4-
<attributes>
5-
<attribute name="gradle_scope" value="main"/>
6-
<attribute name="gradle_used_by_scope" value="main,test"/>
7-
</attributes>
8-
</classpathentry>
9-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/">
3+
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
104
<attributes>
115
<attribute name="module" value="true"/>
126
</attributes>

.project

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>com.ibm.cicsdev.springboot.jdbc.multi</name>
3+
<name>cics-java-liberty-springboot-jdbc-multi</name>
44
<comment></comment>
55
<projects>
66
</projects>
@@ -10,38 +10,20 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13-
<buildCommand>
14-
<name>org.eclipse.wst.common.project.facet.core.builder</name>
15-
<arguments>
16-
</arguments>
17-
</buildCommand>
18-
<buildCommand>
19-
<name>org.eclipse.wst.validation.validationbuilder</name>
20-
<arguments>
21-
</arguments>
22-
</buildCommand>
2313
<buildCommand>
2414
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
2515
<arguments>
2616
</arguments>
2717
</buildCommand>
28-
<buildCommand>
29-
<name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name>
30-
<arguments>
31-
</arguments>
32-
</buildCommand>
3318
<buildCommand>
3419
<name>org.eclipse.m2e.core.maven2Builder</name>
3520
<arguments>
3621
</arguments>
3722
</buildCommand>
3823
</buildSpec>
3924
<natures>
40-
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
41-
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
4225
<nature>org.eclipse.jdt.core.javanature</nature>
43-
<nature>org.eclipse.m2e.core.maven2Nature</nature>
44-
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
4526
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
27+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
4628
</natures>
4729
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
3+
org.eclipse.jdt.core.compiler.compliance=17
4+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
5+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
8+
org.eclipse.jdt.core.compiler.release=enabled
9+
org.eclipse.jdt.core.compiler.source=17
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="con" path="com.ibm.cics.explorer.sdk.web.LIBERTY_LIBRARIES/L./V.61/JE.JEE_V10_R0">
10+
<attributes>
11+
<attribute name="owner.project.facets" value="jst.web"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
15+
<attributes>
16+
<attribute name="maven.pomderived" value="true"/>
17+
</attributes>
18+
</classpathentry>
19+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
20+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="output" path="target/classes"/>
26+
</classpath>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>cics-java-liberty-springboot-jdbc-multi-app</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.validation.validationbuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.m2e.core.maven2Builder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
</buildSpec>
34+
<natures>
35+
<nature>org.eclipse.jdt.core.javanature</nature>
36+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
37+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
38+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
39+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
40+
</natures>
41+
</projectDescription>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
encoding//src/main/java=UTF-8
3+
encoding/<project>=UTF-8
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
3+
org.eclipse.jdt.core.compiler.compliance=17
4+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
5+
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
8+
org.eclipse.jdt.core.compiler.release=enabled
9+
org.eclipse.jdt.core.compiler.source=17

.settings/org.eclipse.wst.common.component renamed to cics-java-liberty-springboot-jdbc-multi-app/.settings/org.eclipse.wst.common.component

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project-modules id="moduleCoreId" project-version="1.5.0">
3-
<wb-module deploy-name="com.ibm.cicsdev.springboot.jdbc.multi">
3+
<wb-module deploy-name="cics-java-liberty-springboot-jdbc-multi">
44
<property name="context-root" value="cics-java-liberty-springboot-jdbc-multi"/>
55
<wb-resource deploy-path="/WEB-INF/classes" source-path="src/main/resources"/>
66
<wb-resource deploy-path="/WEB-INF/classes" source-path="src/main/java"/>

.settings/org.eclipse.wst.common.project.facet.core.xml renamed to cics-java-liberty-springboot-jdbc-multi-app/.settings/org.eclipse.wst.common.project.facet.core.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<faceted-project>
33
<fixed facet="jst.java"/>
44
<fixed facet="jst.web"/>
5-
<installed facet="jst.web" version="2.4"/>
6-
<installed facet="jst.java" version="1.8"/>
5+
<installed facet="jst.web" version="6.0"/>
6+
<installed facet="jst.java" version="17"/>
77
</faceted-project>

0 commit comments

Comments
 (0)