pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>datax-web</artifactId>
  7. <groupId>com.wugui</groupId>
  8. <version>2.1.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.wugui</groupId>
  12. <artifactId>datax-assembly</artifactId>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-assembly-plugin</artifactId>
  18. <version>2.2.1</version>
  19. <executions>
  20. <execution>
  21. <id>assemble</id>
  22. <goals>
  23. <goal>single</goal>
  24. </goals>
  25. <!-- install -->
  26. <phase>install</phase>
  27. </execution>
  28. </executions>
  29. <configuration>
  30. <appendAssemblyId>false</appendAssemblyId>
  31. <attach>false</attach>
  32. <descriptors>
  33. <descriptor>${basedir}/package.xml</descriptor>
  34. </descriptors>
  35. <finalName>${project.parent.artifactId}-${project.parent.version}</finalName>
  36. <outputDirectory>../build</outputDirectory>
  37. </configuration>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>