modxstream
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.pnambic.modxstream</groupId>
<artifactId>modxstream</artifactId>
<version>0.0.2</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.pnambic.modxstream</groupId>
<artifactId>modxstream</artifactId>
<version>0.0.2</version>
<packaging>jar</packaging>
<name>modxstream</name>
<description>Java module for XStream integration.</description>
<url>https://github.com/pnambic/modxstream</url>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<developers>
<developer>
<id>leeca</id>
<name>Lee Carver</name>
<email>leeca@pnambic.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/pnambic/modxstream.git</connection>
<developerConnection>scm:git:ssh://github.com:pnambic/modxstream.git</developerConnection>
<url>https://github.com/pnambic/modxstream</url>
</scm>
<properties>
<maven.compiler.release>21</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<xstream.version>1.4.21</xstream.version><!-- Feb-2025 -->
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version><!-- Feb-2025 -->
<maven-source-plugin.version>3.3.1</maven-source-plugin.version><!-- Feb-2025 -->
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version><!-- Feb-2025 -->
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version><!-- Feb-2025 -->
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version><!-- Feb-2025 -->
<central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version><!-- Feb-2025 -->
</properties>
<dependencies>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>pnambic.modxstream</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</project>