[tomee-tck] branch master updated: For the moment don't need any of this

2019-08-13 Thread jlmonteiro
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/master by this push:
 new 903a1a0  For the moment don't need any of this
903a1a0 is described below

commit 903a1a0e7509d5d78cb4acf7675e604b01246fac
Author: Jean-Louis Monteiro 
AuthorDate: Wed Aug 14 07:49:45 2019 +0200

For the moment don't need any of this
---
 src/test/script/openejb/tck/commands/ReverseSetupCommand.groovy | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/src/test/script/openejb/tck/commands/ReverseSetupCommand.groovy 
b/src/test/script/openejb/tck/commands/ReverseSetupCommand.groovy
index b005850..52b5489 100644
--- a/src/test/script/openejb/tck/commands/ReverseSetupCommand.groovy
+++ b/src/test/script/openejb/tck/commands/ReverseSetupCommand.groovy
@@ -33,17 +33,10 @@ class ReverseSetupCommand
 
 def execute() {
 def javaeeCtsHome = requireDirectory('javaee.cts.home')
-def geronimoHome = requireDirectory('geronimo.home')
-def javaHome = requireDirectory('java.home')
 
 def tsant = new TsAntCommand(this)
 tsant.props['build.vi'] = true
 
-// TODO Update for TomEE
-tsant.props['endorsed.dirs'] = 
"${geronimoHome}/repository/org/apache/geronimo/specs/geronimo-jaxb_2.2_spec/1.0.1"
 + File.pathSeparator + 
"${geronimoHome}/repository/org/apache/geronimo/specs/geronimo-jaxws_2.2_spec/1.1"
 + File.pathSeparator + "${javaHome}/lib/endorsed"
-
-tsant.envs['ANT_OPTS'] = 
"-Djava.endorsed.dirs='${geronimoHome}/repository/org/apache/geronimo/specs/geronimo-jaxb_2.2_spec/1.0.1"
 + File.pathSeparator + 
"${geronimoHome}/repository/org/apache/geronimo/specs/geronimo-jaxws_2.2_spec/1.1"
 + File.pathSeparator + "${javaHome}/lib/endorsed'"
-
 def setupReverseTests = { section ->
 
 tsant.workingDirectory = 
"$javaeeCtsHome/src/com/sun/ts/tests/$section"



buildbot success in on tomee-7.0.x-ubuntu

2019-08-13 Thread buildbot
The Buildbot has detected a restored build on builder tomee-7.0.x-ubuntu while 
building tomee. Full details are available at:
https://ci.apache.org/builders/tomee-7.0.x-ubuntu/builds/50

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_qnode7_ubuntu

Build Reason: The SingleBranchScheduler scheduler named 
'on-tomee-7.0.x-ubuntu-commit' triggered this build
Build Source Stamp: [branch tomee-7.0.x] 
31a4704929c63ded7fc4e1c0f20c5064a0c5fa62
Blamelist: Jonathan Gallimore 

Build succeeded!

Sincerely,
 -The Buildbot





[jira] [Commented] (TOMEE-2483) Update for TomEE Maven Plugin documentation

2019-08-13 Thread Cesar Hernandez (JIRA)


[ 
https://issues.apache.org/jira/browse/TOMEE-2483?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16906669#comment-16906669
 ] 

Cesar Hernandez commented on TOMEE-2483:


I think the pom issue can be resolved by reverting this change on the file: 
maven/tomee-webapp-archetype/src/main/resources/archetype-resources/pom.xml 

https://github.com/apache/tomee/commit/33a00686676d77b7af81df9e9b7e5acc26772e89#diff-c36ad78165bd5bdc65e539384f1a80dbL23-L26

> Update for TomEE Maven Plugin documentation
> ---
>
> Key: TOMEE-2483
> URL: https://issues.apache.org/jira/browse/TOMEE-2483
> Project: TomEE
>  Issue Type: Documentation
>Affects Versions: 8.0.0-M2
>Reporter: Cesar Hernandez
>Priority: Major
> Fix For: 8.0.0-Final
>
>
> The documentation for 
> [http://tomee.apache.org/tomee-8.0/docs/tomee-mp-getting-started.html]  is 
> still referencing the group id `org.apache.openejb.maven`.
> Effectively the following command will fail:
>  
> {{mvn archetype:generate -DarchetypeGroupId=org.apache.openejb.maven 
> -DarchetypeArtifactId=tomee-webapp-archetype 
> -DarchetypeVersion=8.0.0-SNAPSHOT}}
>  
> The documentation needs to be updated to contains the correct group ID and 
> check if the document can be improved.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Commented] (TOMEE-2483) Update for TomEE Maven Plugin documentation

2019-08-13 Thread Cesar Hernandez (JIRA)


[ 
https://issues.apache.org/jira/browse/TOMEE-2483?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16906668#comment-16906668
 ] 

Cesar Hernandez commented on TOMEE-2483:


Also if you provide the correct group id, the produced project gets and invalid 
pom.xml for the sections: artifactId and name:
{code:java}
mvn archetype:generate -DarchetypeGroupId=org.apache.tomee.maven 
-DarchetypeArtifactId=tomee-webapp-archetype -DarchetypeVersion=8.0.0-M3 
-DgroupId=superbiz.foo -DartifactId=book-microservice{code}
produces the following sections of the pom.xml with invalida data:
{code:java}
superbiz.foo
 ${project.artifactId}
 1.0-SNAPSHOT
 war
 ${project.artifactId} TomEE Webapp{code}
 

> Update for TomEE Maven Plugin documentation
> ---
>
> Key: TOMEE-2483
> URL: https://issues.apache.org/jira/browse/TOMEE-2483
> Project: TomEE
>  Issue Type: Documentation
>Affects Versions: 8.0.0-M2
>Reporter: Cesar Hernandez
>Priority: Major
> Fix For: 8.0.0-Final
>
>
> The documentation for 
> [http://tomee.apache.org/tomee-8.0/docs/tomee-mp-getting-started.html]  is 
> still referencing the group id `org.apache.openejb.maven`.
> Effectively the following command will fail:
>  
> {{mvn archetype:generate -DarchetypeGroupId=org.apache.openejb.maven 
> -DarchetypeArtifactId=tomee-webapp-archetype 
> -DarchetypeVersion=8.0.0-SNAPSHOT}}
>  
> The documentation needs to be updated to contains the correct group ID and 
> check if the document can be improved.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


buildbot success in on tomee-7.0.x-ubuntu-jvm8

2019-08-13 Thread buildbot
The Buildbot has detected a restored build on builder tomee-7.0.x-ubuntu-jvm8 
while building tomee. Full details are available at:
https://ci.apache.org/builders/tomee-7.0.x-ubuntu-jvm8/builds/48

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_qnode7_ubuntu

Build Reason: The SingleBranchScheduler scheduler named 
'on-tomee-7.0.x-ubuntu-jvm8-commit' triggered this build
Build Source Stamp: [branch tomee-7.0.x] 
2def9c43dcda3efcecf961e6a2454b6605e5d546
Blamelist: Jonathan Gallimore 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in on tomee-7.1.x-ubuntu-jvm8

2019-08-13 Thread buildbot
The Buildbot has detected a new failure on builder tomee-7.1.x-ubuntu-jvm8 
while building tomee. Full details are available at:
https://ci.apache.org/builders/tomee-7.1.x-ubuntu-jvm8/builds/78

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_qnode7_ubuntu

Build Reason: The SingleBranchScheduler scheduler named 
'on-tomee-7.1.x-ubuntu-jvm8-commit' triggered this build
Build Source Stamp: [branch tomee-7.1.x] 
608eed2e8edc7c2b6b54666dcb83d9f9df762ac7
Blamelist: Jonathan Gallimore 

BUILD FAILED: failed test

Sincerely,
 -The Buildbot





[tomee] 04/05: Update JAXB to 2.3.1

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 0f4002a6849b4a4f9712a2ebf07bef70bb8cf719
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 21:33:39 2019 +0100

Update JAXB to 2.3.1
---
 examples/groovy-cdi/pom.xml   | 2 +-
 examples/groovy-jpa/pom.xml   | 2 +-
 examples/groovy-spock/pom.xml | 2 +-
 pom.xml   | 6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/examples/groovy-cdi/pom.xml b/examples/groovy-cdi/pom.xml
index 62f2f51..9840e4c 100644
--- a/examples/groovy-cdi/pom.xml
+++ b/examples/groovy-cdi/pom.xml
@@ -87,7 +87,7 @@
 
   com.sun.xml.bind
   jaxb-impl
-  2.2.11
+  2.3.1
 
 
   junit
diff --git a/examples/groovy-jpa/pom.xml b/examples/groovy-jpa/pom.xml
index 98a5b07..c96eddc 100644
--- a/examples/groovy-jpa/pom.xml
+++ b/examples/groovy-jpa/pom.xml
@@ -88,7 +88,7 @@
 
   com.sun.xml.bind
   jaxb-impl
-  2.1.13
+  2.3.1
 
 
   junit
diff --git a/examples/groovy-spock/pom.xml b/examples/groovy-spock/pom.xml
index 38231ea..3106207 100644
--- a/examples/groovy-spock/pom.xml
+++ b/examples/groovy-spock/pom.xml
@@ -97,7 +97,7 @@
 
   com.sun.xml.bind
   jaxb-impl
-  2.1.13
+  2.3.1
 
 
   junit
diff --git a/pom.xml b/pom.xml
index 9042eea..c7e723e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1732,17 +1732,17 @@
   
 javax.xml.bind
 jaxb-api
-2.3.0
+2.3.1
   
   
 com.sun.xml.bind
 jaxb-impl
-2.3.0
+2.3.1
   
   
 com.sun.xml.bind
 jaxb-core
-2.3.0
+2.3.1
   

 org.fusesource.jansi



[tomee] 05/05: Revert "Update JAXB to 2.3.1"

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 31a4704929c63ded7fc4e1c0f20c5064a0c5fa62
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 21:43:51 2019 +0100

Revert "Update JAXB to 2.3.1"

This reverts commit 0f4002a6849b4a4f9712a2ebf07bef70bb8cf719.
---
 examples/groovy-cdi/pom.xml   | 2 +-
 examples/groovy-jpa/pom.xml   | 2 +-
 examples/groovy-spock/pom.xml | 2 +-
 pom.xml   | 6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/examples/groovy-cdi/pom.xml b/examples/groovy-cdi/pom.xml
index 9840e4c..62f2f51 100644
--- a/examples/groovy-cdi/pom.xml
+++ b/examples/groovy-cdi/pom.xml
@@ -87,7 +87,7 @@
 
   com.sun.xml.bind
   jaxb-impl
-  2.3.1
+  2.2.11
 
 
   junit
diff --git a/examples/groovy-jpa/pom.xml b/examples/groovy-jpa/pom.xml
index c96eddc..98a5b07 100644
--- a/examples/groovy-jpa/pom.xml
+++ b/examples/groovy-jpa/pom.xml
@@ -88,7 +88,7 @@
 
   com.sun.xml.bind
   jaxb-impl
-  2.3.1
+  2.1.13
 
 
   junit
diff --git a/examples/groovy-spock/pom.xml b/examples/groovy-spock/pom.xml
index 3106207..38231ea 100644
--- a/examples/groovy-spock/pom.xml
+++ b/examples/groovy-spock/pom.xml
@@ -97,7 +97,7 @@
 
   com.sun.xml.bind
   jaxb-impl
-  2.3.1
+  2.1.13
 
 
   junit
diff --git a/pom.xml b/pom.xml
index c7e723e..9042eea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1732,17 +1732,17 @@
   
 javax.xml.bind
 jaxb-api
-2.3.1
+2.3.0
   
   
 com.sun.xml.bind
 jaxb-impl
-2.3.1
+2.3.0
   
   
 com.sun.xml.bind
 jaxb-core
-2.3.1
+2.3.0
   

 org.fusesource.jansi



[tomee] 03/05: Revert "Backport JAXB bom and 2.3.2"

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 4ae4d7f19fb6830c89b370be38d50f88dc590911
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 21:31:11 2019 +0100

Revert "Backport JAXB bom and 2.3.2"

This reverts commit 57166e9c0c561d650819ddff2f1c8e9d81e6cf11.
---
 boms/jaxb-runtime/pom.xml  | 63 --
 boms/pom.xml   | 41 ---
 container/openejb-jee/pom.xml  | 16 ++--
 examples/groovy-cdi/pom.xml| 12 --
 examples/groovy-jpa/pom.xml| 12 --
 examples/groovy-spock/pom.xml  | 12 --
 examples/simple-stateful-callbacks/pom.xml |  6 ---
 pom.xml| 27 -
 server/openejb-client/pom.xml  | 13 --
 server/openejb-cxf/pom.xml |  9 +++--
 server/openejb-webservices/pom.xml | 13 --
 tomee/apache-tomee/pom.xml | 12 --
 tomee/tomee-webaccess/pom.xml  | 13 --
 13 files changed, 98 insertions(+), 151 deletions(-)

diff --git a/boms/jaxb-runtime/pom.xml b/boms/jaxb-runtime/pom.xml
deleted file mode 100644
index 581561a..000
--- a/boms/jaxb-runtime/pom.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
-
-  
-org.apache.tomee.bom
-boms
-7.1.2-SNAPSHOT
-  
-
-  4.0.0
-  jaxb-runtime
-  pom
-  TomEE :: BOMs :: JAXB Runtime
-
-  
-
-  
-
-  jakarta.xml.bind
-  jakarta.xml.bind-api
-  2.3.2
-
-
-  org.glassfish.jaxb
-  jaxb-runtime
-  2.3.2
-  
- 
-  jakarta.activation
-  jakarta.activation-api
-
-  
-
-  
-
-
-
diff --git a/boms/pom.xml b/boms/pom.xml
deleted file mode 100644
index 615dbdd..000
--- a/boms/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
-
-  
-tomee-project
-org.apache.tomee
-7.1.2-SNAPSHOT
-  
-
-  4.0.0
-  org.apache.tomee.bom
-  boms
-  pom
-  TomEE :: BOMs
-
-  
-jaxb-runtime
-  
-
-
-
diff --git a/container/openejb-jee/pom.xml b/container/openejb-jee/pom.xml
index fd3980f..1c1b14c 100644
--- a/container/openejb-jee/pom.xml
+++ b/container/openejb-jee/pom.xml
@@ -59,9 +59,19 @@
   provided
 
 
-  org.apache.tomee.bom
-  jaxb-runtime
-  pom
+  javax.xml.bind
+  jaxb-api
+  provided
+
+
+  com.sun.xml.bind
+  jaxb-impl
+  provided
+
+
+  com.sun.xml.bind
+  jaxb-core
+  provided
 
 
   junit
diff --git a/examples/groovy-cdi/pom.xml b/examples/groovy-cdi/pom.xml
index 29aada3..62f2f51 100644
--- a/examples/groovy-cdi/pom.xml
+++ b/examples/groovy-cdi/pom.xml
@@ -80,10 +80,14 @@
   2.4.8
 
 
-  org.apache.tomee.bom
-  jaxb-runtime
-  7.1.2-SNAPSHOT
-  pom
+  org.apache.geronimo.specs
+  geronimo-jaxb_2.2_spec
+  1.0.1
+
+
+  com.sun.xml.bind
+  jaxb-impl
+  2.2.11
 
 
   junit
diff --git a/examples/groovy-jpa/pom.xml b/examples/groovy-jpa/pom.xml
index 5c97790..98a5b07 100644
--- a/examples/groovy-jpa/pom.xml
+++ b/examples/groovy-jpa/pom.xml
@@ -81,10 +81,14 @@
   2.4.8
 
 
-  org.apache.tomee.bom
-  jaxb-runtime
-  7.1.2-SNAPSHOT
-  pom
+  org.apache.geronimo.specs
+  geronimo-jaxb_2.2_spec
+  1.0.1
+
+
+  com.sun.xml.bind
+  jaxb-impl
+  2.1.13
 
 
   junit
diff --git a/examples/groovy-spock/pom.xml b/examples/groovy-spock/pom.xml
index 20c4e47..38231ea 100644
--- a/examples/groovy-spock/pom.xml
+++ b/examples/groovy-spock/pom.xml
@@ -90,10 +90,14 @@
   2.4.8
 
 
-  org.apache.tomee.bom
-  jaxb-runtime
-  7.1.2-SNAPSHOT
-  pom
+  org.apache.geronimo.specs
+  geronimo-jaxb_2.2_spec
+  1.0.1
+
+
+  com.sun.xml.bind
+  jaxb-impl
+  2.1.13
 
 
   junit
diff --git a/examples/simple-stateful-callbacks/pom.xml 
b/examples/simple-stateful-callbacks/pom.xml
index 8e78241..6e158cb 100644
--- a/examples/simple-stateful-callbacks/pom.xml
+++ b/examples/simple-stateful-callbacks/pom.xml
@@ -58,12 +58,6 @@
   provided
 
 
-  org.apache.tomee.bom
-  jaxb-runtime
-  7.1.2-SNAPSHOT
-  pom
-
-
   junit
   junit
   4.12
diff --git a/pom.xml b/pom.xml
index c3c7849..9042eea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -509,7 +509,6 @@
 true
   
   
-boms

[tomee] 02/05: Revert "Fix compile error"

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 90dbea19d77ee80af6b740eafaf901e7d984e8eb
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 21:31:01 2019 +0100

Revert "Fix compile error"

This reverts commit ef739785deb5de1279bc3a5905c4c6bed02f8de5.
---
 server/openejb-cxf/pom.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/server/openejb-cxf/pom.xml b/server/openejb-cxf/pom.xml
index 17a3a78..4f16881 100644
--- a/server/openejb-cxf/pom.xml
+++ b/server/openejb-cxf/pom.xml
@@ -127,6 +127,10 @@
   pom
 
 
+  com.sun.xml.bind
+  jaxb-core
+
+
   org.apache.cxf
   cxf-rt-frontend-jaxws
   ${cxf.version}



[tomee] branch tomee-7.0.x updated (2def9c4 -> 31a4704)

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a change to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git.


from 2def9c4  Correcting versions after backport
 new cc1b5f4  Revert "Correcting versions after backport"
 new 90dbea1  Revert "Fix compile error"
 new 4ae4d7f  Revert "Backport JAXB bom and 2.3.2"
 new 0f4002a  Update JAXB to 2.3.1
 new 31a4704  Revert "Update JAXB to 2.3.1"

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 boms/jaxb-runtime/pom.xml  | 63 --
 boms/pom.xml   | 41 ---
 container/openejb-jee/pom.xml  | 16 ++--
 examples/groovy-cdi/pom.xml| 12 --
 examples/groovy-jpa/pom.xml| 12 --
 examples/groovy-spock/pom.xml  | 12 --
 examples/simple-stateful-callbacks/pom.xml |  6 ---
 pom.xml| 27 -
 server/openejb-client/pom.xml  | 13 --
 server/openejb-cxf/pom.xml | 13 --
 server/openejb-webservices/pom.xml | 13 --
 tomee/apache-tomee/pom.xml | 12 --
 tomee/tomee-webaccess/pom.xml  | 13 --
 13 files changed, 102 insertions(+), 151 deletions(-)
 delete mode 100644 boms/jaxb-runtime/pom.xml
 delete mode 100644 boms/pom.xml



buildbot failure in on tomee-7.0.x-ubuntu

2019-08-13 Thread buildbot
The Buildbot has detected a new failure on builder tomee-7.0.x-ubuntu while 
building tomee. Full details are available at:
https://ci.apache.org/builders/tomee-7.0.x-ubuntu/builds/48

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb_qnode7_ubuntu

Build Reason: The SingleBranchScheduler scheduler named 
'on-tomee-7.0.x-ubuntu-commit' triggered this build
Build Source Stamp: [branch tomee-7.0.x] 
ef739785deb5de1279bc3a5905c4c6bed02f8de5
Blamelist: Jonathan Gallimore 

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





[tomee] 01/02: Backport JAXB bom and 2.3.2

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 57166e9c0c561d650819ddff2f1c8e9d81e6cf11
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 20:20:50 2019 +0100

Backport JAXB bom and 2.3.2
---
 boms/jaxb-runtime/pom.xml  | 63 ++
 boms/pom.xml   | 41 +++
 container/openejb-jee/pom.xml  | 16 ++--
 examples/groovy-cdi/pom.xml| 12 ++
 examples/groovy-jpa/pom.xml| 12 ++
 examples/groovy-spock/pom.xml  | 12 ++
 examples/simple-stateful-callbacks/pom.xml |  6 +++
 pom.xml| 27 +
 server/openejb-client/pom.xml  | 13 ++
 server/openejb-cxf/pom.xml |  9 ++---
 server/openejb-webservices/pom.xml | 13 ++
 tomee/apache-tomee/pom.xml | 12 ++
 tomee/tomee-webaccess/pom.xml  | 13 ++
 13 files changed, 151 insertions(+), 98 deletions(-)

diff --git a/boms/jaxb-runtime/pom.xml b/boms/jaxb-runtime/pom.xml
new file mode 100644
index 000..581561a
--- /dev/null
+++ b/boms/jaxb-runtime/pom.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+  
+org.apache.tomee.bom
+boms
+7.1.2-SNAPSHOT
+  
+
+  4.0.0
+  jaxb-runtime
+  pom
+  TomEE :: BOMs :: JAXB Runtime
+
+  
+
+  
+
+  jakarta.xml.bind
+  jakarta.xml.bind-api
+  2.3.2
+
+
+  org.glassfish.jaxb
+  jaxb-runtime
+  2.3.2
+  
+ 
+  jakarta.activation
+  jakarta.activation-api
+
+  
+
+  
+
+
+
diff --git a/boms/pom.xml b/boms/pom.xml
new file mode 100644
index 000..615dbdd
--- /dev/null
+++ b/boms/pom.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+  
+tomee-project
+org.apache.tomee
+7.1.2-SNAPSHOT
+  
+
+  4.0.0
+  org.apache.tomee.bom
+  boms
+  pom
+  TomEE :: BOMs
+
+  
+jaxb-runtime
+  
+
+
+
diff --git a/container/openejb-jee/pom.xml b/container/openejb-jee/pom.xml
index 1c1b14c..fd3980f 100644
--- a/container/openejb-jee/pom.xml
+++ b/container/openejb-jee/pom.xml
@@ -59,19 +59,9 @@
   provided
 
 
-  javax.xml.bind
-  jaxb-api
-  provided
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  provided
-
-
-  com.sun.xml.bind
-  jaxb-core
-  provided
+  org.apache.tomee.bom
+  jaxb-runtime
+  pom
 
 
   junit
diff --git a/examples/groovy-cdi/pom.xml b/examples/groovy-cdi/pom.xml
index 62f2f51..29aada3 100644
--- a/examples/groovy-cdi/pom.xml
+++ b/examples/groovy-cdi/pom.xml
@@ -80,14 +80,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  2.2.11
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/groovy-jpa/pom.xml b/examples/groovy-jpa/pom.xml
index 98a5b07..5c97790 100644
--- a/examples/groovy-jpa/pom.xml
+++ b/examples/groovy-jpa/pom.xml
@@ -81,14 +81,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  2.1.13
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/groovy-spock/pom.xml b/examples/groovy-spock/pom.xml
index 38231ea..20c4e47 100644
--- a/examples/groovy-spock/pom.xml
+++ b/examples/groovy-spock/pom.xml
@@ -90,14 +90,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  2.1.13
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/simple-stateful-callbacks/pom.xml 
b/examples/simple-stateful-callbacks/pom.xml
index 6e158cb..8e78241 100644
--- a/examples/simple-stateful-callbacks/pom.xml
+++ b/examples/simple-stateful-callbacks/pom.xml
@@ -58,6 +58,12 @@
   provided
 
 
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
+
+
   junit
   junit
   4.12
diff --git a/pom.xml b/pom.xml
index 9042eea..c3c7849 100644
--- a/pom.xml
+++ b/pom.xml
@@ -509,6 +509,7 @@
 true
   
   
+boms
 itests
 maven
 gradle
@@ -537,6 +538,7 @@
 
   quick
   
+ 

[tomee] branch tomee-7.0.x updated (b7078ad -> ef73978)

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a change to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git.


from b7078ad  Update CXF and Tomcat to latest versions
 new 57166e9  Backport JAXB bom and 2.3.2
 new ef73978  Fix compile error

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../jaxb-runtime}/pom.xml  | 51 +++---
 {assembly => boms}/pom.xml | 18 +---
 container/openejb-jee/pom.xml  | 16 ++-
 examples/groovy-cdi/pom.xml| 12 ++---
 examples/groovy-jpa/pom.xml| 12 ++---
 examples/groovy-spock/pom.xml  | 12 ++---
 examples/simple-stateful-callbacks/pom.xml |  6 +++
 pom.xml| 27 +---
 server/openejb-client/pom.xml  | 13 ++
 server/openejb-cxf/pom.xml | 13 ++
 server/openejb-webservices/pom.xml | 13 ++
 tomee/apache-tomee/pom.xml | 12 ++---
 tomee/tomee-webaccess/pom.xml  | 13 ++
 13 files changed, 83 insertions(+), 135 deletions(-)
 copy {itests/openejb-itests-web => boms/jaxb-runtime}/pom.xml (61%)
 copy {assembly => boms}/pom.xml (82%)



[tomee] 02/02: Fix compile error

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.0.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit ef739785deb5de1279bc3a5905c4c6bed02f8de5
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 20:51:00 2019 +0100

Fix compile error
---
 server/openejb-cxf/pom.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/server/openejb-cxf/pom.xml b/server/openejb-cxf/pom.xml
index 4f16881..17a3a78 100644
--- a/server/openejb-cxf/pom.xml
+++ b/server/openejb-cxf/pom.xml
@@ -127,10 +127,6 @@
   pom
 
 
-  com.sun.xml.bind
-  jaxb-core
-
-
   org.apache.cxf
   cxf-rt-frontend-jaxws
   ${cxf.version}



[tomee] 01/02: Backport JAXB bom and 2.3.2

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.1.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 73ef5a7d3ecca2fdd89ccfc0c96bf36bd3cf174b
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 20:20:50 2019 +0100

Backport JAXB bom and 2.3.2
---
 boms/jaxb-runtime/pom.xml  | 63 ++
 boms/pom.xml   | 41 +++
 container/openejb-jee/pom.xml  | 16 ++--
 examples/groovy-cdi/pom.xml| 12 ++
 examples/groovy-jpa/pom.xml| 12 ++
 examples/groovy-spock/pom.xml  | 12 ++
 examples/simple-stateful-callbacks/pom.xml |  6 +++
 pom.xml| 27 +
 server/openejb-client/pom.xml  | 13 ++
 server/openejb-cxf/pom.xml |  9 ++---
 server/openejb-webservices/pom.xml | 13 ++
 tomee/apache-tomee/pom.xml | 12 ++
 tomee/tomee-webaccess/pom.xml  | 13 ++
 13 files changed, 151 insertions(+), 98 deletions(-)

diff --git a/boms/jaxb-runtime/pom.xml b/boms/jaxb-runtime/pom.xml
new file mode 100644
index 000..581561a
--- /dev/null
+++ b/boms/jaxb-runtime/pom.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+  
+org.apache.tomee.bom
+boms
+7.1.2-SNAPSHOT
+  
+
+  4.0.0
+  jaxb-runtime
+  pom
+  TomEE :: BOMs :: JAXB Runtime
+
+  
+
+  
+
+  jakarta.xml.bind
+  jakarta.xml.bind-api
+  2.3.2
+
+
+  org.glassfish.jaxb
+  jaxb-runtime
+  2.3.2
+  
+ 
+  jakarta.activation
+  jakarta.activation-api
+
+  
+
+  
+
+
+
diff --git a/boms/pom.xml b/boms/pom.xml
new file mode 100644
index 000..615dbdd
--- /dev/null
+++ b/boms/pom.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+  
+tomee-project
+org.apache.tomee
+7.1.2-SNAPSHOT
+  
+
+  4.0.0
+  org.apache.tomee.bom
+  boms
+  pom
+  TomEE :: BOMs
+
+  
+jaxb-runtime
+  
+
+
+
diff --git a/container/openejb-jee/pom.xml b/container/openejb-jee/pom.xml
index 3e29c1e..1c6c9e1 100644
--- a/container/openejb-jee/pom.xml
+++ b/container/openejb-jee/pom.xml
@@ -59,19 +59,9 @@
   provided
 
 
-  javax.xml.bind
-  jaxb-api
-  provided
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  provided
-
-
-  com.sun.xml.bind
-  jaxb-core
-  provided
+  org.apache.tomee.bom
+  jaxb-runtime
+  pom
 
 
   junit
diff --git a/examples/groovy-cdi/pom.xml b/examples/groovy-cdi/pom.xml
index 07cf891..a87f8bd 100644
--- a/examples/groovy-cdi/pom.xml
+++ b/examples/groovy-cdi/pom.xml
@@ -80,14 +80,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  2.2.11
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/groovy-jpa/pom.xml b/examples/groovy-jpa/pom.xml
index 4f819f7..f51655b 100644
--- a/examples/groovy-jpa/pom.xml
+++ b/examples/groovy-jpa/pom.xml
@@ -81,14 +81,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  2.1.13
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/groovy-spock/pom.xml b/examples/groovy-spock/pom.xml
index 5ea8ba1..578449e 100644
--- a/examples/groovy-spock/pom.xml
+++ b/examples/groovy-spock/pom.xml
@@ -90,14 +90,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  com.sun.xml.bind
-  jaxb-impl
-  2.1.13
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/simple-stateful-callbacks/pom.xml 
b/examples/simple-stateful-callbacks/pom.xml
index 8e02250..93b5695 100644
--- a/examples/simple-stateful-callbacks/pom.xml
+++ b/examples/simple-stateful-callbacks/pom.xml
@@ -58,6 +58,12 @@
   provided
 
 
+  org.apache.tomee.bom
+  jaxb-runtime
+  7.1.2-SNAPSHOT
+  pom
+
+
   junit
   junit
   4.12
diff --git a/pom.xml b/pom.xml
index 0a70f8b..1e2cc42 100644
--- a/pom.xml
+++ b/pom.xml
@@ -523,6 +523,7 @@
 true
   
   
+boms
 itests
 maven
 gradle
@@ -552,6 +553,7 @@
 
   quick
   
+ 

[tomee] branch tomee-7.1.x updated (98aaffc -> 608eed2)

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a change to branch tomee-7.1.x
in repository https://gitbox.apache.org/repos/asf/tomee.git.


from 98aaffc  Update CXF and Tomcat to latest versions
 new 73ef5a7  Backport JAXB bom and 2.3.2
 new 608eed2  Fix compile error

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../jaxb-runtime}/pom.xml  | 49 +++---
 {assembly => boms}/pom.xml | 16 ---
 container/openejb-jee/pom.xml  | 16 ++-
 examples/groovy-cdi/pom.xml| 12 ++
 examples/groovy-jpa/pom.xml| 12 ++
 examples/groovy-spock/pom.xml  | 12 ++
 examples/simple-stateful-callbacks/pom.xml |  6 +++
 pom.xml| 27 +---
 server/openejb-client/pom.xml  | 13 ++
 server/openejb-cxf/pom.xml | 13 ++
 server/openejb-webservices/pom.xml | 13 ++
 tomee/apache-tomee/pom.xml | 12 ++
 tomee/tomee-webaccess/pom.xml  | 13 ++
 13 files changed, 81 insertions(+), 133 deletions(-)
 copy {itests/openejb-itests-web => boms/jaxb-runtime}/pom.xml (63%)
 copy {assembly => boms}/pom.xml (84%)



[tomee] 02/02: Fix compile error

2019-08-13 Thread jgallimore
This is an automated email from the ASF dual-hosted git repository.

jgallimore pushed a commit to branch tomee-7.1.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 608eed2e8edc7c2b6b54666dcb83d9f9df762ac7
Author: Jonathan Gallimore 
AuthorDate: Tue Aug 13 20:51:00 2019 +0100

Fix compile error
---
 server/openejb-cxf/pom.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/server/openejb-cxf/pom.xml b/server/openejb-cxf/pom.xml
index a73f601..b266650 100644
--- a/server/openejb-cxf/pom.xml
+++ b/server/openejb-cxf/pom.xml
@@ -127,10 +127,6 @@
   pom
 
 
-  com.sun.xml.bind
-  jaxb-core
-
-
   org.apache.cxf
   cxf-rt-frontend-jaxws
   ${cxf.version}



[tomee-tck] branch master updated: updating GF_BUNDLE_URL value and complementary notes.

2019-08-13 Thread jlmonteiro
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/master by this push:
 new 31f56da  updating GF_BUNDLE_URL value and complementary notes.
 new 6420d57  Merge pull request #11 from cesarhernandezgt/fix-zip-url
31f56da is described below

commit 31f56da21407242fe1a54882f5dc1cbe42a08c46
Author: CesarHernandezGt 
AuthorDate: Tue Aug 13 12:28:35 2019 -0600

updating GF_BUNDLE_URL value and complementary notes.
---
 README.adoc | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/README.adoc b/README.adoc
index d6ce764..fd094f6 100644
--- a/README.adoc
+++ b/README.adoc
@@ -13,14 +13,17 @@ At present, we are building the TCK binary from source, 
following these steps:
 git clone https://github.com/eclipse-ee4j/jakartaee-tck
 cd jakaratee-tck
 export WORKSPACE=$(pwd)
-export 
GF_BUNDLE_URL=https://jenkins.eclipse.org/glassfish/job/glassfish/job/EE4J_8/85/artifact/bundles/glassfish.zip
+export 
GF_BUNDLE_URL=https://jenkins.eclipse.org/glassfish/job/glassfish/job/master/59/artifact/bundles/glassfish.zip
 export GF_HOME=$WORKSPACE
 export ANT_HOME=/home/jgallimore/Apps/apache-ant-1.10.5
 export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-amd64
 export PATH=$JAVA_HOME/bin:$ANT_HOME/bin/:$PATH
 $WORKSPACE/docker/build_jakartaeetck.sh
 
-Substitute in your path for JAVA_HOME and ANT_HOME as appropriate. The TCK 
takes around an hour to build.
+NOTE: Substitute in your path for JAVA_HOME and ANT_HOME as appropriate. The 
TCK takes around an hour to build.
+
+NOTE: The GF_BUNDLE_URL value can change, for latest releases please visit: 
https://jenkins.eclipse.org/glassfish/job/glassfish/job/master/lastSuccessfulBuild/artifact/bundles/
+
 
 Once that is complete, unzip the TCK zip file somewhere on your file system. 
Where and how you set this up is all down to personal preference, but I like to 
create a ee8tck folder under ~/dev and have both the TCK
 and Glassfish in this folder:
@@ -108,12 +111,12 @@ time-saver when trying to navigate to run a specific test.
 In bash just source the file like so:
 
   source runtests.completer
-  
+
 ### ZSH
 
 If you are using ZSH, you need to execute the follows commands:
 
-  autoload -U +X compinit && compinit 
+  autoload -U +X compinit && compinit
   autoload -U +X bashcompinit && bashcompinit
   source runtests.completer
 



[tomee-tck] branch master updated: Fix for web socket issues

2019-08-13 Thread jlmonteiro
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/master by this push:
 new d3b9e4f  Fix for web socket issues
d3b9e4f is described below

commit d3b9e4fae80c33f87b8027e284b343e0eea3462f
Author: Jean-Louis Monteiro 
AuthorDate: Tue Aug 13 19:54:56 2019 +0200

Fix for web socket issues
---
 pom.xml | 44 
 1 file changed, 32 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 702a71d..3f177d8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,7 +41,7 @@
 8.0.0-SNAPSHOT
 8.0.0-SNAPSHOT
 
-9.0.12
+9.0.22
 
 10.7.1.1
 
@@ -114,16 +114,14 @@
   1.5.10
 
 
-
+
+  
+  
+  
+  
+  
+  

+
 
 
   com.sun.javaee.tck
@@ -231,6 +229,28 @@
   webdeployer
   ${openejb.version}
 
+
+
+  org.apache.tomcat
+  tomcat-websocket
+  ${tomcat.version}
+
+
+  org.apache.tomcat
+  tomcat-util
+  ${tomcat.version}
+
+
+  org.apache.tomcat
+  tomcat-juli
+  ${tomcat.version}
+
+
+  org.apache.tomcat
+  tomcat-api
+  ${tomcat.version}
+
+
   
 
   
@@ -823,7 +843,7 @@
   false
   true
   true
-  
openejb-lite,activemq-client,activemq-client,tsharness,cts,whitebox,dbprocedures,geronimo-mail,openejb-derbynet,derby,derbynet,derbyclient,webdeployer
+  
tomcat-websocket,tomcat-util,tomcat-juli,tomcat-api,openejb-lite,activemq-client,activemq-client,tsharness,cts,whitebox,dbprocedures,geronimo-mail,openejb-derbynet,derby,derbynet,derbyclient,webdeployer
 
   
   



[tomee] branch master updated: Bump Tomcat version to latest 9.0.22

2019-08-13 Thread jlmonteiro
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
 new c167067  Bump Tomcat version to latest 9.0.22
c167067 is described below

commit c1670670bb81a95b7495aa6163a368997751603f
Author: Jean-Louis Monteiro 
AuthorDate: Tue Aug 13 19:42:44 2019 +0200

Bump Tomcat version to latest 9.0.22
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 60f5e60..dfbd46d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,7 +136,7 @@
 2.0.0
 1.2.6
 
-9.0.21
+9.0.22
 
 3.3.2
 2.10.3



[jira] [Resolved] (TOMEE-2629) Apache Tomcat 9.0.22

2019-08-13 Thread Jean-Louis MONTEIRO (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2629?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jean-Louis MONTEIRO resolved TOMEE-2629.

Resolution: Fixed

> Apache Tomcat 9.0.22
> 
>
> Key: TOMEE-2629
> URL: https://issues.apache.org/jira/browse/TOMEE-2629
> Project: TomEE
>  Issue Type: Dependency upgrade
>Reporter: Jean-Louis MONTEIRO
>Assignee: Jean-Louis MONTEIRO
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[tomee] 02/03: Use JAXB 2.3. Introduce "BOM" concept to reduce redundancy of deps & excludes.

2019-08-13 Thread dblevins
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 7f8a0cbb18a46011b50cfcdb5a65d22e38b1b99f
Author: David Blevins 
AuthorDate: Tue Aug 13 00:20:21 2019 -0700

Use JAXB 2.3.  Introduce "BOM" concept to reduce redundancy of deps & 
excludes.
---
 boms/jaxb-runtime/pom.xml | 63 +++
 boms/pom.xml  | 41 +
 container/openejb-jee/pom.xml | 21 +
 examples/groovy-cdi/pom.xml   | 16 ++-
 examples/groovy-jpa/pom.xml   | 16 ++-
 examples/groovy-spock/pom.xml | 16 ++-
 examples/jaxrs-json-provider-jettison/pom.xml |  7 +++
 examples/simple-stateful-callbacks/pom.xml| 12 ++---
 pom.xml   | 30 +++--
 server/openejb-client/pom.xml | 24 +-
 server/openejb-cxf/pom.xml| 19 +---
 server/openejb-webservices/pom.xml| 19 +---
 tomee/apache-tomee/pom.xml| 16 ++-
 tomee/tomee-webaccess/pom.xml | 17 +---
 14 files changed, 141 insertions(+), 176 deletions(-)

diff --git a/boms/jaxb-runtime/pom.xml b/boms/jaxb-runtime/pom.xml
new file mode 100644
index 000..5e1eafb
--- /dev/null
+++ b/boms/jaxb-runtime/pom.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+  
+org.apache.tomee.bom
+boms
+8.0.0-SNAPSHOT
+  
+
+  4.0.0
+  jaxb-runtime
+  pom
+  TomEE :: BOMs :: JAXB Runtime
+
+  
+
+  
+
+  jakarta.xml.bind
+  jakarta.xml.bind-api
+  2.3.2
+
+
+  org.glassfish.jaxb
+  jaxb-runtime
+  2.3.2
+  
+ 
+  jakarta.activation
+  jakarta.activation-api
+
+  
+
+  
+
+
+
diff --git a/boms/pom.xml b/boms/pom.xml
new file mode 100644
index 000..1db12e3
--- /dev/null
+++ b/boms/pom.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+  
+tomee-project
+org.apache.tomee
+8.0.0-SNAPSHOT
+  
+
+  4.0.0
+  org.apache.tomee.bom
+  boms
+  pom
+  TomEE :: BOMs
+
+  
+jaxb-runtime
+  
+
+
+
diff --git a/container/openejb-jee/pom.xml b/container/openejb-jee/pom.xml
index 63c9d93..144f4be 100644
--- a/container/openejb-jee/pom.xml
+++ b/container/openejb-jee/pom.xml
@@ -59,26 +59,9 @@
   provided
 
 
-  jakarta.xml.bind
-  jakarta.xml.bind-api
-  provided
-  
- 
-  jakarta.activation
-  jakarta.activation-api
-
-  
-
-
-  org.glassfish.jaxb
+  org.apache.tomee.bom
   jaxb-runtime
-  provided
-  
- 
-  jakarta.activation
-  jakarta.activation-api
-
-  
+  pom
 
 
   junit
diff --git a/examples/groovy-cdi/pom.xml b/examples/groovy-cdi/pom.xml
index e3ef823..a3105c3 100644
--- a/examples/groovy-cdi/pom.xml
+++ b/examples/groovy-cdi/pom.xml
@@ -80,20 +80,10 @@
   2.4.8
 
 
-  org.glassfish.jaxb
+  org.apache.tomee.bom
   jaxb-runtime
-  2.3.2
-  
- 
-  jakarta.activation
-  jakarta.activation-api
-
-  
-
-
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
+  8.0.0-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/groovy-jpa/pom.xml b/examples/groovy-jpa/pom.xml
index be2a127..3bd65fc 100644
--- a/examples/groovy-jpa/pom.xml
+++ b/examples/groovy-jpa/pom.xml
@@ -81,20 +81,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  org.glassfish.jaxb
+  org.apache.tomee.bom
   jaxb-runtime
-  2.3.2
-  
- 
-  jakarta.activation
-  jakarta.activation-api
-
-  
+  8.0.0-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/groovy-spock/pom.xml b/examples/groovy-spock/pom.xml
index cbbc352..31c37a7 100644
--- a/examples/groovy-spock/pom.xml
+++ b/examples/groovy-spock/pom.xml
@@ -90,20 +90,10 @@
   2.4.8
 
 
-  org.apache.geronimo.specs
-  geronimo-jaxb_2.2_spec
-  1.0.1
-
-
-  org.glassfish.jaxb
+  org.apache.tomee.bom
   jaxb-runtime
-  2.3.2
-  
- 
-  jakarta.activation
-  jakarta.activation-api
-
-  
+  8.0.0-SNAPSHOT
+  pom
 
 
   junit
diff --git a/examples/jaxrs-json-provider-jettison/pom.xml 
b/examples/jaxrs-json-provider-jettison/pom.xml
index 

[tomee] 03/03: Merge branch 'master' of github.com:apache/tomee

2019-08-13 Thread dblevins
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 2064c06b713a95d6eb1a532c1659499d7f33365e
Merge: 7f8a0cb 4e00382
Author: David Blevins 
AuthorDate: Tue Aug 13 00:21:19 2019 -0700

Merge branch 'master' of github.com:apache/tomee

 .../designbycontract/PoleVaultingManager.java  | 26 --
 .../designbycontract/PoleVaultingManagerBean.java  |  6 ++---
 .../designbycontract/OlympicGamesTest.java |  2 +-
 3 files changed, 4 insertions(+), 30 deletions(-)



[tomee] branch master updated (4e00382 -> 2064c06)

2019-08-13 Thread dblevins
This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git.


from 4e00382  Merge pull request #537 from cesarhernandezgt/TOMEE-2617
 new 4fff8bb  Rebrand the Maven modules s/OpenEJB/TomEE/
 new 7f8a0cb  Use JAXB 2.3.  Introduce "BOM" concept to reduce redundancy 
of deps & excludes.
 new 2064c06  Merge branch 'master' of github.com:apache/tomee

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 arquillian/arquillian-common/pom.xml   |  2 +-
 arquillian/arquillian-openejb-embedded/pom.xml |  2 +-
 .../pom.xml|  2 +-
 arquillian/arquillian-tck/pom.xml  |  2 +-
 arquillian/arquillian-tomee-common/pom.xml |  2 +-
 arquillian/arquillian-tomee-embedded/pom.xml   |  2 +-
 .../arquillian-tomee-moviefun-example/pom.xml  |  2 +-
 arquillian/arquillian-tomee-remote/pom.xml |  2 +-
 .../arquillian-tomee-codi-tests/pom.xml|  2 +-
 .../arquillian-tomee-config-tests/pom.xml  |  2 +-
 .../arquillian-tomee-jaxrs-tests/pom.xml   |  2 +-
 .../arquillian-tomee-jaxws-tests/pom.xml   |  2 +-
 .../arquillian-tomee-jms-tests/pom.xml |  2 +-
 .../arquillian-tomee-webprofile-tests/pom.xml  |  2 +-
 arquillian/arquillian-tomee-tests/pom.xml  |  2 +-
 arquillian/arquillian-tomee-webapp-remote/pom.xml  |  2 +-
 arquillian/pom.xml |  2 +-
 arquillian/ziplock/pom.xml |  2 +-
 assembly/openejb-lite/pom.xml  |  2 +-
 assembly/openejb-standalone/pom.xml|  2 +-
 assembly/pom.xml   |  2 +-
 .../jaxb-runtime}/pom.xml  | 50 +-
 {assembly => boms}/pom.xml | 16 ---
 container/mbean-annotation-api/pom.xml |  2 +-
 container/openejb-api/pom.xml  |  2 +-
 container/openejb-core/pom.xml |  2 +-
 container/openejb-javaagent/pom.xml|  2 +-
 container/openejb-jee-accessors/pom.xml|  2 +-
 container/openejb-jee/pom.xml  | 23 ++
 container/openejb-jpa-integration/pom.xml  |  2 +-
 container/openejb-junit/pom.xml|  2 +-
 container/openejb-loader/pom.xml   |  2 +-
 container/pom.xml  |  2 +-
 examples/access-timeout-meta/pom.xml   |  2 +-
 examples/access-timeout/pom.xml|  2 +-
 examples/alternate-descriptors/pom.xml |  2 +-
 examples/applet/pom.xml|  2 +-
 examples/application-composer/pom.xml  |  2 +-
 examples/applicationcomposer-jaxws-cdi/pom.xml |  2 +-
 examples/applicationexception/pom.xml  |  2 +-
 examples/arquillian-jpa/pom.xml|  2 +-
 examples/async-methods/pom.xml |  2 +-
 examples/async-postconstruct/pom.xml   |  2 +-
 .../bean-validation-design-by-contract/pom.xml |  2 +-
 examples/cdi-alternative-and-stereotypes/pom.xml   |  2 +-
 examples/cdi-application-scope/pom.xml |  2 +-
 examples/cdi-basic/pom.xml |  2 +-
 examples/cdi-ejbcontext-jaas/pom.xml   |  2 +-
 examples/cdi-events/pom.xml|  2 +-
 examples/cdi-interceptors/pom.xml  |  2 +-
 examples/cdi-produces-disposes/pom.xml |  2 +-
 examples/cdi-produces-field/pom.xml|  2 +-
 examples/cdi-qualifier/pom.xml |  2 +-
 examples/cdi-realm/pom.xml |  2 +-
 examples/cdi-request-scope/pom.xml |  2 +-
 examples/cdi-session-scope/pom.xml |  2 +-
 examples/change-jaxws-url/pom.xml  |  2 +-
 examples/client-resource-lookup-preview/pom.xml|  2 +-
 examples/cloud-tomee-azure/pom.xml |  2 +-
 examples/component-interfaces/pom.xml  |  2 +-
 examples/concurrency-utils/pom.xml |  2 +-
 .../connector-ear/connector-sample-api/pom.xml |  2 +-
 .../connector-ear/connector-sample-ear/pom.xml |  2 +-
 .../connector-sample-functional-tests/pom.xml  |  2 +-
 .../connector-ear/connector-sample-impl/pom.xml|  2 +-
 .../connector-ear/connector-sample-rar/pom.xml |  2 +-
 .../connector-ear/connector-sample-war/pom.xml |  2 +-
 examples/connector-ear/pom.xml |  2 +-
 examples/connector-war/pom.xml |  2 +-
 examples/cucumber-jvm/pom.xml  |  2 +-
 examples/custom-injection/pom.xml   

[jira] [Created] (TOMEE-2628) javax.transaction 1.2 vs 1.3 (JTA)

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2628:


 Summary: javax.transaction 1.2 vs 1.3 (JTA)
 Key: TOMEE-2628
 URL: https://issues.apache.org/jira/browse/TOMEE-2628
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.2

 - [http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-jta_1.2_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.3.

 - 
[https://mvnrepository.com/artifact/jakarta.transaction/jakarta.transaction-api/1.3.2]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2627) javax.xml.ws 2.2 vs 2.3 (JAX-WS)

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2627:


 Summary: javax.xml.ws 2.2 vs 2.3 (JAX-WS)
 Key: TOMEE-2627
 URL: https://issues.apache.org/jira/browse/TOMEE-2627
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 2.2

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-jaxws_2.2_spec/]

The Java EE 8 / Jakarta EE 8 version is 2.3.

 - [https://mvnrepository.com/artifact/jakarta.xml.ws/jakarta.xml.ws-api/2.3.2]

CXF implements this, so we should favor the version it uses.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Updated] (TOMEE-2626) javax.mail 1.5 vs 1.6

2019-08-13 Thread David Blevins (JIRA)


 [ 
https://issues.apache.org/jira/browse/TOMEE-2626?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

David Blevins updated TOMEE-2626:
-
Description: 
Our jar has 1.5

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-javamail_1.5_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.6.

 - [https://mvnrepository.com/artifact/jakarta.mail/jakarta.mail-api/1.6.3]

  was:
Our jar has 1.1

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-javamail_1.5_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.2.

 - [https://mvnrepository.com/artifact/jakarta.mail/jakarta.mail-api/1.6.3]


> javax.mail 1.5 vs 1.6
> -
>
> Key: TOMEE-2626
> URL: https://issues.apache.org/jira/browse/TOMEE-2626
> Project: TomEE
>  Issue Type: Sub-task
>Reporter: David Blevins
>Priority: Major
>
> Our jar has 1.5
>  - 
> [http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-javamail_1.5_spec/]
> The Java EE 8 / Jakarta EE 8 version is 1.6.
>  - [https://mvnrepository.com/artifact/jakarta.mail/jakarta.mail-api/1.6.3]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2626) javax.mail 1.5 vs 1.6

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2626:


 Summary: javax.mail 1.5 vs 1.6
 Key: TOMEE-2626
 URL: https://issues.apache.org/jira/browse/TOMEE-2626
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.1

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-javamail_1.5_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.2.

 - [https://mvnrepository.com/artifact/jakarta.mail/jakarta.mail-api/1.6.3]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2625) javax.security.auth.message 1.0 vs 1.1 (JASPIC)

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2625:


 Summary: javax.security.auth.message 1.0 vs 1.1 (JASPIC)
 Key: TOMEE-2625
 URL: https://issues.apache.org/jira/browse/TOMEE-2625
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.0

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-jaspic_1.0_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.1.

 - 
[https://mvnrepository.com/artifact/jakarta.security.auth.message/jakarta.security.auth.message-api/1.1.2]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2624) javax.security.jacc 1.4 vs 1.6

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2624:


 Summary: javax.security.jacc 1.4 vs 1.6
 Key: TOMEE-2624
 URL: https://issues.apache.org/jira/browse/TOMEE-2624
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.4

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-jacc_1.4_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.6.

 - 
[https://mvnrepository.com/artifact/jakarta.security.jacc/jakarta.security.jacc-api/1.6.1]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2623) javax.resource 1.6 vs 1.7

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2623:


 Summary: javax.resource 1.6 vs 1.7
 Key: TOMEE-2623
 URL: https://issues.apache.org/jira/browse/TOMEE-2623
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.6

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-j2ee-connector_1.6_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.7.

 - 
[https://mvnrepository.com/artifact/jakarta.resource/jakarta.resource-api/1.7.3]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2622) javax.enterprise.concurrent 1.0 vs 1.1

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2622:


 Summary: javax.enterprise.concurrent 1.0 vs 1.1
 Key: TOMEE-2622
 URL: https://issues.apache.org/jira/browse/TOMEE-2622
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.0

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-concurrent_1.0_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.1.

 - 
[https://mvnrepository.com/artifact/jakarta.enterprise.concurrent/jakarta.enterprise.concurrent-api/1.1.1]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2621) javax.activation 1.1 vs 1.2

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2621:


 Summary: javax.activation 1.1 vs 1.2
 Key: TOMEE-2621
 URL: https://issues.apache.org/jira/browse/TOMEE-2621
 Project: TomEE
  Issue Type: Sub-task
Reporter: David Blevins


Our jar has 1.1

 - 
[http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-activation_1.1_spec/]

The Java EE 8 / Jakarta EE 8 version is 1.2.

 - 
[https://mvnrepository.com/artifact/jakarta.activation/jakarta.activation-api/1.2.1]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[jira] [Created] (TOMEE-2620) javaee-api-8.0 jar versions

2019-08-13 Thread David Blevins (JIRA)
David Blevins created TOMEE-2620:


 Summary: javaee-api-8.0 jar versions
 Key: TOMEE-2620
 URL: https://issues.apache.org/jira/browse/TOMEE-2620
 Project: TomEE
  Issue Type: Bug
Reporter: David Blevins


We may not fix these immediately but there are some version differences in our 
javaee-api-8.0. jar and those defined in Java EE 8 / Jakarta EE 8.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)


[tomee-tck] branch master updated: comment the debug dependency

2019-08-13 Thread jlmonteiro
This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/master by this push:
 new e3a7066  comment the debug dependency
e3a7066 is described below

commit e3a7066c78d39f88931737d220828b4549888400
Author: Jean-Louis Monteiro 
AuthorDate: Tue Aug 13 08:11:34 2019 +0200

comment the debug dependency
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c87fba5..702a71d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,14 +114,16 @@
   1.5.10
 
 
+
 
 
   com.sun.javaee.tck