Permalink
Cannot retrieve contributors at this time
<?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"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-parent</artifactId> | |
<version>1.3.6.RELEASE</version> | |
</parent> | |
<groupId>io.switchbit</groupId> | |
<artifactId>thumbernator</artifactId> | |
<version>1.0.0.BUILD-SNAPSHOT</version> | |
<scm> | |
<connection>scm:git:git@github.com/donovanmuller/thumbernator.git</connection> | |
<developerConnection>scm:git:ssh://github.com/donovanmuller/thumbernator.git</developerConnection> | |
<url>https://github.com/donovanmuller/thumbernator</url> | |
<tag>HEAD</tag> | |
</scm> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-stream-dependencies</artifactId> | |
<version>1.0.2.RELEASE</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-web</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-actuator</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-stream</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-starter-stream-kafka</artifactId> | |
</dependency> | |
</dependencies> | |
<build> | |
<resources> | |
<resource> | |
<directory>src/main/resources</directory> | |
<filtering>true</filtering> | |
</resource> | |
<resource> | |
<directory>src/main/docker</directory> | |
</resource> | |
</resources> | |
<plugins> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
</plugin> | |
</plugins> | |
</build> | |
<distributionManagement> | |
<repository> | |
<id>fabric8-nexus</id> | |
<name>Fabric8 Nexus Test Releases Repo</name> | |
<url>http://nexus.vagrant.f8/content/repositories/releases</url> | |
</repository> | |
<snapshotRepository> | |
<id>fabric8-nexus</id> | |
<name>Fabric8 Nexus Test Snapshots Repo</name> | |
<url>http://nexus.vagrant.f8/content/repositories/snapshots</url> | |
</snapshotRepository> | |
</distributionManagement> | |
</project> |