123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.platform</groupId>
- <artifactId>platform-common</artifactId>
- <version>1.0.0</version>
- <packaging>jar</packaging>
- <name>platform-common</name>
- <description>公共模块</description>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.12.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <dependencies>
- <dependency>
- <groupId>com.fdage.micro</groupId>
- <artifactId>unite-account-commom</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <artifactId>alipay-sdk-java</artifactId>
- <groupId>com.alipay.sdk</groupId>
- </exclusion>
- <exclusion>
- <artifactId>aliyun-java-sdk-cms</artifactId>
- <groupId>com.aliyun</groupId>
- </exclusion>
- <exclusion>
- <artifactId>*</artifactId>
- <groupId>com.amazonaws</groupId>
- </exclusion>
- <exclusion>
- <artifactId>spring-boot-starter-amqp</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- <exclusion>
- <artifactId>xstream</artifactId>
- <groupId>com.thoughtworks.xstream</groupId>
- </exclusion>
- <exclusion>
- <artifactId>javacpp</artifactId>
- <groupId>org.bytedeco</groupId>
- </exclusion>
- <exclusion>
- <artifactId>javacpp</artifactId>
- <groupId>org.bytedeco</groupId>
- </exclusion>
- <exclusion>
- <artifactId>javacv-platform</artifactId>
- <groupId>org.bytedeco</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/lib</directory>
- <targetPath>BOOT-INF/lib</targetPath>
- <includes>
- <include>**/*.jar</include>
- </includes>
- </resource>
- </resources>
- </build>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|