Moved private/scala/test to private/queue-private/src/test/scala

Added junction/symbolic links so that queue-private tests will run.
This commit is contained in:
Khalid Shakir 2014-02-18 03:56:17 +08:00
parent a75043b207
commit 9b7fc37b14
1 changed files with 35 additions and 0 deletions

35
pom.xml
View File

@ -715,6 +715,14 @@
<id>unlink-public-testdata</id>
<phase>clean</phase>
</execution>
<execution>
<id>link-public-qscript</id>
<phase>process-test-resources</phase>
</execution>
<execution>
<id>unlink-public-qscript</id>
<phase>clean</phase>
</execution>
</executions>
</plugin>
<plugin>
@ -802,6 +810,33 @@
<modules>
<module>private</module>
</modules>
<build>
<plugins>
<!-- TODO: All tests require access to private. For now. -->
<plugin>
<groupId>com.pyx4j</groupId>
<artifactId>maven-junction-plugin</artifactId>
<executions>
<execution>
<id>link-private-testdata</id>
<phase>process-test-resources</phase>
</execution>
<execution>
<id>unlink-private-testdata</id>
<phase>clean</phase>
</execution>
<execution>
<id>link-private-qscript</id>
<phase>process-test-resources</phase>
</execution>
<execution>
<id>unlink-private-qscript</id>
<phase>clean</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- Collection of properties for use during package testing -->