maven-jaxb2-plugin-samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin-samples</artifactId> <version>0.7.4</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin-samples</artifactId> <packaging>pom</packaging> <name>Maven JAXB 2.X Plugin Samples</name> <parent> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin-project</artifactId> <version>0.7.4</version> <relativePath>../pom.xml</relativePath> </parent> <modules> <module>catalog</module> <module>dtd</module> <module>episode</module> <module>jaxbplugins</module> <module>po</module> </modules> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <inherited>true</inherited> <configuration> <descriptors> <descriptor>../src/main/assembly/maven-src.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>maven-assembly</id> <!--phase>package</phase--> <phase>none</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <inherited>true</inherited> <executions> <execution> <id>maven-unpack</id> <!--phase>pre-integration-test</phase--> <phase>none</phase> <configuration> <tasks> <mkdir dir="target/test-maven-repository" /> <unzip src="target/${pom.artifactId}-${pom.version}-maven-src.zip" dest="${basedir}/target/test-maven-assembly" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <inherited>true</inherited> <executions> <execution> <id>maven-integration-test</id> <!--phase>integration-test</phase--> <phase>none</phase> <goals> <goal>run</goal> </goals> <configuration> <debug>true</debug> <projectsDirectory>${basedir}/target/test-maven-assembly</projectsDirectory> <!--localRepositoryPath>${basedir}/target/test-maven-repository</localRepositoryPath--> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>