You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by bi...@apache.org on 2015/01/16 13:46:16 UTC

incubator-nifi git commit: NIFI-270: fix version to be 'incubating' * nexus staging plugin. * clean up release config.

Repository: incubator-nifi
Updated Branches:
  refs/heads/nifi-270-release-setup 6b9575b8e -> 9335b46aa (forced update)


NIFI-270: fix version to be 'incubating'
*  nexus staging plugin.
* clean up release config.


Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/9335b46a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/9335b46a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/9335b46a

Branch: refs/heads/nifi-270-release-setup
Commit: 9335b46aaf0e75f3e227ec903d88c2c9d11891ec
Parents: 300952a
Author: Benson Margulies <bi...@apache.org>
Authored: Fri Jan 16 07:29:17 2015 -0500
Committer: Benson Margulies <bi...@apache.org>
Committed: Fri Jan 16 07:46:00 2015 -0500

----------------------------------------------------------------------
 maven-plugins/nar-maven-plugin/pom.xml |  4 +--
 maven-plugins/pom.xml                  | 47 ++++++++++++++++++-----------
 2 files changed, 31 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9335b46a/maven-plugins/nar-maven-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/maven-plugins/nar-maven-plugin/pom.xml b/maven-plugins/nar-maven-plugin/pom.xml
index c0236fd..af313ad 100644
--- a/maven-plugins/nar-maven-plugin/pom.xml
+++ b/maven-plugins/nar-maven-plugin/pom.xml
@@ -19,10 +19,10 @@
     <parent>
         <groupId>org.apache.nifi</groupId>
         <artifactId>maven-plugins</artifactId>
-        <version>0.0.1-SNAPSHOT</version>
+        <version>0.0.1-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>nar-maven-plugin</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
+    <version>0.0.1-incubating-SNAPSHOT</version>
     <packaging>maven-plugin</packaging>
     <name>Apache NiFi NAR Plugin</name>
     <description>Apache NiFi Nar Plugin. It is currently a part of the Apache Incubator.</description>

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9335b46a/maven-plugins/pom.xml
----------------------------------------------------------------------
diff --git a/maven-plugins/pom.xml b/maven-plugins/pom.xml
index 31d2bdc..83f3cc3 100644
--- a/maven-plugins/pom.xml
+++ b/maven-plugins/pom.xml
@@ -24,7 +24,7 @@
     </parent>
     <groupId>org.apache.nifi</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
+    <version>0.0.1-incubating-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>Apache NiFi Maven Plugins</name>
     <description>Apache NiFi Maven Plugins. It is currently a part of the Apache Incubator.</description>
@@ -166,24 +166,25 @@
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-release-plugin</artifactId>
                     <version>2.5.1</version>
+                    <configuration>
+                      <useReleaseProfile>true</useReleaseProfile>
+                      <releaseProfiles>apache-release,check-licenses</releaseProfiles>
+                      <autoVersionSubmodules>true</autoVersionSubmodules>
+                      <goals>deploy</goals>
+                      <tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat>
+                      <pushChanges>false</pushChanges>
+                      <localCheckout>true</localCheckout>
+                    </configuration>
                     <executions>
-                        <execution>
-                            <id>default</id>
-                            <goals>
-                                <goal>prepare</goal>
-                                <goal>perform</goal>
-                            </goals>
-                            <configuration>
-                                <pomFileName>platform/pom.xml</pomFileName>
-                                <arguments>-P apache-release,check-licenses</arguments>
-                                <autoVersionSubmodules>true</autoVersionSubmodules>
-                                <releaseProfiles>apache-release</releaseProfiles>
-                                <goals>deploy</goals>
-                                <tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat>
-                                <pushChanges>false</pushChanges>
-                                <localCheckout>true</localCheckout>
-                            </configuration>
-                        </execution>
+                      <execution>
+                        <id>default</id>
+                        <goals>
+                          <goal>perform</goal>
+                        </goals>
+                        <configuration>
+                          <pomFileName>maven-plugins/pom.xml</pomFileName>
+                        </configuration>
+                      </execution>
                     </executions>
                 </plugin>
                 <plugin>
@@ -201,6 +202,16 @@
             </plugins>
         </pluginManagement>       
         <plugins>
+          <plugin>
+            <groupId>org.sonatype.plugins</groupId>
+            <artifactId>nexus-staging-maven-plugin</artifactId>
+            <version>1.6.3</version>
+            <extensions>true</extensions>
+            <configuration>
+              <serverId>repository.apache.org</serverId>
+              <nexusUrl>https://repository.apache.org/</nexusUrl>
+            </configuration>
+          </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-enforcer-plugin</artifactId>