pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <exclusions>
  22. <exclusion>
  23. <artifactId>alipay-sdk-java</artifactId>
  24. <groupId>com.alipay.sdk</groupId>
  25. </exclusion>
  26. <exclusion>
  27. <artifactId>aliyun-java-sdk-cms</artifactId>
  28. <groupId>com.aliyun</groupId>
  29. </exclusion>
  30. <exclusion>
  31. <artifactId>*</artifactId>
  32. <groupId>com.amazonaws</groupId>
  33. </exclusion>
  34. <exclusion>
  35. <artifactId>spring-boot-starter-amqp</artifactId>
  36. <groupId>org.springframework.boot</groupId>
  37. </exclusion>
  38. <exclusion>
  39. <artifactId>xstream</artifactId>
  40. <groupId>com.thoughtworks.xstream</groupId>
  41. </exclusion>
  42. <exclusion>
  43. <artifactId>javacpp</artifactId>
  44. <groupId>org.bytedeco</groupId>
  45. </exclusion>
  46. <exclusion>
  47. <artifactId>javacpp</artifactId>
  48. <groupId>org.bytedeco</groupId>
  49. </exclusion>
  50. <exclusion>
  51. <artifactId>javacv-platform</artifactId>
  52. <groupId>org.bytedeco</groupId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-httpclient</groupId>
  58. <artifactId>commons-httpclient</artifactId>
  59. <version>3.1</version>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. <configuration>
  68. <skip>true</skip>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. <resources>
  73. <resource>
  74. <directory>src/lib</directory>
  75. <targetPath>BOOT-INF/lib</targetPath>
  76. <includes>
  77. <include>**/*.jar</include>
  78. </includes>
  79. </resource>
  80. </resources>
  81. </build>
  82. <distributionManagement>
  83. <repository>
  84. <id>releases</id>
  85. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases</url>
  86. </repository>
  87. <snapshotRepository>
  88. <id>snapshots</id>
  89. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots</url>
  90. </snapshotRepository>
  91. </distributionManagement>
  92. </project>