Download jboss-dmr-1.3.0.final.jar file

Introduction

You can download jboss-dmr-1.3.0.final.jar in this page.

License

Open Source License

Type List

jboss-dmr-1.3.0.final.jar file has the following types.

META-INF/INDEX.LIST
META-INF/MANIFEST.MF
META-INF/maven/org.jboss/jboss-dmr/pom.properties
META-INF/maven/org.jboss/jboss-dmr/pom.xml
org.jboss.dmr.Base64.class
org.jboss.dmr.BigDecimalModelValue.class
org.jboss.dmr.BigIntegerModelValue.class
org.jboss.dmr.BooleanModelValue.class
org.jboss.dmr.BytesModelValue.class
org.jboss.dmr.DoubleModelValue.class
org.jboss.dmr.ExpressionValue.class
org.jboss.dmr.IntModelValue.class
org.jboss.dmr.JSONParser.class
org.jboss.dmr.JSONParserImpl.class
org.jboss.dmr.ListModelValue.class
org.jboss.dmr.LongModelValue.class
org.jboss.dmr.ModelNode.class
org.jboss.dmr.ModelNodeParser.class
org.jboss.dmr.ModelType.class
org.jboss.dmr.ModelValue.class
org.jboss.dmr.ObjectModelValue.class
org.jboss.dmr.Parser.class
org.jboss.dmr.Property.class
org.jboss.dmr.PropertyModelValue.class
org.jboss.dmr.StringModelValue.class
org.jboss.dmr.TypeModelValue.class
org.jboss.dmr.Validation.class
org.jboss.dmr.ValueExpression.class
org.jboss.dmr.ValueExpressionResolver.class

Pom

jboss-dmr-1.3.0.final.pom file content.

<!--
  ~ JBoss, Home of Professional Open Source.
  ~ Copyright 2015, 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>11</version>
    </parent>

    <groupId>org.jboss</groupId>
    <artifactId>jboss-dmr</artifactId>
    <version>1.3.0.Final</version>
    <name>JBoss Dynamic Model Representation</name>

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

    <dependencies>
        <dependency>
            <groupId>org.jboss.logmanager</groupId>
            <artifactId>jboss-logmanager</artifactId>
            <version>1.4.3.Final</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.cookcc</groupId>
            <artifactId>cookcc</artifactId>
            <version>0.3.3</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>${version.antrun.plugin}</version>
                <executions>
                    <execution>
                        <id>make-the-stupid-directory</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks>
                                <mkdir dir="${project.basedir}/target/generated-sources/apt"/>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>apt-maven-plugin</artifactId>
                <version>${version.apt.plugin}</version>
                <configuration>
                    <additionalSourceRoots>
                        <additionalSourceRoot>${project.basedir}/src/placeholder/java</additionalSourceRoot>
                    </additionalSourceRoots>
                    <encoding>UTF-8</encoding>
                    <options>
                        <option>d=${project.basedir}/target/generated-sources/apt</option>
                    </options>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>process</goal>
                            <goal>test-process</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${version.surefire.plugin}</version>
                <configuration>
                    <argLine>-Dfile.encoding=UTF-8</argLine>
                    <systemProperties>
                        <property>
                            <name>java.util.logging.manager</name>
                            <value>org.jboss.logmanager.LogManager</value>
                        </property>
                    </systemProperties>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>${version.javadoc.plugin}</version>
                <configuration>
                    <docfilessubdirs>true</docfilessubdirs>
                    <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[JBoss Dynamic Model Representation API ]]>${project.version}</doctitle>
                    <header><![CDATA[JBoss Dynamic Model Representation API ]]>${project.version}</header>
                    <footer><![CDATA[JBoss Dynamic Model Representation API ]]>${project.version}</footer>
                    <bottom><![CDATA[<i>Copyright &#169; 2013 JBoss, a division of Red Hat, Inc.</i>]]></bottom>
                    <links>
                        <link>http://java.sun.com/javase/6/docs/api/</link>
                    </links>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>thirdparty-uploads</id>
            <name>JBoss Thirdparty Uploads</name>
            <url>https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads</url>
        </repository>
    </repositories>
</project>

POM Entry

<dependency>
   <groupId>org.jboss</groupId>
   <artifactId>jboss-dmr</artifactId>
   <version>1.3.0.final</version>
</dependency>

Download

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



Download jboss-dmr-1.3.0.final.jar file




PreviousNext

Related