104 lines
4.0 KiB
XML
104 lines
4.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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.freedom</groupId>
|
|
<artifactId>megatron</artifactId>
|
|
<version>3.0.0</version>
|
|
</parent>
|
|
<groupId>com.bocloud</groupId>
|
|
<version>6.5.0-LTS-SZ</version>
|
|
<artifactId>bocloud.cms</artifactId>
|
|
<packaging>pom</packaging>
|
|
<description>BoCloud Cloud Supervise Platform</description>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<bocloud.cms.version>6.5.0-LTS-SZ</bocloud.cms.version>
|
|
<bocloud.boot.common.version>6.5.0-LTS</bocloud.boot.common.version>
|
|
</properties>
|
|
<modules>
|
|
<module>bocloud.cms.repository</module>
|
|
<module>bocloud.cms.service</module>
|
|
<module>bocloud.cms.common</module>
|
|
<module>bocloud.cms.booter</module>
|
|
<module>bocloud.cms.entity</module>
|
|
</modules>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- bocloud.cms -->
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cms.booter</artifactId>
|
|
<version>${bocloud.cms.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cms.common</artifactId>
|
|
<version>${bocloud.cms.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cms.service</artifactId>
|
|
<version>${bocloud.cms.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cms.repository</artifactId>
|
|
<version>${bocloud.cms.version}</version>
|
|
</dependency>
|
|
<!-- bocloud.entity -->
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cms.entity</artifactId>
|
|
<version>${bocloud.cms.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.boot.common</artifactId>
|
|
<version>${bocloud.boot.common.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>bocloud</id>
|
|
<name>BoCloud Release</name>
|
|
<url>${release.server.url}</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>bocloud-snapshot</id>
|
|
<name>BoCloud Snapshot</name>
|
|
<url>${snapshot.server.url}</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
<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>21</source>
|
|
<target>21</target>
|
|
<encoding>${file_encoding}</encoding>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |