42 Star 57 Fork 23

不如/sardine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.29 KB
一键复制 编辑 原始数据 按行查看 历史
不如 提交于 2015-12-05 20:02 . 0.3版本发布
<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>info.ibruce</groupId>
<artifactId>sardine</artifactId>
<version>0.3</version>
<!--<packaging>jar</packaging>-->
<name>sardine</name>
<url>http://sardine.ibruce.info</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netty-version>5.0.0.Alpha2</netty-version>
<freemarker-version>2.3.22</freemarker-version>
</properties>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty-version}</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${freemarker-version}</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.yaml</groupId>-->
<!--<artifactId>snakeyaml</artifactId>-->
<!--<version>1.15</version>-->
<!--</dependency>-->
<!--待移除-->
<!--<dependency>-->
<!--<groupId>com.google.guava</groupId>-->
<!--<artifactId>guava</artifactId>-->
<!--<version>18.0</version>-->
<!--</dependency>-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<!--<scope>provided</scope>-->
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!--https://github.com/eclipse/jetty.project-->
<!--ConnectorStatistics StatisticsHandler-->
<!--<dependency>-->
<!--<groupId>org.eclipse.jetty</groupId>-->
<!--<artifactId>jetty-server</artifactId>-->
<!--<version>9.2.11.v20150529</version>-->
<!--<scope>test</scope>-->
<!--</dependency>-->
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>1.4.5</version>
<scope>test</scope>
</dependency>
<!--<dependency>-->
<!--<groupId>com.aol.microservices</groupId>-->
<!--<artifactId>microserver-core</artifactId>-->
<!--<version>0.55</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>com.google.guava</groupId>-->
<!--<artifactId>guava</artifactId>-->
<!--<version>18.0</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>com.googlecode.concurrentlinkedhashmap</groupId>-->
<!--<artifactId>concurrentlinkedhashmap-lru</artifactId>-->
<!--<version>1.4.2</version>-->
<!--</dependency>-->
</dependencies>
<build>
<finalName>sardine</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/buru/sardine.git
git@gitee.com:buru/sardine.git
buru
sardine
sardine
master

搜索帮助