123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?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>
- <groupId>com.uas.platform.warehouse</groupId>
- <artifactId>warehouse</artifactId>
- <version>0.1.2-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>Warehouse Platform</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.7</maven.compiler.source>
- <maven.compiler.target>1.7</maven.compiler.target>
- <skipTests>true</skipTests>
- <checkstyle.config.location>google_checks_7.1.2.xml</checkstyle.config.location>
- <!-- Project Version -->
- <warehouse-common.version>0.1.2-SNAPSHOT</warehouse-common.version>
- <warehouse-transport.version>0.1.2-SNAPSHOT</warehouse-transport.version>
- <!-- Dependencies Version -->
- <spring-boot.version>1.5.6.RELEASE</spring-boot.version>
- <commons-logging.version>1.1</commons-logging.version>
- <jackson.version>2.8.9</jackson.version>
- <joda-time.version>2.9.9</joda-time.version>
- <httpclient.version>4.5.3</httpclient.version>
- <mysql.version>6.0.6</mysql.version>
- <commons-lang3.version>3.5</commons-lang3.version>
- </properties>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>1.5.6.RELEASE</version>
- </parent>
- <modules>
- <module>warehouse-backend-app</module>
- <module>warehouse-common</module>
- <module>warehouse-uas-sdk</module>
- <module>warehouse-online-app</module>
- <module>warehouse-transport</module>
- <module>warehouse-home-app</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <!-- Custom Lib -->
- <dependency>
- <groupId>com.uas.platform.warehouse</groupId>
- <artifactId>warehouse-common</artifactId>
- <version>${warehouse-common.version}</version>
- </dependency>
- <dependency>
- <groupId>com.uas.platform.warehouse</groupId>
- <artifactId>warehouse-transport</artifactId>
- <version>${warehouse-transport.version}</version>
- </dependency>
- <!-- Apache Commons -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons-lang3.version}</version>
- </dependency>
- <!-- Jackson -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <!-- Joda Time -->
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>${joda-time.version}</version>
- </dependency>
- <!-- Apache Http Client -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>${httpclient.version}</version>
- </dependency>
- <!-- Spring Boot -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- <version>${spring-boot.version}</version>
- </dependency>
- <!-- Database Drivers -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <distributionManagement>
- <!-- 发布release仓库 -->
- <repository>
- <id>platform-release</id>
- <name>platform-release</name>
- <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
- </repository>
- <!-- 发布快照版本 -->
- <snapshotRepository>
- <id>platform-snapshots</id>
- <name>platform-snapshots</name>
- <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|