diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/domain/template.xml b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/domain/template.xml index 94504f41b2..692ba217e0 100755 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/domain/template.xml +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/domain/template.xml @@ -17,7 +17,7 @@ ~ limitations under the License. --> - + diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-master.xml b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-master.xml index 458266d44a..6531c432f7 100755 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-master.xml +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-master.xml @@ -22,7 +22,7 @@ is also started by this host controller file. The other instance must be started via host-slave.xml --> - + diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-slave.xml b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-slave.xml index ac7b60edde..1a731414b0 100755 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-slave.xml +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host-slave.xml @@ -17,7 +17,7 @@ ~ limitations under the License. --> - + diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host.xml b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host.xml index 541340c1e0..eea3c14366 100755 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host.xml +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/host/host.xml @@ -23,7 +23,7 @@ via host-slave.xml --> - + diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/standalone/template.xml b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/standalone/template.xml index b664a61cf9..27702cbc0e 100644 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/standalone/template.xml +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/configuration/standalone/template.xml @@ -1,6 +1,6 @@ - + diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-clustered.cli b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-clustered.cli index a4ad6c263a..8744fe45dd 100644 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-clustered.cli +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-clustered.cli @@ -578,4 +578,47 @@ if (outcome == failed) of /profile=$clusteredProfile/subsystem=logging/logger=io echo end-if +# Migrate from 5.0.0 to 6.0.0 +if (result == NON_XA) of /profile=$clusteredProfile/subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:read-attribute(name=mode) + echo Removing NON_XA transaction mode from infinispan/hibernate/entity + /profile=$clusteredProfile/subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:undefine-attribute(name=mode) + echo +end-if + +if (result == false) of /profile=$clusteredProfile/subsystem=datasources/data-source=ExampleDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ExampleDS datasource + /profile=$clusteredProfile/subsystem=datasources/data-source=ExampleDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$clusteredProfile/subsystem=datasources/data-source=KeycloakDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to KeycloakDS datasource + /profile=$clusteredProfile/subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$clusteredProfile/subsystem=ejb3/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ejb3 subsystem + /profile=$clusteredProfile/subsystem=ejb3/:write-attribute(name=statistics-enabled,value=${wildfly.ejb3.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$clusteredProfile/subsystem=transactions/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to transactions subsystem + /profile=$clusteredProfile/subsystem=transactions/:write-attribute(name=statistics-enabled,value=${wildfly.transactions.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$clusteredProfile/subsystem=undertow/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to undertow subsystem + /profile=$clusteredProfile/subsystem=undertow/:write-attribute(name=statistics-enabled,value=${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$clusteredProfile/subsystem=webservices/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to webservices subsystem + /profile=$clusteredProfile/subsystem=webservices/:write-attribute(name=statistics-enabled,value=${wildfly.webservices.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + echo *** End Migration of /profile=$clusteredProfile *** diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-standalone.cli b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-standalone.cli index 743de2246e..89e165d4c4 100644 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-standalone.cli +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-domain-standalone.cli @@ -503,4 +503,47 @@ if (outcome == failed) of /profile=$standaloneProfile/subsystem=logging/logger=i echo end-if +# Migrate from 5.0.0 to 6.0.0 +if (result == NON_XA) of /profile=$standaloneProfile/subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:read-attribute(name=mode) + echo Removing NON_XA transaction mode from infinispan/hibernate/entity + /profile=$standaloneProfile/subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:undefine-attribute(name=mode) + echo +end-if + +if (result == false) of /profile=$standaloneProfile/subsystem=datasources/data-source=ExampleDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ExampleDS datasource + /profile=$standaloneProfile/subsystem=datasources/data-source=ExampleDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$standaloneProfile/subsystem=datasources/data-source=KeycloakDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to KeycloakDS datasource + /profile=$standaloneProfile/subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$standaloneProfile/subsystem=ejb3/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ejb3 subsystem + /profile=$standaloneProfile/subsystem=ejb3/:write-attribute(name=statistics-enabled,value=${wildfly.ejb3.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$standaloneProfile/subsystem=transactions/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to transactions subsystem + /profile=$standaloneProfile/subsystem=transactions/:write-attribute(name=statistics-enabled,value=${wildfly.transactions.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$standaloneProfile/subsystem=undertow/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to undertow subsystem + /profile=$standaloneProfile/subsystem=undertow/:write-attribute(name=statistics-enabled,value=${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /profile=$standaloneProfile/subsystem=webservices/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to webservices subsystem + /profile=$standaloneProfile/subsystem=webservices/:write-attribute(name=statistics-enabled,value=${wildfly.webservices.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + echo *** End Migration of /profile=$standaloneProfile *** diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone-ha.cli b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone-ha.cli index 1c016aa17f..56a2643d40 100644 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone-ha.cli +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone-ha.cli @@ -574,4 +574,47 @@ if (outcome == failed) of /subsystem=logging/logger=io.jaegertracing.Configurati echo end-if +# Migrate from 5.0.0 to 6.0.0 +if (result == NON_XA) of /subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:read-attribute(name=mode) + echo Removing NON_XA transaction mode from infinispan/hibernate/entity + /subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:undefine-attribute(name=mode) + echo +end-if + +if (result == false) of /subsystem=datasources/data-source=ExampleDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ExampleDS datasource + /subsystem=datasources/data-source=ExampleDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=datasources/data-source=KeycloakDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to KeycloakDS datasource + /subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=ejb3/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ejb3 subsystem + /subsystem=ejb3/:write-attribute(name=statistics-enabled,value=${wildfly.ejb3.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=transactions/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to transactions subsystem + /subsystem=transactions/:write-attribute(name=statistics-enabled,value=${wildfly.transactions.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=undertow/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to undertow subsystem + /subsystem=undertow/:write-attribute(name=statistics-enabled,value=${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=webservices/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to webservices subsystem + /subsystem=webservices/:write-attribute(name=statistics-enabled,value=${wildfly.webservices.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + echo *** End Migration *** diff --git a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone.cli b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone.cli index 9c37cc4acb..cb5a46f933 100644 --- a/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone.cli +++ b/distribution/feature-packs/server-feature-pack/src/main/resources/content/bin/migrate-standalone.cli @@ -463,4 +463,47 @@ if (outcome == failed) of /subsystem=logging/logger=io.jaegertracing.Configurati echo end-if +# Migrate from 5.0.0 to 6.0.0 +if (result == NON_XA) of /subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:read-attribute(name=mode) + echo Removing NON_XA transaction mode from infinispan/hibernate/entity + /subsystem=infinispan/cache-container=hibernate/local-cache=entity/component=transaction/:undefine-attribute(name=mode) + echo +end-if + +if (result == false) of /subsystem=datasources/data-source=ExampleDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ExampleDS datasource + /subsystem=datasources/data-source=ExampleDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=datasources/data-source=KeycloakDS/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to KeycloakDS datasource + /subsystem=datasources/data-source=KeycloakDS/:write-attribute(name=statistics-enabled,value=${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=ejb3/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to ejb3 subsystem + /subsystem=ejb3/:write-attribute(name=statistics-enabled,value=${wildfly.ejb3.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=transactions/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to transactions subsystem + /subsystem=transactions/:write-attribute(name=statistics-enabled,value=${wildfly.transactions.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=undertow/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to undertow subsystem + /subsystem=undertow/:write-attribute(name=statistics-enabled,value=${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + +if (result == false) of /subsystem=webservices/:read-attribute(name=statistics-enabled) + echo Adding statistics-enabled expression to webservices subsystem + /subsystem=webservices/:write-attribute(name=statistics-enabled,value=${wildfly.webservices.statistics-enabled:${wildfly.statistics-enabled:false}}) + echo +end-if + echo *** End Migration *** diff --git a/examples/demo-template/third-party-cdi/pom.xml b/examples/demo-template/third-party-cdi/pom.xml index d0c50fc37f..af48cd8825 100755 --- a/examples/demo-template/third-party-cdi/pom.xml +++ b/examples/demo-template/third-party-cdi/pom.xml @@ -46,7 +46,7 @@ org.jboss.spec.javax.faces jboss-jsf-api_2.3_spec - 2.3.5.SP1 + 2.3.9.SP01 provided diff --git a/pom.xml b/pom.xml index a8c8b029ea..7ed75c2ca3 100755 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ org.jboss jboss-parent - 28 + 29 Keycloak @@ -41,32 +41,32 @@ ${timestamp} - 15.0.1.Final + 16.0.0.Final 1.2.10.Final 7.2.0.GA-redhat-00005 1.2.10.Final - 7.0.0.Final + 8.0.0.Final 7.2.0.Final 0.66.19 - 1.8 - 1.11 + 1.11 + 1.14 4.5.4 4.4.5 0.6 1.5.0.Final 1.60 - 3.2.5-jbossorg-1 + 3.2.7 2.1.1 2.3.1 1.4.193 2.2 - 5.3.7.Final - 5.3.7.Final - 9.4.3.Final - 2.9.5 + 5.3.9.Final + 5.3.9.Final + 9.4.8.Final + 2.9.8 1.6.2 3.3.2.Final 2.1.0.Final @@ -76,17 +76,17 @@ 1.0.1.Final 1.0.3.Final 1.2.17 - 3.6.2.Final - 3.6.2.Final + 3.6.3.Final + 3.6.3.Final 20180219.1 1.7.22 1.7.22 3.0.7 2.3.1 2.3.1 - 2.0.15.Final - 1.7.0.Final - 1.3.0.Final + 2.0.19.Final + 1.8.0.Final + 1.4.0.Final 8.1.17.v20150415 9.1.5.v20140505 9.2.4.v20141103 diff --git a/testsuite/integration-arquillian/pom.xml b/testsuite/integration-arquillian/pom.xml index decddce7f2..b4fb6f8b75 100644 --- a/testsuite/integration-arquillian/pom.xml +++ b/testsuite/integration-arquillian/pom.xml @@ -42,9 +42,9 @@ undertow - 14.0.1.Final - 6.0.2.Final - 2.1.0.Final + 15.0.1.Final + 7.0.0.Final + 2.1.1.Final org.jboss.as.clustering.infinispan - + @@ -71,7 +71,6 @@ - diff --git a/wildfly/server-subsystem/src/main/resources/subsystem-templates/keycloak-undertow.xml b/wildfly/server-subsystem/src/main/resources/subsystem-templates/keycloak-undertow.xml index ff5a695f3a..80fddfa985 100644 --- a/wildfly/server-subsystem/src/main/resources/subsystem-templates/keycloak-undertow.xml +++ b/wildfly/server-subsystem/src/main/resources/subsystem-templates/keycloak-undertow.xml @@ -24,7 +24,7 @@ org.wildfly.extension.undertow - +