You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2019/06/24 21:56:09 UTC

[tomee] branch master updated (aa0c44a -> 0411888)

This is an automated email from the ASF dual-hosted git repository.

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


    from aa0c44a  Merge pull request #482 from doychin/fix-jwt-itest-for-win32
     new 2af90cf  Flipping to a .war file
     new 4d1bdc3  Added grinder configuration and instructions with basic REST get scenario using WEB-INF/resources.xml for oracle DB
     new 8758fcc  Merge branch 'xa-ds-grinder' of github.com:cesarhernandezgt/tomee into xa-ds-grinder
     new 166373c  Removing OJDBC jar
     new 218170d  Avoid including jars in the repository
     new 8145a57  Added to README Oracle JDBC maven instructions.
     new d08b4e6  Merge branch 'xa-ds-grinder' of github.com:cesarhernandezgt/tomee into xa-ds-grinder
     new 5da21d1  Fix up Grinder harness and test resources
     new b5a5094  deleted repo folder and fixed REAME.md typos.
     new 6c24466  Merge branch 'xa-ds-grinder' of github.com:cesarhernandezgt/tomee into xa-ds-grinder
     new 2888fcd  Remove Oracle JDBC lib from tomee:run
     new 0411888  Merge pull request #488 from jgallimore/xa-ds-grinder

The 12578 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:
 examples/xa-datasource/.gitignore                  |   3 +
 examples/xa-datasource/README.md                   | 114 +++++++
 examples/xa-datasource/grinder.sh                  |  28 ++
 examples/xa-datasource/pom.xml                     | 331 ++++++++++++++++++++-
 examples/xa-datasource/src/assembly/tests.xml      |  32 ++
 .../java/org/superbiz/injection/jpa/Movies.java    |   9 +-
 .../java/org/superbiz/injection/jpa/MoviesXA.java  |   4 -
 .../main/java/org/superbiz/rest/MovieService.java  |  88 ++++++
 .../src/main/resources/META-INF/persistence.xml    |   1 +
 .../src/main/webapp/WEB-INF/resources.xml          |  46 +++
 .../org/superbiz/injection/jpa/MoviesXATest.java   |   1 +
 .../test/java/org/superbiz/perf/DBTestPerf.java    |  56 ++++
 .../xa-datasource/src/test/resources/grinder.py    |  18 ++
 13 files changed, 724 insertions(+), 7 deletions(-)
 create mode 100644 examples/xa-datasource/.gitignore
 create mode 100755 examples/xa-datasource/grinder.sh
 create mode 100644 examples/xa-datasource/src/assembly/tests.xml
 create mode 100644 examples/xa-datasource/src/main/java/org/superbiz/rest/MovieService.java
 create mode 100644 examples/xa-datasource/src/main/webapp/WEB-INF/resources.xml
 create mode 100644 examples/xa-datasource/src/test/java/org/superbiz/perf/DBTestPerf.java
 create mode 100644 examples/xa-datasource/src/test/resources/grinder.py