Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion assemblies/cdf-rca/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@
<artifactId>cdf-pentaho-rca</artifactId>
<version>${project.version}</version>
</dependency>
<!--
Not consumed on the classpath. Declared solely so that the reactor
creates a dependency edge on pentaho-cdf and orders it before this
module. The maven-dependency-plugin <artifactItems> below are resolved
straight from the repositories at execution time and are invisible to
the reactor, which makes parallel builds (-T) race against the
pentaho-cdf assembly. See the unpack-plugins execution.
-->
<dependency>
<groupId>pentaho</groupId>
<artifactId>pentaho-cdf</artifactId>
<version>${project.version}</version>
<type>zip</type>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand All @@ -40,7 +55,7 @@
<executions>
<execution>
<id>unpack-plugins</id>
<phase>process-sources</phase>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
Expand Down