-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BF] added last fixes to prepare release
- Loading branch information
1 parent
c6bb5fb
commit 018ea4c
Showing
6 changed files
with
295 additions
and
302 deletions.
There are no files selected for viewing
226 changes: 114 additions & 112 deletions
226
archetype-fitgoodies-quickstart/src/main/resources/archetype-resources/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,118 @@ | ||
#set($dollar = '$') | ||
<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> | ||
<groupId>\${groupId}</groupId> | ||
<artifactId>\${artifactId}</artifactId> | ||
<version>\${version}</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>3.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.14</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.cologneintelligence</groupId> | ||
<artifactId>fitgoodies</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.derby</groupId> | ||
<artifactId>derby</artifactId> | ||
<version>10.1.3.1</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<inherited>true</inherited> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
<optimize>true</optimize> | ||
<debug>true</debug> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.derby</groupId> | ||
<artifactId>derby</artifactId> | ||
<version>10.1.3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.14</version> | ||
</dependency> | ||
</dependencies> | ||
<executions> | ||
<execution> | ||
<id>default</id> | ||
<phase>integration-test</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<inherited>true</inherited> | ||
<configuration> | ||
<tasks> | ||
<property name="tests" value="\${basedir}/src/test/fixtures" /> | ||
<property name="target" | ||
value="\${project.build.directory}/fit" /> | ||
<property name="reltarget" value="fit" /> | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>${groupId}</groupId> | ||
<artifactId>${artifactId}</artifactId> | ||
<version>${version}</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>3.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.14</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.cologneintelligence</groupId> | ||
<artifactId>fitgoodies</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.derby</groupId> | ||
<artifactId>derby</artifactId> | ||
<version>10.1.3.1</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<inherited>true</inherited> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
<optimize>true</optimize> | ||
<debug>true</debug> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.derby</groupId> | ||
<artifactId>derby</artifactId> | ||
<version>10.1.3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.14</version> | ||
</dependency> | ||
</dependencies> | ||
<executions> | ||
<execution> | ||
<id>default</id> | ||
<phase>integration-test</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<inherited>true</inherited> | ||
<configuration> | ||
<tasks> | ||
<property name="tests" value="${dollar}{basedir}/src/test/fixtures" /> | ||
<property name="target" | ||
value="${dollar}{project.build.directory}/fit" /> | ||
<property name="reltarget" value="fit" /> | ||
|
||
<copy todir="\${target}"> | ||
<fileset dir="\${tests}" erroronmissingdir="false" | ||
casesensitive="false" excludes="**/*.html" /> | ||
</copy> | ||
<mkdir dir="${dollar}{target}" /> | ||
<copy todir="${dollar}{target}"> | ||
<fileset dir="${dollar}{tests}" erroronmissingdir="false" | ||
casesensitive="false" excludes="**/*.html" /> | ||
</copy> | ||
|
||
<java | ||
classname="de.cologneintelligence.fitgoodies.runners.FitRunner" | ||
dir="\${project.build.directory}" fork="true" | ||
failonerror="true"> | ||
<classpath> | ||
<path refid="maven.test.classpath" /> | ||
</classpath> | ||
<arg value="-s" /> | ||
<arg value="\${tests}" /> | ||
<arg value="-d" /> | ||
<arg value="\${reltarget}" /> | ||
<arg value="-e" /> | ||
<arg value="utf-8" /> | ||
</java> | ||
</tasks> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>selenium-maven-plugin</artifactId> | ||
<version>2.3</version> | ||
<executions> | ||
<execution> | ||
<phase>pre-integration-test</phase> | ||
<goals> | ||
<goal>start-server</goal> | ||
</goals> | ||
<configuration> | ||
<background>true</background> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<java | ||
classname="de.cologneintelligence.fitgoodies.runners.FitRunner" | ||
dir="${dollar}{project.build.directory}" fork="true" | ||
failonerror="true"> | ||
<classpath> | ||
<path refid="maven.test.classpath" /> | ||
</classpath> | ||
<arg value="-s" /> | ||
<arg value="${dollar}{tests}" /> | ||
<arg value="-d" /> | ||
<arg value="${dollar}{reltarget}" /> | ||
<arg value="-e" /> | ||
<arg value="utf-8" /> | ||
</java> | ||
</tasks> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>selenium-maven-plugin</artifactId> | ||
<version>2.3</version> | ||
<executions> | ||
<execution> | ||
<phase>pre-integration-test</phase> | ||
<goals> | ||
<goal>start-server</goal> | ||
</goals> | ||
<configuration> | ||
<background>true</background> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 0 additions & 113 deletions
113
.../src/main/java/de/cologneintelligence/fitgoodies/file/builder/FixtureFileListBuilder.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.