bocloud.tse/pom.xml

126 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.freedom</groupId>
<artifactId>megatron</artifactId>
<version>3.0.0</version>
</parent>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.tse</artifactId>
<version>6.5.0-LTS-SZ</version>
<packaging>pom</packaging>
<properties>
<bocloud.common.version>6.5.0-LTS</bocloud.common.version>
<bocloud.tse.version>6.5.0-LTS-SZ</bocloud.tse.version>
</properties>
<modules>
<module>bocloud.tse.booter</module>
<module>bocloud.tse.entity</module>
<module>bocloud.tse.core</module>
<module>bocloud.tse.service</module>
<module>bocloud.tse.scheduler</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- megatron -->
<dependency>
<groupId>com.freedom</groupId>
<artifactId>megatron.common</artifactId>
<version>${megatron.version}</version>
</dependency>
<dependency>
<groupId>com.freedom</groupId>
<artifactId>megatron.database</artifactId>
<version>${megatron.version}</version>
</dependency>
<dependency>
<groupId>com.freedom</groupId>
<artifactId>megatron.framework</artifactId>
<version>${megatron.version}</version>
</dependency>
<dependency>
<groupId>com.freedom</groupId>
<artifactId>megatron.microservice</artifactId>
<version>${megatron.version}</version>
</dependency>
<!-- bocloud.common -->
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.boot.common</artifactId>
<version>${bocloud.common.version}</version>
</dependency>
<!-- bocloud.tse -->
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.tse.entity</artifactId>
<version>${bocloud.tse.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.tse.core</artifactId>
<version>${bocloud.tse.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.tse.service</artifactId>
<version>${bocloud.tse.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.tse.scheduler</artifactId>
<version>${bocloud.tse.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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<version>3.0.0-M3</version>
</plugin>
</plugins>
</build>
</project>