httpquery
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery</artifactId>
<version>1.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<version>1.0</version>
<url>http://gcolin.net/httpquery</url>
<description>httpquery parent project</description>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<scm>
<connection>scm:git:git@github.com:gcolin/HttpQuery.git</connection>
<developerConnection>scm:git:git@github.com:gcolin/HttpQuery.git</developerConnection>
<url>git@github.com:gcolin/HttpQuery.git</url>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>httpquery-facade</module>
<module>httpquery-httpclient</module>
<module>httpquery-xstream</module>
<module>httpquery-mock</module>
<module>httpquery-jackson</module>
<module>httpquery-examples</module>
</modules>
<properties>
<slf4j.version>1.6.6</slf4j.version>
<junit.version>4.4</junit.version>
<httpclient.version>4.2.1</httpclient.version>
<xstream.version>1.4.3</xstream.version>
<commonio.version>2.4</commonio.version>
<tomcat.version>7.0.25</tomcat.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery-facade</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery-httpclient</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery-xstream</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery-mock</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery-jackson</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.gcolin.httpquery</groupId>
<artifactId>httpquery-examples</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commonio.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-catalina</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jasper</artifactId>
<version>${tomcat.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.4.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</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>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>