Skip to content

Commit e049cb4

Browse files
authored
Merge pull request #8 from gjwatts/add-java-21-test
Create Java 21 specific WAR
2 parents a95d8a3 + 272d116 commit e049cb4

20 files changed

+792
-1
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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-21/"/>
10+
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
11+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer">
12+
<attributes>
13+
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="output" path="bin/default"/>
17+
</classpath>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.gradle/
2+
/bin/
3+
/build/
4+
/generated/
5+
/gradle/
6+
/wlp
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>io.openliberty.java.internal_fat_21</name>
4+
<comment>Project basic-liberty created by Buildship.</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+
</buildSpec>
29+
<natures>
30+
<nature>org.eclipse.jdt.core.javanature</nature>
31+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
32+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
33+
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
34+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
35+
</natures>
36+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
connection.project.dir=
2+
eclipse.preferences.version=1

io.openliberty.java.internal_fat_21/.settings/org.eclipse.jdt.core.prefs

Lines changed: 293 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
eclipse.preferences.version=1
2+
editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true
3+
org.eclipse.jdt.ui.exception.name=e
4+
org.eclipse.jdt.ui.gettersetter.use.is=true
5+
org.eclipse.jdt.ui.ignorelowercasenames=true
6+
org.eclipse.jdt.ui.importorder=java;javax;org;com;
7+
org.eclipse.jdt.ui.javadoc=true
8+
org.eclipse.jdt.ui.keywordthis=false
9+
org.eclipse.jdt.ui.ondemandthreshold=99
10+
org.eclipse.jdt.ui.overrideannotation=true
11+
org.eclipse.jdt.ui.staticondemandthreshold=99
12+
sp_cleanup.add_default_serial_version_id=true
13+
sp_cleanup.add_generated_serial_version_id=false
14+
sp_cleanup.add_missing_annotations=true
15+
sp_cleanup.add_missing_deprecated_annotations=true
16+
sp_cleanup.add_missing_methods=false
17+
sp_cleanup.add_missing_nls_tags=false
18+
sp_cleanup.add_missing_override_annotations=true
19+
sp_cleanup.add_missing_override_annotations_interface_methods=true
20+
sp_cleanup.add_serial_version_id=false
21+
sp_cleanup.always_use_blocks=true
22+
sp_cleanup.always_use_parentheses_in_expressions=false
23+
sp_cleanup.always_use_this_for_non_static_field_access=false
24+
sp_cleanup.always_use_this_for_non_static_method_access=false
25+
sp_cleanup.convert_to_enhanced_for_loop=false
26+
sp_cleanup.correct_indentation=false
27+
sp_cleanup.format_source_code=true
28+
sp_cleanup.format_source_code_changes_only=false
29+
sp_cleanup.make_local_variable_final=false
30+
sp_cleanup.make_parameters_final=false
31+
sp_cleanup.make_private_fields_final=false
32+
sp_cleanup.make_type_abstract_if_missing_method=false
33+
sp_cleanup.make_variable_declarations_final=true
34+
sp_cleanup.never_use_blocks=false
35+
sp_cleanup.never_use_parentheses_in_expressions=true
36+
sp_cleanup.on_save_use_additional_actions=true
37+
sp_cleanup.organize_imports=true
38+
sp_cleanup.qualify_static_field_accesses_with_declaring_class=false
39+
sp_cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
40+
sp_cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
41+
sp_cleanup.qualify_static_member_accesses_with_declaring_class=false
42+
sp_cleanup.qualify_static_method_accesses_with_declaring_class=false
43+
sp_cleanup.remove_private_constructors=true
44+
sp_cleanup.remove_trailing_whitespaces=true
45+
sp_cleanup.remove_trailing_whitespaces_all=true
46+
sp_cleanup.remove_trailing_whitespaces_ignore_empty=false
47+
sp_cleanup.remove_unnecessary_casts=true
48+
sp_cleanup.remove_unnecessary_nls_tags=true
49+
sp_cleanup.remove_unused_imports=true
50+
sp_cleanup.remove_unused_local_variables=false
51+
sp_cleanup.remove_unused_private_fields=true
52+
sp_cleanup.remove_unused_private_members=false
53+
sp_cleanup.remove_unused_private_methods=true
54+
sp_cleanup.remove_unused_private_types=true
55+
sp_cleanup.sort_members=false
56+
sp_cleanup.sort_members_all=false
57+
sp_cleanup.use_blocks=false
58+
sp_cleanup.use_blocks_only_for_return_and_throw=false
59+
sp_cleanup.use_parentheses_in_expressions=false
60+
sp_cleanup.use_this_for_non_static_field_access=false
61+
sp_cleanup.use_this_for_non_static_field_access_only_if_necessary=true
62+
sp_cleanup.use_this_for_non_static_method_access=false
63+
sp_cleanup.use_this_for_non_static_method_access_only_if_necessary=true
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project-modules id="moduleCoreId" project-version="1.5.0">
3+
<wb-module deploy-name="io.openliberty.java.internal_fat_21">
4+
<property name="context-root" value="io.openliberty.java.internal_fat_21"/>
5+
<wb-resource deploy-path="/WEB-INF/classes" source-path="src/main/java"/>
6+
<wb-resource deploy-path="/" source-path="src/main/webapp"/>
7+
</wb-module>
8+
</project-modules>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<runtime name="Getting started Liberty Server"/>
4+
<fixed facet="jst.java"/>
5+
<fixed facet="jst.web"/>
6+
<installed facet="jst.java" version="21"/>
7+
<installed facet="jst.web" version="4.0"/>
8+
</faceted-project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.wst.ws.service.policy.projectEnabled=false

0 commit comments

Comments
 (0)