123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>1.4.1.RELEASE</version>
- </parent>
- <groupId>com.uas.donate</groupId>
- <artifactId>donate-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <description>优软云一元捐</description>
- <modules>
- <module>donate-service</module>
- <module>donate-console</module>
- </modules>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <springframeword.cloud.version>1.2.1.RELEASE</springframeword.cloud.version>
- <fastjson.version>1.2.15</fastjson.version>
- <druid.version>1.0.24</druid.version>
- <mysql.jdbc.version>5.1.41</mysql.jdbc.version>
- <account.version>0.0.1-SNAPSHOT</account.version>
- <sso.version>0.0.1-SNAPSHOT</sso.version>
- <platform.version>0.0.1-SNAPSHOT</platform.version>
- <spring.mobile.version>1.1.2.RELEASE</spring.mobile.version>
- <message.sms.version>0.0.1</message.sms.version>
- <message.mail.version>0.0.1</message.mail.version>
- <platform.core.version>0.0.1-SNAPSHOT</platform.core.version>
- <dubbo.version>2.8.4</dubbo.version>
- <zookeeper.version>3.4.6</zookeeper.version>
- <zkclient.version>0.1</zkclient.version>
- <dfs.version>0.0.2</dfs.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.jdbc.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>${druid.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.uas.account</groupId>
- <artifactId>account-common</artifactId>
- <version>${account.version}</version>
- </dependency>
- <dependency>
- <groupId>com.uas.sso</groupId>
- <artifactId>sso-common</artifactId>
- <version>${sso.version}</version>
- </dependency>
- <dependency>
- <groupId>com.uas.platform</groupId>
- <artifactId>platform-core</artifactId>
- <version>${platform.version}</version>
- </dependency>
- <!-- spring mobile -->
- <dependency>
- <groupId>org.springframework.mobile</groupId>
- <artifactId>spring-mobile-device</artifactId>
- <version>${spring.mobile.version}</version>
- </dependency>
- <!-- 邮件 -->
- <dependency>
- <groupId>com.uas.message</groupId>
- <artifactId>message-mail-api</artifactId>
- <version>${message.mail.version}</version>
- </dependency>
- <!-- 消息-->
- <dependency>
- <groupId>com.uas.message</groupId>
- <artifactId>message-sms-api</artifactId>
- <version>${message.sms.version}</version>
- </dependency>
- <dependency>
- <groupId>com.uas.platform</groupId>
- <artifactId>platform-core</artifactId>
- <version>${platform.core.version}</version>
- </dependency>
- <!-- dubbo -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>dubbo</artifactId>
- <version>${dubbo.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.zookeeper</groupId>
- <artifactId>zookeeper</artifactId>
- <version>${zookeeper.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.sgroschupf</groupId>
- <artifactId>zkclient</artifactId>
- <version>${zkclient.version}</version>
- </dependency>
- <!-- dfs service on dubbo -->
- <dependency>
- <groupId>com.uas.dfs</groupId>
- <artifactId>dfs-api</artifactId>
- <version>${dfs.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <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>
|