Skip to content

Instantly share code, notes, and snippets.

@jeffjensen
jeffjensen / pom.xml
Created January 19, 2015 04:52
Example client module showing Serenity dependency issues via maven-enforcer-plugin. Just run mvn compile
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.1.RELEASE</version>
</parent>
@jeffjensen
jeffjensen / pom.xml
Created February 21, 2015 18:50
Serenity exposed dependencies checker
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- is there a Serenity parent to inherit current/latest dep versions from? -->
<groupId>net.serenity-bdd</groupId>
<artifactId>serenity-dependency-enforcer</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>