Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
asbachb committed Jun 14, 2023
1 parent 317e516 commit 5b0bf16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion enterprise/j2ee.core/nbproject/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

javac.compilerargs=-Xlint -Xlint:-serial
javac.source=1.8
javac.source=11

is.autoload=true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,22 @@ public enum Type {
EAR;
}

public static final Map<Type, String> J2EE_13 = Map.ofEntries(
static final Map<Type, String> J2EE_13 = Map.ofEntries(
entry(WEB, "2.3"),
entry(EAR, "1.4")
);

public static final Map<Type, String> J2EE_14 = Map.ofEntries(
static final Map<Type, String> J2EE_14 = Map.ofEntries(
entry(WEB, "2.4"),
entry(EAR, "1.4")
);

public static final Map<Type, String> JAVA_EE_5 = Map.ofEntries(
static final Map<Type, String> JAVA_EE_5 = Map.ofEntries(
entry(WEB, "2.5"),
entry(EAR, "5")
);

public static final Map<Type, String> JAVA_EE_6 = Map.ofEntries(
static final Map<Type, String> JAVA_EE_6 = Map.ofEntries(
entry(WEB, "3.0"),
entry(WEB_FRAGMENT, "3.0"),
entry(BEANS, "1.0"),
Expand All @@ -68,7 +68,7 @@ public enum Type {
entry(EAR, "6")
);

public static final Map<Type, String> JAVA_EE_7 = Map.ofEntries(
static final Map<Type, String> JAVA_EE_7 = Map.ofEntries(
entry(WEB, "3.1"),
entry(WEB_FRAGMENT, "3.1"),
entry(BEANS, "1.1"),
Expand All @@ -77,7 +77,7 @@ public enum Type {
entry(EAR, "7")
);

public static final Map<Type, String> JAVA_EE_8_AND_JAKARTA_EE_8 = Map.ofEntries(
static final Map<Type, String> JAVA_EE_8_AND_JAKARTA_EE_8 = Map.ofEntries(
entry(WEB, "4.0"),
entry(WEB_FRAGMENT, "4.0"),
entry(BEANS, "2.0"),
Expand All @@ -86,7 +86,7 @@ public enum Type {
entry(EAR, "8")
);

public static final Map<Type, String> JAKARTA_EE_9_AND_JAKARTA_EE_91 = Map.ofEntries(
static final Map<Type, String> JAKARTA_EE_9_AND_JAKARTA_EE_91 = Map.ofEntries(
entry(WEB, "5.0"),
entry(WEB_FRAGMENT, "5.0"),
entry(BEANS, "3.0"),
Expand All @@ -95,7 +95,7 @@ public enum Type {
entry(EAR, "9")
);

public static final Map<Type, String> JAKARTA_EE_10 = Map.ofEntries(
static final Map<Type, String> JAKARTA_EE_10 = Map.ofEntries(
entry(WEB, "6.0"),
entry(WEB_FRAGMENT, "6.0"),
entry(BEANS, "4.0"),
Expand Down

0 comments on commit 5b0bf16

Please sign in to comment.