Advertisement
Guest User

Untitled

a guest
Dec 21st, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.03 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <artifactId>com.iwaysoftware.integration.tools</artifactId>
  5.     <version>1.0.0.qualifier</version>
  6.     <build>
  7.         <sourceDirectory>src</sourceDirectory>
  8.         <resources>
  9.             <resource>
  10.                 <directory>src</directory>
  11.                 <excludes>
  12.                     <exclude>**/*.java</exclude>
  13.                 </excludes>
  14.             </resource>
  15.         </resources>
  16.         <plugins>
  17.             <plugin>
  18.                 <artifactId>maven-compiler-plugin</artifactId>
  19.                 <version>2.3.2</version>
  20.                 <configuration>
  21.                     <source />
  22.                     <target />
  23.                 </configuration>
  24.             </plugin>
  25.             <plugin>
  26.                 <groupId>org.apache.maven.plugins</groupId>
  27.                 <artifactId>maven-antrun-plugin</artifactId>
  28.                 <version>1.6</version>
  29.                 <executions>
  30.                     <execution>
  31.                         <id>prepare-package</id>
  32.                         <phase>prepare-package</phase>
  33.                         <configuration>
  34.                             <target>
  35.                                 <replace file="plugin.properties">
  36.                                     <replacefilter token="_VERSION_" value="${unqualifiedVersion}" />
  37.                                     <replacefilter token="_BUILD_ID_" value="${buildQualifier}" />
  38.                                 </replace>
  39.                             </target>
  40.                         </configuration>
  41.                         <goals>
  42.                             <goal>run</goal>
  43.                         </goals>
  44.                     </execution>
  45.                     <execution>
  46.                         <id>package</id>
  47.                         <phase>package</phase>
  48.                         <configuration>
  49.                             <target>
  50.                                 <replace file="plugin.properties">
  51.                                     <replacefilter token="${unqualifiedVersion}" value="_VERSION_" />
  52.                                     <replacefilter token="${buildQualifier}" value="_BUILD_ID_" />
  53.                                 </replace>
  54.                             </target>
  55.                         </configuration>
  56.                         <goals>
  57.                             <goal>run</goal>
  58.                         </goals>
  59.                     </execution>
  60.                 </executions>
  61.             </plugin>
  62.         </plugins>
  63.     </build>
  64.     <parent>
  65.         <groupId>com.iwaysoftware.integration.tools</groupId>
  66.         <artifactId>product-aggregator</artifactId>
  67.         <version>1.0.0</version>
  68.     </parent>
  69.     <packaging>eclipse-plugin</packaging>
  70. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement