| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?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.anji-plus.sp</groupId>
- <artifactId>sp-parent</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>sp-app</artifactId>
- <name>sp-app</name>
- <packaging>jar</packaging>
- <description>Demo project for Spring Boot</description>
- <dependencies>
- <dependency>
- <groupId>com.anji-plus.sp</groupId>
- <artifactId>sp-version</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.anji-plus.sp</groupId>
- <artifactId>sp-notice</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.anji-plus.sp</groupId>
- <artifactId>sp-push</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!-- 本地加载 -->
- <dependency>
- <groupId>com.vivo.push.sdk</groupId>
- <artifactId>vpush-server-sdk</artifactId>
- <version>2.2</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/vpush-server-sdk-2.2.jar
- </systemPath>
- </dependency>
- <dependency>
- <groupId>com.oppo.push.sdk</groupId>
- <artifactId>opush-server-sdk</artifactId>
- <version>1.0.6</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/opush-server-sdk-1.0.6.jar
- </systemPath>
- </dependency>
- <dependency>
- <groupId>com.xiaomi.xmpush</groupId>
- <artifactId>MiPush_SDK_Server_Http</artifactId>
- <version>2_1.0.9</version>
- <scope>system</scope>
- <systemPath>${pom.basedir}/src/main/resources/libs/MiPush_SDK_Server_Http2_1.0.9.jar
- </systemPath>
- </dependency>
- </dependencies>
- <developers>
- <developer>
- <name>develop.anji-plus.com</name>
- <email>MS@anji-plus.com</email>
- <url>https://github.com/anji-plus</url>
- </developer>
- </developers>
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <spring.profiles.active>dev</spring.profiles.active>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- </profiles>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <configuration>
- <encoding>UTF-8</encoding>
- <nonFilteredFileExtensions>
- <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
- <nonFilteredFileExtension>woff</nonFilteredFileExtension>
- <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
- </nonFilteredFileExtensions>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>3.3.0</version>
- <configuration>
- <encoding>UTF-8</encoding>
- <descriptors>
- <descriptor>src/main/assembly/assembly.xml</descriptor>
- </descriptors>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|