blitline-image-client-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.blitline</groupId>
<artifactId>blitline-image-client-example</artifactId>
<version>0.17.1</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>
<parent>
<groupId>com.blitline</groupId>
<artifactId>blitline-java-parent</artifactId>
<version>0.17.1</version>
</parent>
<artifactId>blitline-image-client-example</artifactId>
<name>Standalone example for the Blitline image client</name>
<properties>
<java.version>1.7</java.version>
</properties>
<repositories>
<repository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.blitline</groupId>
<artifactId>blitline-image-client-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.boot.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<mainClass>com.blitline.image.example.ExampleLauncher</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>