plexus-classworlds
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-classworlds</artifactId> <version>2.9.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ ~ Copyright 2001-2006 The Codehaus Foundation. ~ ~ 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.codehaus.plexus</groupId> <artifactId>plexus</artifactId> <version>20</version> </parent> <artifactId>plexus-classworlds</artifactId> <version>2.9.0</version> <packaging>bundle</packaging> <name>Plexus Classworlds</name> <description>A class loader framework</description> <url>https://codehaus-plexus.github.io/plexus-classworlds/</url> <inceptionYear>2002</inceptionYear> <scm> <connection>scm:git:git@github.com:codehaus-plexus/plexus-classworlds.git</connection> <developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-classworlds.git</developerConnection> <tag>plexus-classworlds-2.9.0</tag> <url>https://github.com/codehaus-plexus/plexus-classworlds/tree/${project.scm.tag}/</url> </scm> <issueManagement> <system>github</system> <url>https://github.com/codehaus-plexus/plexus-classworlds/issues</url> </issueManagement> <distributionManagement> <site> <id>github:gh-pages</id> <url>${project.scm.developerConnection}</url> </site> </distributionManagement> <properties> <project.build.outputTimestamp>2025-04-05T16:28:52Z</project.build.outputTimestamp> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <encoding>utf-8</encoding> <attach>true</attach> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <configuration> <content>${project.reporting.outputDirectory}</content> <!-- mono-module doesn't require site:stage --> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> <executions> <execution> <id>scm-publish</id> <!-- deploy site with maven-scm-publish-plugin --> <goals> <goal>publish-scm</goal> </goals> <phase>site-deploy</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.9</version> <extensions>true</extensions> <configuration> <instructions> <_nouses>true</_nouses> <Export-Package>org.codehaus.classworlds.*;org.codehaus.plexus.classworlds.*</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.codehaus.plexus.classworlds.launcher.Launcher</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <argLine>-ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds</argLine> <forkCount>1</forkCount> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <excludes> <exclude>org/codehaus/plexus/classworlds/event/*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>copy</goal> </goals> <phase>generate-test-resources</phase> <configuration> <artifactItems> <artifactItem> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.14</version> </artifactItem> <artifactItem> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.23.1</version> </artifactItem> <artifactItem> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>4.0.2</version> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/test-lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <reportSets> <reportSet> <reports> <report>summary</report> <report>index</report> <report>dependencies</report> <report>issue-management</report> <report>scm</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </reporting> </project>