jax-maven-plugin-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmoten</groupId> <artifactId>jax-maven-plugin-parent</artifactId> <version>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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.davidmoten</groupId> <artifactId>sonatype-parent</artifactId> <version>0.1</version> </parent> <artifactId>jax-maven-plugin-parent</artifactId> <version>0.2</version> <name>${project.artifactId}</name> <packaging>pom</packaging> <url>http://github.com/davidmoten/jax-maven-plugin</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.target>1.8</maven.compiler.target> <compiler.plugin.version>3.8.1</compiler.plugin.version> <jakarta.xml.ws-api.version>3.0.1</jakarta.xml.ws-api.version> <jaxws.tools.version>3.0.2</jaxws.tools.version> <jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version> <jaxb.runtime.version>3.0.2</jaxb.runtime.version> <junit.version>4.13.2</junit.version> <scm.url>scm:git:https://github.com/davidmoten/jax-maven-plugin.git</scm.url> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/davidmoten/jax-maven-plugin</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/davidmoten/jax-maven-plugin/issues</url> </issueManagement> <inceptionYear>2019</inceptionYear> <developers> <developer> <id>dave</id> <name>Dave Moten</name> <url>https://github.com/davidmoten/</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+10</timezone> </developer> </developers> <scm> <connection>${scm.url}</connection> <developerConnection>${scm.url}</developerConnection> <url>${scm.url}</url> <tag>0.2</tag> </scm> <modules> <module>jax-maven-plugin-core</module> <module>jax-maven-plugin</module> <module>jax-maven-plugin-test-jaxb</module> <module>jax-maven-plugin-test</module> </modules> </project>