Download joram-jms-tests-1.0.jar file

Introduction

You can download joram-jms-tests-1.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

joram-jms-tests-1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.fusesource.joram-jms-tests/joram-jms-tests/pom.properties
META-INF/maven/org.fusesource.joram-jms-tests/joram-jms-tests/pom.xml
org.objectweb.jtests.jms.admin.Admin.class
org.objectweb.jtests.jms.admin.AdminFactory.class
org.objectweb.jtests.jms.conform.connection.ConnectionTest.class
org.objectweb.jtests.jms.conform.connection.TopicConnectionTest.class
org.objectweb.jtests.jms.conform.message.MessageBodyTest.class
org.objectweb.jtests.jms.conform.message.MessageDefaultTest.class
org.objectweb.jtests.jms.conform.message.MessageTypeTest.class
org.objectweb.jtests.jms.conform.message.headers.MessageHeaderTest.class
org.objectweb.jtests.jms.conform.message.properties.JMSXPropertyTest.class
org.objectweb.jtests.jms.conform.message.properties.MessagePropertyConversionTest.class
org.objectweb.jtests.jms.conform.message.properties.MessagePropertyTest.class
org.objectweb.jtests.jms.conform.queue.QueueBrowserTest.class
org.objectweb.jtests.jms.conform.queue.TemporaryQueueTest.class
org.objectweb.jtests.jms.conform.selector.SelectorSyntaxTest.class
org.objectweb.jtests.jms.conform.selector.SelectorTest.class
org.objectweb.jtests.jms.conform.session.QueueSessionTest.class
org.objectweb.jtests.jms.conform.session.SessionTest.class
org.objectweb.jtests.jms.conform.session.TopicSessionTest.class
org.objectweb.jtests.jms.conform.session.UnifiedSessionTest.class
org.objectweb.jtests.jms.conform.topic.TemporaryTopicTest.class
org.objectweb.jtests.jms.framework.JMSTestCase.class
org.objectweb.jtests.jms.framework.PTPTestCase.class
org.objectweb.jtests.jms.framework.PubSubTestCase.class
org.objectweb.jtests.jms.framework.TestConfig.class
org.objectweb.jtests.jms.framework.UnifiedTestCase.class

Pom

joram-jms-tests-1.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<project xmlns="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">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.fusesource</groupId>
    <artifactId>fusesource-pom</artifactId>
    <version>1.9</version>
  </parent>

  <groupId>org.fusesource.joram-jms-tests</groupId>
  <artifactId>joram-jms-tests</artifactId>
  <version>1.0</version>

  <name>${project.artifactId}</name>
  <description>Maven artifact of the Joram JMS tests</description>

  <properties>

    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <forge-project-id>joram-jms-tests</forge-project-id>
    <release-altGitURL>scm:git:ssh://git@github.com:fusesource/joram-jms-tests.git</release-altGitURL>
    
  </properties>

  <url>http://github.com/fusesource/${forge-project-id}</url>
  <inceptionYear>2012</inceptionYear>
  
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  
  <scm>
    <connection>scm:git:git://github.com:fusesource/${forge-project-id}.git</connection>
    <developerConnection>scm:git:ssh://git@github.com:fusesource/joram-jms-tests.git</developerConnection>
    <url>http://github.com/fusesource/${forge-project-id}/tree/master</url>
  </scm>

  <distributionManagement>
    <site>
      <id>website.fusesource.org</id>
      <name>website</name>
      <url>dav:http://fusesource.com/forge/dav/${forge-project-id}/versions/${project.version}/maven</url>
    </site>
  </distributionManagement>
  
  <developers>
    <developer>
      <id>chirino</id>
      <name>Hiram Chirino</name>
      <email>hiram@hiramchirino.com</email>
      <url>http://hiramchirino.com</url>
      <timezone>GMT-5</timezone>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-jms_1.1_spec</artifactId>
      <version>1.1.1</version>
      <scope>provided</scope> <!-- we don't want to force specific JMS interface jar version -->
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.7</version> <!-- we don't want to force specific junit jar version -->
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>
  </build>

      
</project>

POM Entry

<dependency>
   <groupId>org.fusesource.joram-jms-tests</groupId>
   <artifactId>joram-jms-tests</artifactId>
   <version>1.0</version>
</dependency>

Download

If you think the following joram-jms-tests-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download joram-jms-tests-1.0.jar file




PreviousNext

Related