vertxrs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.deephacks.vertxrs</groupId> <artifactId>vertxrs</artifactId> <version>0.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- vi:ts=2:sw=2:expandtab: --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.deephacks.vertxrs</groupId> <artifactId>vertxrs</artifactId> <name>vertxrs</name> <version>0.5.0</version> <packaging>jar</packaging> <description>Jaxrs for Vert.x</description> <url>http://vertxrs.deephacks.org</url> <inceptionYear>2015</inceptionYear> <mailingLists> <mailingList> <name>Development List</name> <post>vertxrs-dev@googlegroups.com</post> </mailingList> <mailingList> <name>User List</name> <post>vertxrs-user@googlegroups.com</post> </mailingList> </mailingLists> <issueManagement> <system>github</system> <url>https://github.com/deephacks/vertxrs/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:deephacks/vertxrs.git</connection> <developerConnection>scm:git:git@github.com:deephacks/vertxrs.git</developerConnection> <url>scm:git:git@github.com/deephacks/vertxrs</url> <tag>0.5.0</tag> </scm> <licenses> <license> <name>Apache License</name> <url>license.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Kristoffer Sjogren</name> <id>krisskross</id> <email>stoffe -at- gmail.com</email> <organization /> <roles> <role>Developer</role> </roles> <url>http://stoffe.deephacks.org/</url> <timezone>+1</timezone> </developer> </developers> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerVersion>1.8</compilerVersion> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <arguments>-P sign-artifacts</arguments> <autoVersionSubmodules>true</autoVersionSubmodules> <allowTimestampedSnapshots>false</allowTimestampedSnapshots> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.4</version> <configuration> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Specification-Vendor>deephacks</Specification-Vendor> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Implementation-Vendor>deephacks</Implementation-Vendor> <Implementation-Vendor-Id>org.deephacks</Implementation-Vendor-Id> <url>http://vertxrs.deephacks.org</url> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>3.0.0</version> <exclusions> <exclusion> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.12</version> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> <version>2.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.jaxrs</groupId> <artifactId>jackson-jaxrs-json-provider</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jackson2-provider</artifactId> <version>3.0.10.Final</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxb-provider</artifactId> <version>3.0.10.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client</artifactId> <version>3.0.10.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jaxrs</artifactId> <version>3.0.10.Final</version> <exclusions> <exclusion> <groupId>org.jboss.spec.javax.annotation</groupId> <artifactId>jboss-annotations-api_1.1_spec</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> <exclusion> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> </exclusion> <exclusion> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> </exclusion> <exclusion> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.10</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> </execution> </executions> <configuration> <verbose>false</verbose> </configuration> </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> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>