Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WINDUP-933 Create a test resources artifact containing the test jee-app #852

Merged
merged 2 commits into from Feb 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -91,6 +91,7 @@
<module>ui</module>

<module>utils</module>
<module>test-files</module>
<module>tests</module>
<module>test-util</module>
<module>bootstrap</module>
Expand Down
4 changes: 2 additions & 2 deletions rules-tattletale/tests/pom.xml
Expand Up @@ -8,7 +8,7 @@
<version>2.5.0-SNAPSHOT</version>
</parent>
<artifactId>windup-rules-tattletale-tests</artifactId>
<name>Windup Rules - Tattletale</name>
<name>Windup Rules - Tattletale Tests</name>

<dependencies>
<!-- Addon Dependencies -->
Expand Down Expand Up @@ -58,7 +58,7 @@
<artifactId>windup-test-harness</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.jboss.windup.exec</groupId>
<artifactId>windup-exec</artifactId>
Expand Down
62 changes: 62 additions & 0 deletions test-files/pom.xml
@@ -0,0 +1,62 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.windup</groupId>
<artifactId>windup-parent</artifactId>
<version>2.5.0-SNAPSHOT</version>
</parent>

<groupId>org.jboss.windup.tests</groupId>
<artifactId>windup-test-files</artifactId>

<name>Windup Engine - Test files</name>

<dependencies>

<!-- Local Dependencies -->

<!-- Addon Dependencies -->

<!-- Test Dependencies -->

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${basedir}/jee-example-app-1.0.0.ear</file>
<type>ear</type>
<classifier>jeeapp</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>