jboss-dmr
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss</groupId> <artifactId>jboss-dmr</artifactId> <version>1.7.0.Final</version> </dependency>
<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2023 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> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>25</version> </parent> <groupId>org.jboss</groupId> <artifactId>jboss-dmr</artifactId> <version>1.7.0.Final</version> <name>JBoss Dynamic Model Representation</name> <licenses> <license> <name>Apache License 2.0</name> <url>http://repository.jboss.org/licenses/apache-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:jbossas/jboss-dmr.git</connection> <developerConnection>scm:git:git@github.com:jbossas/jboss-dmr.git</developerConnection> <url>https://github.com/jbossas/jboss-dmr</url> <tag>1.7.0.Final</tag> </scm> <properties> <version.org.wildfly.checkstyle-config>1.0.6.Final</version.org.wildfly.checkstyle-config> <version.surefire.plugin>2.19.1</version.surefire.plugin> <module.name>org.jboss.dmr</module.name> <version.org.jboss.logging.jboss-logging>3.4.2.Final</version.org.jboss.logging.jboss-logging> <version.org.jboss.logging.jboss-logging-tools>2.2.1.Final</version.org.jboss.logging.jboss-logging-tools> <version.org.jboss.logmanager.jboss-logmanager>2.0.9.Final</version.org.jboss.logmanager.jboss-logmanager> <version.junit>4.13.1</version.junit> </properties> <dependencies> <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-annotations</artifactId> <version>${version.org.jboss.logging.jboss-logging-tools}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <!-- This is a compile-time dependency of this project, but is not needed at compile or runtime by other projects that depend on this project. --> <scope>provided</scope> <optional>true</optional> <version>${version.org.jboss.logging.jboss-logging-tools}</version> </dependency> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <version>${version.org.jboss.logmanager.jboss-logmanager}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${version.checkstyle.plugin}</version> <configuration> <configLocation>wildfly-checkstyle/checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <includeTestSourceDirectory>true</includeTestSourceDirectory> <excludes>**/*$logger.java,**/*$bundle.java,**/dmr/Parser.java,**/dmr/JSONParser.java</excludes> <useFile /> </configuration> <dependencies> <dependency> <groupId>org.wildfly.checkstyle</groupId> <artifactId>wildfly-checkstyle-config</artifactId> <version>${version.org.wildfly.checkstyle-config}</version> </dependency> </dependencies> <executions> <execution> <id>check-style</id> <phase>compile</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${version.surefire.plugin}</version> <configuration> <argLine>-Dfile.encoding=UTF-8</argLine> <environmentVariables> <TEST_ENVIRONMENT_VARIABLE>Hello world</TEST_ENVIRONMENT_VARIABLE> <lower_case_environment_variable>Hola mundo</lower_case_environment_variable> </environmentVariables> <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 © 2013 JBoss, a division of Red Hat, Inc.</i>]]></bottom> <links> <link>http://java.sun.com/javase/8/docs/api/</link> </links> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>${module.name}</Automatic-Module-Name> </manifestEntries> </archive> </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>