108 lines
2.6 KiB
XML
108 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<parent>
|
|
<groupId>cn.axzo.oss</groupId>
|
|
<artifactId>oss</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<artifactId>oss-client</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.axzo.oss</groupId>
|
|
<artifactId>oss-service</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>guava</artifactId>
|
|
<groupId>com.google.guava</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.xuxueli</groupId>
|
|
<artifactId>xxl-job-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<!--本地环境 -->
|
|
<profile>
|
|
<id>local</id>
|
|
<properties>
|
|
<activatedProperties>local</activatedProperties>
|
|
</properties>
|
|
</profile>
|
|
<!--开发环境 -->
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
<activatedProperties>dev</activatedProperties>
|
|
</properties>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
<!--测试环境 -->
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<activatedProperties>test</activatedProperties>
|
|
</properties>
|
|
</profile>
|
|
<!--test1 环境 -->
|
|
<profile>
|
|
<id>test1</id>
|
|
<properties>
|
|
<activatedProperties>test1</activatedProperties>
|
|
</properties>
|
|
</profile>
|
|
<!--预发布环境 -->
|
|
<profile>
|
|
<id>pre</id>
|
|
<properties>
|
|
<activatedProperties>pre</activatedProperties>
|
|
</properties>
|
|
</profile>
|
|
<!--生产环境 -->
|
|
<profile>
|
|
<id>master</id>
|
|
<properties>
|
|
<activatedProperties>master</activatedProperties>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<finalName>oss-client</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|