pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <parent>
  5. <artifactId>platform</artifactId>
  6. <groupId>com.platform</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>platform-framework</artifactId>
  10. <packaging>war</packaging>
  11. <name>platform-framework</name>
  12. <description>
  13. 此项目为系统WEB合并,
  14. 合并项目可以根据需要自己配置。
  15. 最终打包的项目也根据此配置进行打包。
  16. </description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.platform</groupId>
  20. <artifactId>platform-common</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.platform</groupId>
  25. <artifactId>platform-api</artifactId>
  26. <version>1.0.0</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <sourceDirectory>src/main/java</sourceDirectory>
  31. <finalName>platform</finalName>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-surefire-plugin</artifactId>
  36. <version>2.18.1</version>
  37. <configuration>
  38. <skipTests>true</skipTests>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>