make/common/Modules.gmk
branchhttp-client-branch
changeset 56255 39e28481492d
parent 56100 4a0ad0602b99
parent 49126 f29637bb390e
child 56403 d5703ecb5b0a
--- a/make/common/Modules.gmk	Tue Mar 06 18:55:10 2018 +0000
+++ b/make/common/Modules.gmk	Wed Mar 07 11:52:40 2018 +0000
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
@@ -74,24 +74,13 @@
 # Modules that directly or indirectly requiring upgradeable modules
 # should carefully be considered if it should be upgradeable or not.
 UPGRADEABLE_MODULES += \
-    java.activation \
     java.compiler \
-    java.corba \
-    java.transaction \
-    java.xml.bind \
-    java.xml.ws \
-    java.xml.ws.annotation \
     jdk.internal.vm.compiler \
     #
 
-UPGRADEABLE_TOOL_MODULES += \
-    jdk.xml.bind \
-    jdk.xml.ws \
-    #
 
 AGGREGATOR_MODULES += \
     java.se \
-    java.se.ee \
     #
 
 PLATFORM_MODULES += \
@@ -106,6 +95,7 @@
     java.smartcardio \
     java.sql \
     java.sql.rowset \
+    java.transaction.xa \
     java.xml.crypto \
     jdk.accessibility \
     jdk.charsets \
@@ -143,7 +133,7 @@
 # DOCS_MODULES defines the root modules for javadoc generation.
 # All of their `require transitive` modules directly and indirectly will be included.
 DOCS_MODULES += \
-    java.se.ee \
+    java.se \
     java.smartcardio \
     jdk.accessibility \
     jdk.attach \
@@ -194,8 +184,6 @@
     jdk.jshell \
     #
 
-CORBA_MODULES := java.corba
-
 HOTSPOT_MODULES := \
     jdk.aot \
     jdk.hotspot.agent \
@@ -394,7 +382,7 @@
 # Upgradeable modules are those that are either defined as upgradeable or that
 # require an upradeable module.
 FindAllUpgradeableModules = \
-    $(sort $(filter-out $(MODULES_FILTER), $(UPGRADEABLE_MODULES) $(UPGRADEABLE_TOOL_MODULES)))
+    $(sort $(filter-out $(MODULES_FILTER), $(UPGRADEABLE_MODULES)))
 
 
 ################################################################################