[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.
This commit is contained in:
Karl-Heinz Marbaise 2014-12-22 21:48:35 +01:00
parent 0d8da145bd
commit 3b4a7a63c6
3 changed files with 6 additions and 7 deletions

View File

@ -35,9 +35,8 @@
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
<phase>verify</phase>
<goals> <goals>
<goal>jar</goal> <goal>jar-no-fork</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>

View File

@ -97,25 +97,25 @@
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
<artifactId>nifi-api</artifactId> <artifactId>nifi-api</artifactId>
<version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> <version>${project.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
<artifactId>nifi-runtime</artifactId> <artifactId>nifi-runtime</artifactId>
<version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> <version>${project.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
<artifactId>nifi-nar</artifactId> <artifactId>nifi-nar</artifactId>
<version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> <version>${project.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.nifi</groupId> <groupId>org.apache.nifi</groupId>
<artifactId>nifi-properties</artifactId> <artifactId>nifi-properties</artifactId>
<version>[0.0.1-SNAPSHOT,1.0.0-SNAPSHOT)</version> <version>${project.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>