<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> <artifactId>greenpepper-core</artifactId> <packaging>jar</packaging> <name>GreenPepper Core</name> <parent> <groupId>greenpepper-open</groupId> <artifactId>greenpepper-open</artifactId> <version>2.6</version> </parent> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>greenpepper</groupId> <artifactId>greenpepper-maven-plugin</artifactId> <version>2.6</version> <configuration> <source>1.5</source> <target>1.5</target> <fixtureSourceDirectory>src/fixture/java</fixtureSourceDirectory> <fixtureOutputDirectory>target/fixture-test-classes</fixtureOutputDirectory> <specsDirectory>src/specs</specsDirectory> <reportsDirectory>target/greenpepper-reports</reportsDirectory> <systemUnderDevelopment>com.greenpepper.systemunderdevelopment.GreenPepperSystemUnderDevelopment</systemUnderDevelopment> <resources> <resource> <directory>src/fixture/resources</directory> </resource> </resources> <repositories> <repository> <type>com.greenpepper.runner.repository.GreenPepperRepository</type> <root> <![CDATA[http://www.greenpeppersoftware.com/confluence/rpc/xmlrpc?handler=greenpepper1&sut=GreenPepperOpen - Core Java&includeStyle=true]]> </root> <name>greenpepper</name> <suites> <suite>GreenPepper Confluence-GREENPEPPER</suite> </suites> </repository> </repositories> </configuration> <executions> <execution> <id>greenpepper</id> <goals> <goal>compile</goal> <goal>resources</goal> <goal>fixture-jar</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>