Repository: incubator-nifi Updated Branches: refs/heads/develop 13578e2d4 -> df9529c56
[NIFI-194] get mvn clean package working correctly - Removed phase definition for maven-source-plugin - Changed goal to jar-no-fork to prevent life cylcle forking - Removed version ranges. Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/3b4a7a63 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/3b4a7a63 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/3b4a7a63 Branch: refs/heads/develop Commit: 3b4a7a63c61ccfd303e7187319b439e85bcc6e58 Parents: 0d8da14 Author: Karl-Heinz Marbaise <[email protected]> Authored: Mon Dec 22 21:48:35 2014 +0100 Committer: Karl-Heinz Marbaise <[email protected]> Committed: Mon Dec 22 21:48:35 2014 +0100 ---------------------------------------------------------------------- nar-bundles/framework-bundle/framework/client-dto/pom.xml | 3 +-- nar-bundles/pom.xml | 8 ++++---- pom.xml | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/3b4a7a63/nar-bundles/framework-bundle/framework/client-dto/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/framework-bundle/framework/client-dto/pom.xml b/nar-bundles/framework-bundle/framework/client-dto/pom.xml index 4b210da..924e83a 100644 --- a/nar-bundles/framework-bundle/framework/client-dto/pom.xml +++ b/nar-bundles/framework-bundle/framework/client-dto/pom.xml @@ -35,9 +35,8 @@ <executions> <execution> <id>attach-sources</id> - <phase>verify</phase> <goals> - <goal>jar</goal> + <goal>jar-no-fork</goal> </goals> </execution> </executions> http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/3b4a7a63/nar-bundles/pom.xml ---------------------------------------------------------------------- diff --git a/nar-bundles/pom.xml b/nar-bundles/pom.xml index 01f7207..4985cdc 100644 --- a/nar-bundles/pom.xml +++ b/nar-bundles/pom.xml @@ -97,25 +97,25 @@ <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-api</artifactId> - <version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> + <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-runtime</artifactId> - <version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> + <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-nar</artifactId> - <version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> + <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.nifi</groupId> <artifactId>nifi-properties</artifactId> - <version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> + <version>${project.version}</version> <scope>provided</scope> </dependency> </dependencies> http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/3b4a7a63/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9607386..8d19fda 100644 --- a/pom.xml +++ b/pom.xml @@ -946,4 +946,4 @@ </plugin> </plugins> </build> -</project> \ No newline at end of file +</project>
