bocloud.ims/pom.xml

211 lines
6.4 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.6.0-RELEASE</version>
</parent>
<artifactId>bocloud.ims</artifactId>
<packaging>pom</packaging>
<name>IaaS Manager Service</name>
<version>5.6.0-HBCL-RELEASE</version>
<modules>
<module>bocloud.ims.entity</module>
<module>bocloud.ims.common</module>
<module>bocloud.ims.repository</module>
<module>bocloud.ims.interface</module>
<module>bocloud.ims.service</module>
<module>bocloud.ims.booter</module>
</modules>
<properties>
<bocloud.bre.version>5.6.0-RELEASE</bocloud.bre.version>
<bocloud.current.version>5.6.0-HBCL-RELEASE</bocloud.current.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.boot.common</artifactId>
<version>${bocloud.bre.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.bre.common</artifactId>
<version>${bocloud.bre.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.orm</artifactId>
<version>${bocloud.bre.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.ims.repository</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.ims.interface</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.ims.service</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.ims.entity</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.ims.common</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.cmp.driver</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.10</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
<version>5.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version><!--$NO-MVN-MAN-VER$ -->
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.3</version>
</dependency>
<dependency>
<groupId>org.ini4j</groupId>
<artifactId>ini4j</artifactId>
<version>0.5.4</version>
</dependency>
<dependency>
<groupId>javatar</groupId>
<artifactId>javatar</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
<!-- shedlock start -->
<dependency>
<groupId>net.javacrumbs.shedlock</groupId>
<artifactId>shedlock-spring</artifactId>
<version>4.11.1</version>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
<version>7.1.1</version>
</dependency>
<dependency>
<groupId>net.javacrumbs.shedlock</groupId>
<artifactId>shedlock-provider-jdbc-template</artifactId>
<version>4.11.1</version>
</dependency>
<!-- shedlock end -->
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.rpc</artifactId>
<version>${bocloud.current.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.acd.provider</artifactId>
<version>${bocloud.bre.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.acd.ims</artifactId>
<version>${bocloud.bre.version}</version>
</dependency>
<dependency>
<groupId>com.bocloud</groupId>
<artifactId>bocloud.acd.entity</artifactId>
<version>${bocloud.bre.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>1.8</source>
<target>1.8</target>
<encoding>${file_encoding}</encoding>
</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>