96 lines
3.7 KiB
XML
96 lines
3.7 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>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.bre</artifactId>
|
||
|
<version>5.5.0-RELEASE</version>
|
||
|
</parent>
|
||
|
<artifactId>bocloud.sms</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<properties>
|
||
|
<bocloud.boot.version>5.5.0-RELEASE</bocloud.boot.version>
|
||
|
<bocloud.bre.version>5.5.0-RELEASE</bocloud.bre.version>
|
||
|
<bocloud.sms.version>5.5.0-RELEASE</bocloud.sms.version>
|
||
|
</properties>
|
||
|
<modules>
|
||
|
<module>bocloud.sms.storage</module>
|
||
|
<module>bocloud.sms.service</module>
|
||
|
<module>bocloud.sms.booter</module>
|
||
|
</modules>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.orm</artifactId>
|
||
|
<version>${bocloud.bre.version}</version>
|
||
|
</dependency>
|
||
|
<!-- 其他模块依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.boot.common</artifactId>
|
||
|
<version>${bocloud.boot.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.bre.database</artifactId>
|
||
|
<version>${bocloud.bre.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.bre.service</artifactId>
|
||
|
<version>${bocloud.bre.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.sms.storage</artifactId>
|
||
|
<version>${bocloud.sms.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.sms.service</artifactId>
|
||
|
<version>${bocloud.sms.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.auth0</groupId>
|
||
|
<artifactId>java-jwt</artifactId>
|
||
|
<version>3.10.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
<artifactId>jjwt</artifactId>
|
||
|
<version>0.9.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<version>2.4.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<version>2.8.2</version>
|
||
|
<configuration>
|
||
|
<updateReleaseInfo>true</updateReleaseInfo>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.5.1</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
<encoding>${file_encoding}</encoding>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|