-
Notifications
You must be signed in to change notification settings - Fork 5
COLA Maven Plugin
Bruno Santos edited this page Jul 23, 2015
·
1 revision
The plugin documentation can be found here
<properties>
<cola.version>0.4.0</cola.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.bmsantos</groupId>
<artifactId>cola-tests</artifactId>
<version>${cola.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.bmsantos</groupId>
<artifactId>cola-maven-plugin</artifactId>
<version>${cola.version}</version>
<configuration>
<includes>
<include>**/*Test.class</include>
</includes>
<excludes>
<exclude>**/ExcludedTest.class</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>compile-cola-tests</id>
<phase>process-test-classes</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Licensed under the Apache License, Version 2.0 (the "License").