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 6764af9efd6fa71356951f6e736e9a6d292cd66d Author: David Blevins <[email protected]> AuthorDate: Sun Feb 20 20:31:49 2022 -0500 Fix TomEE version and add tomee-jms-portability example --- examples/pom.xml | 1 + examples/tomee-jms-portability/pom.xml | 22 +++------------------- 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/examples/pom.xml b/examples/pom.xml index 93b8e42..4119135 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -189,6 +189,7 @@ <module>testing-transactions</module> <module>testing-transactions-bmt</module> <module>tomee-jersey-eclipselink</module> + <module>tomee-jms-portability</module> <module>transaction-rollback</module> <module>troubleshooting</module> <module>webservice-attachments</module> diff --git a/examples/tomee-jms-portability/pom.xml b/examples/tomee-jms-portability/pom.xml index 94004ac..a4ab54a 100644 --- a/examples/tomee-jms-portability/pom.xml +++ b/examples/tomee-jms-portability/pom.xml @@ -34,8 +34,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> <plugin> @@ -67,7 +67,7 @@ <dependency> <groupId>org.apache.tomee</groupId> <artifactId>javaee-api</artifactId> - <version>7.0-1</version> + <version>8.0-1</version> <scope>provided</scope> </dependency> <dependency> @@ -86,22 +86,6 @@ <artifactId>janino</artifactId> <version>2.7.8</version> </dependency> - <dependency> - <groupId>org.apache.tomee</groupId> - <artifactId>javaee-api</artifactId> - <version>[8.0,)</version> - <scope>provided</scope> - </dependency> - <!-- - The <scope>test</scope> guarantees that non of your runtime - code is dependent on any OpenEJB classes. - --> - <!-- <dependency> - <groupId>org.apache.tomee</groupId> - <artifactId>openejb-core</artifactId> - <version>7.0.2</version> - <scope>provided</scope> - </dependency> --> </dependencies> <!-- This section allows you to configure where to publish libraries for sharing.
