129 lines
3.8 KiB
XML
129 lines
3.8 KiB
XML
<?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>16</version>
|
|
</parent>
|
|
|
|
<artifactId>plexus-io</artifactId>
|
|
<version>3.4.2</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.4.2</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>
|
|
<slf4jVersion>1.7.36</slf4jVersion>
|
|
<project.build.outputTimestamp>2023-12-23T23:42:28Z</project.build.outputTimestamp>
|
|
</properties>
|
|
|
|
<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.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-xml</artifactId>
|
|
<version>3.0.0</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.15.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>
|
|
<version>0.9.0.M2</version>
|
|
<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>
|