plexus-io
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-io</artifactId> <version>3.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>18</version> </parent> <artifactId>plexus-io</artifactId> <version>3.5.0</version> <name>Plexus IO Components</name> <scm> <connection>scm:git:git@github.com:codehaus-plexus/plexus-io.git</connection> <developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-io.git</developerConnection> <tag>plexus-io-3.5.0</tag> <url>http://github.com/codehaus-plexus/plexus-io</url> </scm> <issueManagement> <system>jira</system> <url>https://github.com/codehaus-plexus/plexus-io/issues</url> </issueManagement> <distributionManagement> <site> <id>github:gh-pages</id> <url>${project.scm.developerConnection}</url> </site> </distributionManagement> <properties> <eclipseSisuVersion>0.9.0.M3</eclipseSisuVersion> <slf4jVersion>1.7.36</slf4jVersion> <project.build.outputTimestamp>2024-07-04T12:25:59Z</project.build.outputTimestamp> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.inject</artifactId> <version>${eclipseSisuVersion}</version> </dependency> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> <version>${eclipseSisuVersion}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- JSR330 --> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>4.0.1</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-xml</artifactId> <version>3.0.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.16.1</version> </dependency> <!-- Tests --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-testing</artifactId> <version>1.3.0</version> <scope>test</scope> </dependency> <!-- Sisu and dependencies --> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.inject</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>6.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> </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> <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> </plugins> </build> </project>