pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <groupId>com.platform</groupId>
  5. <artifactId>platform-common</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>jar</packaging>
  8. <name>platform-common</name>
  9. <description>公共模块</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.12.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.fdage.micro</groupId>
  19. <artifactId>unite-account-commom</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-httpclient</groupId>
  24. <artifactId>commons-httpclient</artifactId>
  25. <version>3.1</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-maven-plugin</artifactId>
  33. <configuration>
  34. <skip>true</skip>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. <resources>
  39. <resource>
  40. <directory>src/lib</directory>
  41. <targetPath>BOOT-INF/lib</targetPath>
  42. <includes>
  43. <include>**/*.jar</include>
  44. </includes>
  45. </resource>
  46. </resources>
  47. </build>
  48. <distributionManagement>
  49. <repository>
  50. <id>releases</id>
  51. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases</url>
  52. </repository>
  53. <snapshotRepository>
  54. <id>snapshots</id>
  55. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots</url>
  56. </snapshotRepository>
  57. </distributionManagement>
  58. </project>