You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by bb...@apache.org on 2019/04/30 14:42:26 UTC

[nifi-maven] branch master updated: NIFI-6248 Fixing version of nifi-maven-plugin-plugin

This is an automated email from the ASF dual-hosted git repository.

bbende pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-maven.git


The following commit(s) were added to refs/heads/master by this push:
     new fddc4df  NIFI-6248 Fixing version of nifi-maven-plugin-plugin
fddc4df is described below

commit fddc4df19962fb92198a03c2cf976b1e6f083432
Author: Bryan Bende <bb...@apache.org>
AuthorDate: Tue Apr 30 10:42:09 2019 -0400

    NIFI-6248 Fixing version of nifi-maven-plugin-plugin
---
 pom.xml | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index 35f54ab..81b329f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -342,6 +342,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-plugin-plugin</artifactId>
+                <version>3.6.0</version>
                 <executions>
                     <execution>
                         <id>default-descriptor</id>
@@ -358,13 +359,15 @@
                         <phase>generate-sources</phase>
                     </execution>
                 </executions>
-            </plugin><plugin><groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <configuration>
-                <source>8</source>
-                <target>8</target>
-            </configuration>
-        </plugin>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>8</source>
+                    <target>8</target>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <dependencies>