Download wildfly-common-1.2.0.beta1.jar file

Introduction

You can download wildfly-common-1.2.0.beta1.jar in this page.

License

Open Source License

Type List

wildfly-common-1.2.0.beta1.jar file has the following types.

META-INF/INDEX.LIST
META-INF/MANIFEST.MF
META-INF/maven/org.wildfly.common/wildfly-common/pom.properties
META-INF/maven/org.wildfly.common/wildfly-common/pom.xml
org.wildfly.common.Assert.class
org.wildfly.common.Factory.class
org.wildfly.common.HostName.class
org.wildfly.common._private.CommonMessages.class
org.wildfly.common.context.ContextManager.class
org.wildfly.common.context.ContextPermission.class
org.wildfly.common.context.ContextPermissionCollection.class
org.wildfly.common.context.Contextual.class
org.wildfly.common.cpu.CacheInfo.class
org.wildfly.common.cpu.CacheLevelInfo.class
org.wildfly.common.cpu.CacheType.class
org.wildfly.common.cpu.ProcessorInfo.class
org.wildfly.common.function.ExceptionBiConsumer.class
org.wildfly.common.function.ExceptionBiFunction.class
org.wildfly.common.function.ExceptionBiPredicate.class
org.wildfly.common.function.ExceptionBinaryOperator.class
org.wildfly.common.function.ExceptionConsumer.class
org.wildfly.common.function.ExceptionFunction.class
org.wildfly.common.function.ExceptionIntFunction.class
org.wildfly.common.function.ExceptionLongFunction.class
org.wildfly.common.function.ExceptionObjIntConsumer.class
org.wildfly.common.function.ExceptionObjLongConsumer.class
org.wildfly.common.function.ExceptionPredicate.class
org.wildfly.common.function.ExceptionSupplier.class
org.wildfly.common.function.ExceptionToIntBiFunction.class
org.wildfly.common.function.ExceptionToIntFunction.class
org.wildfly.common.function.ExceptionToLongBiFunction.class
org.wildfly.common.function.ExceptionToLongFunction.class
org.wildfly.common.function.ExceptionUnaryOperator.class
org.wildfly.common.ref.CleanerReference.class
org.wildfly.common.ref.Log.class
org.wildfly.common.ref.PhantomReference.class
org.wildfly.common.ref.Reapable.class
org.wildfly.common.ref.Reaper.class
org.wildfly.common.ref.Reference.class
org.wildfly.common.ref.References.class
org.wildfly.common.ref.SoftReference.class
org.wildfly.common.ref.StrongReference.class
org.wildfly.common.ref.WeakReference.class
org.wildfly.common.selector.ContextClassLoaderSelector.class
org.wildfly.common.selector.DefaultSelector.class
org.wildfly.common.selector.GlobalSelector.class
org.wildfly.common.selector.Selector.class
org.wildfly.common.selector.SelectorPermission.class
org.wildfly.common.selector.ThreadLocalSelector.class
org/wildfly/common/_private/CommonMessages.i18n.properties
org/wildfly/common/ref/Log.i18n.properties

Pom

wildfly-common-1.2.0.beta1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ JBoss, Home of Professional Open Source.
  ~ Copyright 2014 Red Hat, Inc., and individual contributors
  ~ as indicated by the @author tags.
  ~
  ~ Licensed 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/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>org.wildfly.common</groupId>
    <artifactId>wildfly-common</artifactId>
    <version>1.2.0.Beta1</version>

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

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

    <dependencies>
        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging-annotations</artifactId>
            <version>1.2.0.Final</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging-processor</artifactId>
            <version>1.2.0.Final</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.logging</groupId>
            <artifactId>jboss-logging</artifactId>
            <version>3.1.4.GA</version>
        </dependency>
        <dependency>
            <groupId>com.intellij</groupId>
            <artifactId>annotations</artifactId>
            <version>9.0.4</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <detectJavaApiLink>false</detectJavaApiLink>
                    <detectLinks>false</detectLinks>
                    <doclet>net.gleamynode.apiviz.APIviz</doclet>
                    <docletArtifact>
                        <groupId>org.jboss.apiviz</groupId>
                        <artifactId>apiviz</artifactId>
                        <version>1.3.2.GA</version>
                    </docletArtifact>
                    <doctitle><![CDATA[WildFly Common ]]>${project.version}</doctitle>
                    <header><![CDATA[WildFly Common ]]>${project.version}</header>
                    <footer><![CDATA[WildFly Common  ]]>${project.version}</footer>
                    <bottom><![CDATA[<i>Copyright &#169; 2015 JBoss, a division of Red Hat, Inc.</i>]]></bottom>
                    <links>
                        <link>http://java.sun.com/javase/7/docs/api/</link>
                    </links>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.wildfly.common</groupId>
   <artifactId>wildfly-common</artifactId>
   <version>1.2.0.beta1</version>
</dependency>

Download

If you think the following wildfly-common-1.2.0.beta1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download wildfly-common-1.2.0.beta1.jar file




PreviousNext

Related