zmux-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.zmuxio</groupId>
<artifactId>zmux-parent</artifactId>
<version>1.0.4</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>io.github.zmuxio</groupId>
<artifactId>zmux-parent</artifactId>
<version>1.0.4</version>
<packaging>pom</packaging>
<name>zmux parent</name>
<description>Parent build for the ZMux Java modules.</description>
<url>https://github.com/zmuxio/zmux-java</url>
<organization>
<name>zmuxio</name>
<url>https://github.com/zmuxio</url>
</organization>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>zmuxio</id>
<name>ZMux maintainers</name>
<organization>zmuxio</organization>
<organizationUrl>https://github.com/zmuxio</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/zmuxio/zmux-java.git</connection>
<developerConnection>scm:git:https://github.com/zmuxio/zmux-java.git</developerConnection>
<url>https://github.com/zmuxio/zmux-java</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/zmuxio/zmux-java/issues</url>
</issueManagement>
<modules>
<module>zmux</module>
<module>zmux-netty-quic</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>${java.specification.version}</maven.compiler.source>
<maven.compiler.target>${java.specification.version}</maven.compiler.target>
<maven.compiler.testSource>${java.specification.version}</maven.compiler.testSource>
<maven.compiler.testTarget>${java.specification.version}</maven.compiler.testTarget>
<zmux.compat.java.release>8</zmux.compat.java.release>
<junit.version>5.14.4</junit.version>
<maven.surefire.version>3.5.5</maven.surefire.version>
<maven.deploy.version>3.1.4</maven.deploy.version>
<maven.source.version>3.4.0</maven.source.version>
<maven.javadoc.version>3.12.0</maven.javadoc.version>
<jmh.version>1.37</jmh.version>
<bouncycastle.version>1.84</bouncycastle.version>
<surefire.forkCount>1</surefire.forkCount>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<!-- Fork javac to avoid stale incremental outputs on Windows. -->
<useIncrementalCompilation>false</useIncrementalCompilation>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
<configuration>
<!-- Use the fork system classloader so worker threads resolve helpers reliably. -->
<argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
<forkCount>${surefire.forkCount}</forkCount>
<reuseForks>true</reuseForks>
<useSystemClassLoader>true</useSystemClassLoader>
<useManifestOnlyJar>false</useManifestOnlyJar>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.6.4</version>
<configuration>
<excludeFilterFile>${maven.multiModuleProjectDirectory}/config/spotbugs-exclude.xml
</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>benchmarks</id>
<modules>
<module>zmux-benchmarks</module>
</modules>
</profile>
<profile>
<id>java8-compat</id>
<properties>
<maven.compiler.release>${zmux.compat.java.release}</maven.compiler.release>
<maven.compiler.testRelease>${zmux.compat.java.release}</maven.compiler.testRelease>
</properties>
</profile>
<profile>
<id>release</id>
<properties>
<maven.compiler.release>${zmux.compat.java.release}</maven.compiler.release>
<maven.compiler.testRelease>${zmux.compat.java.release}</maven.compiler.testRelease>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.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.version}</version>
<configuration>
<quiet>true</quiet>
<failOnError>true</failOnError>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.version}</version>
<configuration>
<altDeploymentRepository>
local::file:${maven.multiModuleProjectDirectory}/target/staging-deploy
</altDeploymentRepository>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>