2017-02-17 17:08:31 +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>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>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
|
<version>8.1.8.v20121106</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<stopKey>stop</stopKey>
|
2017-02-17 17:13:55 +08:00
|
|
|
<stopPort>5202</stopPort>
|
2017-02-17 17:08:31 +08:00
|
|
|
<webAppConfig>
|
|
|
|
|
<contextPath>/</contextPath>
|
|
|
|
|
</webAppConfig>
|
|
|
|
|
<scanIntervalSeconds>5</scanIntervalSeconds>
|
|
|
|
|
<connectors>
|
|
|
|
|
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
|
|
|
|
|
<port>4202</port>
|
|
|
|
|
<maxIdleTime>60000</maxIdleTime>
|
|
|
|
|
</connector>
|
|
|
|
|
</connectors>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
|
<version>1.2.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>java</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<mainClass>cn.cloudowr.dict.Main</mainClass>
|
|
|
|
|
</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.6</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>
|
2017-02-19 09:52:10 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.cloudowr</groupId>
|
|
|
|
|
<artifactId>sdk</artifactId>
|
2017-02-20 11:30:46 +08:00
|
|
|
<version>1.1.2</version>
|
2017-02-19 09:52:10 +08:00
|
|
|
</dependency>
|
2017-02-17 17:08:31 +08:00
|
|
|
</dependencies>
|
|
|
|
|
</project>
|