1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
<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>
<parent>
<groupId>com.thoughtworks.paranamer</groupId>
<artifactId>paranamer-parent</artifactId>
<version>2.8</version>
</parent>
<artifactId>paranamer-distribution</artifactId>
<packaging>pom</packaging>
<name>ParaNamer Distribution</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>paranamer-generator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>paranamer-ant</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>unpack</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/site/javadoc</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>paranamer</artifactId>
<version>${project.version}</version>
<classifier>javadoc</classifier>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete includeEmptyDirs="true">
<fileset dir="${project.build.directory}/site" includes="**/META-INF/*" />
<fileset dir="${project.build.directory}/site" includes="**/META-INF" />
</delete>
<mkdir dir="${project.build.directory}/docs" />
<copy todir="${project.build.directory}/docs" overwrite="true" failonerror="false">
<fileset dir="${basedir}">
<include name="target/site/**" />
<exclude name="target/site" />
</fileset>
<filtermapper>
<replacestring from="target${file.separator}site${file.separator}" to="${file.separator}" />
</filtermapper>
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.4</version>
<executions>
<execution>
<id>bin</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptor>${basedir}/src/assembly/assembly-bin.xml</descriptor>
<finalName>paranamer-${project.version}</finalName>
<workDirectory>${project.build.directory}/assembly/bin</workDirectory>
</configuration>
</execution>
<execution>
<id>src</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptor>${basedir}/src/assembly/assembly-src.xml</descriptor>
<finalName>paranamer-${project.version}</finalName>
<workDirectory>${project.build.directory}/assembly/src</workDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|