jboss-msc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.msc</groupId> <artifactId>jboss-msc</artifactId> <version>1.5.6.Final</version> </dependency>
<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2022, 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>47</version> </parent> <groupId>org.jboss.msc</groupId> <artifactId>jboss-msc</artifactId> <version>1.5.6.Final</version> <name>JBoss Modular Service Container</name> <licenses> <license> <name>GNU Lesser General Public License v2.1 only</name> <url>http://repository.jboss.org/licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <!-- Compilation Settings --> <jdk.min.version>11</jdk.min.version> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <version.org.jacoco>0.8.12</version.org.jacoco> <!-- Dependency Settings --> <version.jboss-logging>3.6.1.Final</version.jboss-logging> <version.jboss-logging-processor>3.0.3.Final</version.jboss-logging-processor> <version.jboss-logmanager>3.1.0.Final</version.jboss-logmanager> <version.jboss-threads>3.6.1.Final</version.jboss-threads> <version.junit>4.13.2</version.junit> </properties> <dependencies> <!-- Provided Dependencies --> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>${version.jboss-logging}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <version>${version.jboss-logging-processor}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.threads</groupId> <artifactId>jboss-threads</artifactId> <version>${version.jboss-threads}</version> <scope>provided</scope> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <version>${version.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> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-AloggingVersion=3.0</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*TestCase.java</include> </includes> <systemProperties> <property> <name>test.log.output</name> <value>${project.build.directory}/surefire-reports</value> </property> <property> <name>java.util.logging.manager</name> <value>org.jboss.logmanager.LogManager</value> </property> </systemProperties> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <docfilessubdirs>true</docfilessubdirs> <detectJavaApiLink>false</detectJavaApiLink> <detectLinks>false</detectLinks> <doctitle><![CDATA[JBoss Modular Service Container ]]>${project.version}</doctitle> <header><![CDATA[JBoss Modular Service Container ]]>${project.version}</header> <footer><![CDATA[JBoss Modular Service Container ]]>${project.version}</footer> <bottom><![CDATA[<i>Copyright © 2024 Red Hat, Inc.</i>]]></bottom> <links> <link>https://docs.oracle.com/javase/11/docs/api/</link> </links> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.jboss.msc</Automatic-Module-Name> <Jar-Version>${project.version}</Jar-Version> <Jar-Name>${project.artifactId}</Jar-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${version.org.jacoco}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>generate-code-coverage-report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>