cowr_sdk/pom.xml

61 lines
2.1 KiB
XML
Raw Normal View History

2017-02-18 14:29:01 +08:00
<?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>cn.cloudowr</groupId>
<artifactId>sdk</artifactId>
2017-03-26 22:10:12 +08:00
<version>1.4.13</version>
2017-02-18 14:29:01 +08:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.jfinal</groupId>
<artifactId>jfinal</artifactId>
<version>3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jfinal</groupId>
<artifactId>jetty-server</artifactId>
<version>8.1.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.20</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
2017-02-20 11:30:03 +08:00
<version>1.2.24</version>
2017-02-18 14:29:01 +08:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.4.2</version>
<scope>provided</scope>
</dependency>
2017-03-24 15:37:37 +08:00
<dependency>
<groupId>com.talent-aio</groupId>
<artifactId>talent-aio-common</artifactId>
<version>1.6.6.v20170318-RELEASE</version>
<scope>provided</scope>
</dependency>
2017-02-18 14:29:01 +08:00
</dependencies>
</project>