66 lines
2.2 KiB
XML
66 lines
2.2 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>
|
|
|
|
<groupId>cn.cloudowr</groupId>
|
|
<artifactId>attach</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>war</packaging>
|
|
<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>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jfinal</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>8.1.8</version>
|
|
</dependency>
|
|
<!--<dependency>-->
|
|
<!--<groupId>mysql</groupId>-->
|
|
<!--<artifactId>mysql-connector-java</artifactId>-->
|
|
<!--<version>5.1.20</version>-->
|
|
<!--</dependency>-->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.24</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mongodb</groupId>
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
<version>3.4.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>2.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jfinal</groupId>
|
|
<artifactId>cos</artifactId>
|
|
<version>26Dec2008</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.cloudowr</groupId>
|
|
<artifactId>sdk</artifactId>
|
|
<version>1.4.16</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |