ursus-example-http-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.aceevo.ursus</groupId>
<artifactId>ursus-example-http-client</artifactId>
<version>0.2.15</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>ursus-parent</artifactId>
<groupId>com.aceevo.ursus</groupId>
<version>0.2.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ursus-example-http-client</artifactId>
<profiles>
<profile>
<id>run-ursus-example-http-client</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.aceevo.ursus</groupId>
<artifactId>ursus-config</artifactId>
<version>0.2.15</version>
</dependency>
<dependency>
<groupId>com.aceevo.ursus</groupId>
<artifactId>ursus-client</artifactId>
<version>0.2.15</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>com.aceevo.ursus.example.simplehttpclient.SimpleHttpClientExample</mainClass>
<arguments>
<argument>${basedir}/httpClient.yml</argument>
</arguments>
<systemProperties>
<systemProperty>
<key>wait</key>
<value>true</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</project>