123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.github.microservice</groupId>
- <artifactId>PParent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../../../super/PParent</relativePath>
- </parent>
- <groupId>com.zhongshu</groupId>
- <artifactId>RewardServer</artifactId>
- <name>RewardServer</name>
- <description>返利中心</description>
- <properties>
- <java.version>11</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.github.microservice</groupId>
- <artifactId>PCore</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!--应用中心客户端-->
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>ApplicationClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zswl.cloud.bdb</groupId>
- <artifactId>zswl-cloud-bdb-client</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zswl.cloud.shop</groupId>
- <artifactId>zswl-cloud-shop-client</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zhongshu</groupId>
- <artifactId>VipClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>MongodbData</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>RedisData</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>2.0.38</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>3.14.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.zhongshu</groupId>
- <artifactId>RewardClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.netdisk</groupId>
- <artifactId>NetDiskClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>2.0.38</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>2.0.38</version>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>PushCenterClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.redisson</groupId>-->
- <!-- <artifactId>redisson-spring-boot-starter</artifactId>-->
- <!-- <version>3.17.1</version> <!– 请根据实际情况选择版本 –>-->
- <!-- </dependency>-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <fork>true</fork>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <excludes>
- <!-- This is where the exclusion occurs -->
- <exclude>**/application-*.yml</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- <!-- properties 取 pom 配置 -->
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- </project>
|