sardine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>info.ibruce</groupId> <artifactId>sardine</artifactId> <version>1.0.0</version> </dependency>
<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>1.0.0</version> <!--<packaging>jar</packaging>--> <!-- branches tags 1.0 sardine-1.0.0 1.0 sardine-1.0.1 2.0 sardine-2.0.0 --> <name>sardine</name> <url>http://sardine.ibruce.info</url> <description> lightweight framework for creating small standalone java applications in a micro service way. </description> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>bruce-sha</name> <email>bu.ru@qq.com</email> <url>http://ibruce.info</url> </developer> </developers> <scm> <url>https://github.com/bruce-sha/sardine</url> <connection>scm:git:https://github.com/bruce-sha/sardine.git</connection> <developerConnection>scm:git:https://github.com/bruce-sha/sardine.git</developerConnection> <tag>sardine-${project.version}</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <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>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> <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> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-source-plugin</artifactId>--> <!--<executions>--> <!--<execution>--> <!--<id>attach-sources</id>--> <!--<goals>--> <!--<goal>jar-no-fork</goal>--> <!--</goals>--> <!--</execution>--> <!--</executions>--> <!--</plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>