mock-http-server-exec
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.httpmock</groupId> <artifactId>mock-http-server-exec</artifactId> <version>1.1.9</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> <artifactId>mock-http-server-exec</artifactId> <packaging>jar</packaging> <description>Mock HTTP Server - Executable</description> <url>https://github.com/httpmock/mock-http-server</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>https://github.com/httpmock/mock-http-server</url> <connection>scm:git:git@github.com:httpmock/mock-http-server.git</connection> <tag>mock-http-server-1.1.9</tag> </scm> <developers> <developer> <id>snordquist</id> <name>Sascha Nordquist</name> <url>https://github.com/snordquist</url> </developer> </developers> <parent> <version>1.1.9</version> <groupId>com.github.httpmock</groupId> <artifactId>mock-http-server</artifactId> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <tomee-plugin.script>java</tomee-plugin.script> <tomee-plugin.ajp>9009</tomee-plugin.ajp> <tomee-plugin.http>9090</tomee-plugin.http> <tomee-plugin.shutdown>9099</tomee-plugin.shutdown> <tomee-plugin.runner-class>com.github.httpmock.ExecRunner</tomee-plugin.runner-class> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mock-http-server-dto</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> </dependency> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>tomee-util</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>openejb-core</artifactId> <version>4.7.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>com.jayway.awaitility</groupId> <artifactId>awaitility</artifactId> <version>1.6.3</version> </dependency> <dependency> <groupId>com.jayway.restassured</groupId> <artifactId>rest-assured</artifactId> <version>2.4.0</version> </dependency> <!-- TEST --> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> </dependency> </dependencies> <build> <plugins> <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-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>