Download jboss-remote-naming-2.0.1.final.jar file

Introduction

You can download jboss-remote-naming-2.0.1.final.jar in this page.

License

Open Source License

Type List

jboss-remote-naming-2.0.1.final.jar file has the following types.

META-INF/INDEX.LIST
META-INF/MANIFEST.MF
META-INF/maven/org.jboss/jboss-remote-naming/pom.properties
META-INF/maven/org.jboss/jboss-remote-naming/pom.xml
org.jboss.naming.remote.Constants.class
org.jboss.naming.remote.client.CacheShutdown.class
org.jboss.naming.remote.client.ClientUtil.class
org.jboss.naming.remote.client.CurrentEjbClientConnection.class
org.jboss.naming.remote.client.EndpointCache.class
org.jboss.naming.remote.client.HaRemoteNamingStore.class
org.jboss.naming.remote.client.InitialContextFactory.class
org.jboss.naming.remote.client.NamingStoreCache.class
org.jboss.naming.remote.client.RemoteContext.class
org.jboss.naming.remote.client.RemoteContextFactory.class
org.jboss.naming.remote.client.RemoteNamingStore.class
org.jboss.naming.remote.client.RemoteNamingStoreConnectionInfo.class
org.jboss.naming.remote.client.SecurityActions.class
org.jboss.naming.remote.client.ejb.EJBClientHandler.class
org.jboss.naming.remote.client.ejb.RemoteNamingEjbClientContextSelector.class
org.jboss.naming.remote.client.ejb.RemoteNamingStoreEJBClientHandler.class
org.jboss.naming.remote.protocol.CancellableDataOutputStream.class
org.jboss.naming.remote.protocol.IoFutureHelper.class
org.jboss.naming.remote.protocol.NamingIOException.class
org.jboss.naming.remote.protocol.ProtocolCommand.class
org.jboss.naming.remote.protocol.Versions.class
org.jboss.naming.remote.protocol.v1.BaseProtocolCommand.class
org.jboss.naming.remote.protocol.v1.Constants.class
org.jboss.naming.remote.protocol.v1.Protocol.class
org.jboss.naming.remote.protocol.v1.ProtocolIoFuture.class
org.jboss.naming.remote.protocol.v1.ReadUtil.class
org.jboss.naming.remote.protocol.v1.RemoteNamingServerV1.class
org.jboss.naming.remote.protocol.v1.RemoteNamingStoreV1.class
org.jboss.naming.remote.protocol.v1.VersionOne.class
org.jboss.naming.remote.protocol.v1.WriteUtil.class
org.jboss.naming.remote.server.DefaultRemoteNamingServerLogger.class
org.jboss.naming.remote.server.RemoteNamingServer.class
org.jboss.naming.remote.server.RemoteNamingServerLogger.class
org.jboss.naming.remote.server.RemoteNamingService.class

Pom

jboss-remote-naming-2.0.1.final.pom file content.

<?xml version="1.0" encoding="UTF-8"?>

<!--
  ~ JBoss, Home of Professional Open Source.
  ~ Copyright 2010, Red Hat, Inc., and individual contributors
  ~ as indicated by the @author tags. See the copyright.txt file in the
  ~ distribution for a full listing of individual contributors.
  ~
  ~ This is free software; you can redistribute it and/or modify it
  ~ under the terms of the GNU Lesser General Public License as
  ~ published by the Free Software Foundation; either version 2.1 of
  ~ the License, or (at your option) any later version.
  ~
  ~ This software is distributed in the hope that it will be useful,
  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  ~ Lesser General Public License for more details.
  ~
  ~ You should have received a copy of the GNU Lesser General Public
  ~ License along with this software; if not, write to the Free
  ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  -->

<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.jboss</groupId>
        <artifactId>jboss-parent</artifactId>
        <version>12</version>
    </parent>

    <artifactId>jboss-remote-naming</artifactId>
    <version>2.0.1.Final</version>

    <name>JBoss Remote Naming</name>
    <description>Library for remote naming (JNDI) with JBoss AS</description>

    <properties>
        <version.org.jboss.logging.jboss-logging>3.1.4.GA</version.org.jboss.logging.jboss-logging>
        <version.org.jboss.logging.jboss-logging-processor>1.1.0.Final</version.org.jboss.logging.jboss-logging-processor>
        <version.org.jboss.ejb-client>2.0.0.Final</version.org.jboss.ejb-client>
        <version.org.jboss.ejb-spec>1.0.2.Final</version.org.jboss.ejb-spec>
        <version.org.jboss.logmanager>1.5.2.Final</version.org.jboss.logmanager>
        <version.org.jboss.marshalling>1.4.3.Final</version.org.jboss.marshalling>
        <version.org.jboss.remoting>4.0.0.Final</version.org.jboss.remoting>
        <version.org.jboss.sasl>1.0.4.Final</version.org.jboss.sasl>
        <version.org.jboss.transaction-spec>1.0.1.Final</version.org.jboss.transaction-spec>
        <version.org.jboss.xnio>3.2.0.Final</version.org.jboss.xnio>

        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
                    <systemProperties>
                        <property>
                            <name>java.util.logging.manager</name>
                            <value>org.jboss.logmanager.LogManager</value>
                        </property>
                    </systemProperties>
                    <forkMode>always</forkMode>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.jboss</groupId>
            <artifactId>jboss-ejb-client</artifactId>
            <version>${version.org.jboss.ejb-client}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.jboss.remoting3</groupId>
                    <artifactId>jboss-remoting</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>org.jboss.marshalling</groupId>
            <artifactId>jboss-marshalling</artifactId>
            <version>${version.org.jboss.marshalling}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.marshalling</groupId>
            <artifactId>jboss-marshalling-river</artifactId>
            <version>${version.org.jboss.marshalling}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.xnio</groupId>
            <artifactId>xnio-api</artifactId>
            <version>${version.org.jboss.xnio}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.xnio</groupId>
            <artifactId>xnio-nio</artifactId>
            <version>${version.org.jboss.xnio}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.jboss.remoting</groupId>
            <artifactId>jboss-remoting</artifactId>
            <version>${version.org.jboss.remoting}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.sasl</groupId>
            <artifactId>jboss-sasl</artifactId>
            <version>${version.org.jboss.sasl}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging</artifactId>
            <version>${version.org.jboss.logging.jboss-logging}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging-processor</artifactId>
            <version>${version.org.jboss.logging.jboss-logging-processor}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.jboss.logmanager</groupId>
            <artifactId>jboss-logmanager</artifactId>
            <version>${version.org.jboss.logmanager}</version>
            <scope>test</scope>
        </dependency>

        <!-- JUnit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.2</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.jboss.spec.javax.ejb</groupId>
            <artifactId>jboss-ejb-api_3.1_spec</artifactId>
            <version>${version.org.jboss.ejb-spec}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.spec.javax.transaction</groupId>
            <artifactId>jboss-transaction-api_1.1_spec</artifactId>
            <version>${version.org.jboss.transaction-spec}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.jboss</groupId>
   <artifactId>jboss-remote-naming</artifactId>
   <version>2.0.1.final</version>
</dependency>

Download

If you think the following jboss-remote-naming-2.0.1.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jboss-remote-naming-2.0.1.final.jar file




PreviousNext

Related