Skip to content

Commit

Permalink
jms code refactor.
Browse files Browse the repository at this point in the history
Signed-off-by: Gurunandan Rao <[email protected]>
  • Loading branch information
gurunrao committed Aug 1, 2023
1 parent 365d073 commit d5f9a1b
Show file tree
Hide file tree
Showing 176 changed files with 118,179 additions and 122,820 deletions.
17 changes: 17 additions & 0 deletions glassfish-runner/jms-tck/j2ee.pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

#
# Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0, which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# This Source Code may also be made available under the following Secondary
# Licenses when the conditions for such availability set forth in the
# Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
# version 2 with the GNU Classpath Exception, which is available at
# https://www.gnu.org/software/classpath/license.html.
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
#
AS_ADMIN_USERPASSWORD=j2ee
16 changes: 16 additions & 0 deletions glassfish-runner/jms-tck/javajoe.pass
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#
# Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0, which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# This Source Code may also be made available under the following Secondary
# Licenses when the conditions for such availability set forth in the
# Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
# version 2 with the GNU Classpath Exception, which is available at
# https://www.gnu.org/software/classpath/license.html.
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
#
AS_ADMIN_USERPASSWORD=javajoe
562 changes: 562 additions & 0 deletions glassfish-runner/jms-tck/pom.xml

Large diffs are not rendered by default.

29 changes: 26 additions & 3 deletions jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,19 @@
<version>10.0.0-SNAPSHOT</version>
</parent>

<artifactId>jms</artifactId>
<artifactId>jms-tck</artifactId>
<packaging>jar</packaging>

<name>JMS</name>
<description>JMS</description>
<description>JMS TCK tests</description>

<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<tck.version>${project.version}</tck.version>
<junit.jupiter.version>5.9.1</junit.jupiter.version>
<arquillian.junit>1.7.0.Alpha14</arquillian.junit>
</properties>

<dependencies>
<dependency>
Expand Down Expand Up @@ -60,7 +68,22 @@
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit5</groupId>
<artifactId>arquillian-junit5-container</artifactId>
<version>${arquillian.junit}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit5</groupId>
<artifactId>arquillian-junit5-core</artifactId>
<version>${arquillian.junit}</version>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit d5f9a1b

Please sign in to comment.