pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>davinci-parent_0.3.1</artifactId>
  8. <groupId>edp.davinci</groupId>
  9. <version>0.3.1-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>davinci-assembly_0.3.1</artifactId>
  13. <packaging>pom</packaging>
  14. <licenses>
  15. <license>
  16. <name>Apache License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <properties>
  22. <skipTests>true</skipTests>
  23. <main.basedir>${project.parent.basedir}</main.basedir>
  24. <sbt.project.name>assembly</sbt.project.name>
  25. <build.testJarPhase>none</build.testJarPhase>
  26. <build.copyDependenciesPhase>package</build.copyDependenciesPhase>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>edp.davinci</groupId>
  31. <artifactId>davinci-server_0.3.1</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-antrun-plugin</artifactId>
  40. <executions>
  41. <execution>
  42. <phase>package</phase>
  43. <goals>
  44. <goal>run</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. <configuration>
  49. </configuration>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-assembly-plugin</artifactId>
  54. <version>3.0.0</version>
  55. <executions>
  56. <execution>
  57. <id>dist</id>
  58. <phase>package</phase>
  59. <goals>
  60. <goal>single</goal>
  61. </goals>
  62. <configuration>
  63. <descriptors>
  64. <descriptor>src/main/assembly/assembly.xml</descriptor>
  65. </descriptors>
  66. </configuration>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. <profiles>
  73. <profile>
  74. <id>dist</id>
  75. </profile>
  76. </profiles>
  77. </project>