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"> | |
<parent> | |
<artifactId>springbatch-sample-parent</artifactId> | |
<groupId>com.giovanetti</groupId> | |
<version>0.0.1-SNAPSHOT</version> | |
</parent> | |
<modelVersion>4.0.0</modelVersion> | |
<artifactId>springbatch-sample</artifactId> | |
<dependencies> | |
<dependency> | |
<groupId>com.giovanetti</groupId> | |
<artifactId>springbatch-support</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>com.giovanetti</groupId> | |
<artifactId>springbatch-support</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<type>test-jar</type> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>info.cukes</groupId> | |
<artifactId>cucumber-junit</artifactId> | |
<version>1.1.8</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>info.cukes</groupId> | |
<artifactId>cucumber-spring</artifactId> | |
<version>1.1.8</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.jbehave</groupId> | |
<artifactId>jbehave-core</artifactId> | |
<version>3.9.4</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.jbehave</groupId> | |
<artifactId>jbehave-spring</artifactId> | |
<version>3.9.4</version> | |
<scope>test</scope> | |
<exclusions> | |
<exclusion> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context</artifactId> | |
</exclusion> | |
<exclusion> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>com.ninja-squad</groupId> | |
<artifactId>DbSetup</artifactId> | |
<version>1.3.0</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>io.fabric8</groupId> | |
<artifactId>docker-maven-plugin</artifactId> | |
<version>0.15.16</version> | |
<configuration> | |
<verbose>true</verbose> | |
<images> | |
<image> | |
<name>springbatch-sample:latest</name> | |
<build> | |
<dockerFile>Dockerfile</dockerFile> | |
<assembly> | |
<descriptorRef>artifact</descriptorRef> | |
</assembly> | |
</build> | |
</image> | |
</images> | |
</configuration> | |
<executions> | |
<execution> | |
<id>build</id> | |
<phase>package</phase> | |
<goals> | |
<goal>build</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |