pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <groupId>com.wei</groupId>
  6. <artifactId>wei-test</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>wei-test-app</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.wei</groupId>
  13. <artifactId>wei-test-cloud-api</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. </dependency>
  16. </dependencies>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <configuration>
  23. <source>1.8</source>
  24. <target>1.8</target>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. <!-- <repositories>
  30. <repository>
  31. <id></id>
  32. <url></url>
  33. </repository>
  34. </repositories>
  35. <pluginRepositories>
  36. <pluginRepository>
  37. <id></id>
  38. <url></url>
  39. </pluginRepository>
  40. </pluginRepositories>
  41. <distributionManagement>
  42. <repository>
  43. <id></id>
  44. <url></url>
  45. </repository>
  46. <snapshotRepository>
  47. <id></id>
  48. <url></url>
  49. </snapshotRepository>
  50. </distributionManagement>-->
  51. </project>