Repository: logging-log4j2
Updated Branches:
  refs/heads/master f08b9603d -> f6e37ec10


Refactor Maven deploy plugin version into a property.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/f6e37ec1
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/f6e37ec1
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/f6e37ec1

Branch: refs/heads/master
Commit: f6e37ec1012b30536d4212bacd4aaccf2f523610
Parents: f08b960
Author: Gary Gregory <[email protected]>
Authored: Wed Jan 17 12:44:28 2018 -0700
Committer: Gary Gregory <[email protected]>
Committed: Wed Jan 17 12:44:28 2018 -0700

----------------------------------------------------------------------
 log4j-api-java9/pom.xml                              | 2 +-
 log4j-api/pom.xml                                    | 2 +-
 log4j-core-its/pom.xml                               | 2 +-
 log4j-distribution/pom.xml                           | 2 +-
 log4j-perf/pom.xml                                   | 2 +-
 log4j-samples/log4j-samples-configuration/pom.xml    | 2 +-
 log4j-samples/log4j-samples-flume-common/pom.xml     | 2 +-
 log4j-samples/log4j-samples-flume-embedded/pom.xml   | 4 ++--
 log4j-samples/log4j-samples-flume-remote/pom.xml     | 4 ++--
 log4j-samples/log4j-samples-loggerProperties/pom.xml | 2 +-
 log4j-samples/pom.xml                                | 2 +-
 pom.xml                                              | 1 +
 12 files changed, 14 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-api-java9/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-api-java9/pom.xml b/log4j-api-java9/pom.xml
index 2fbc202..183ad14 100644
--- a/log4j-api-java9/pom.xml
+++ b/log4j-api-java9/pom.xml
@@ -142,7 +142,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-api/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-api/pom.xml b/log4j-api/pom.xml
index 589d214..231cfee 100644
--- a/log4j-api/pom.xml
+++ b/log4j-api/pom.xml
@@ -243,7 +243,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
       </plugin>
     </plugins>
   </build>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-core-its/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-core-its/pom.xml b/log4j-core-its/pom.xml
index 3295cb6..9df2f43 100644
--- a/log4j-core-its/pom.xml
+++ b/log4j-core-its/pom.xml
@@ -261,7 +261,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-distribution/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-distribution/pom.xml b/log4j-distribution/pom.xml
index 1467a61..93fee9c 100644
--- a/log4j-distribution/pom.xml
+++ b/log4j-distribution/pom.xml
@@ -386,7 +386,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-perf/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-perf/pom.xml b/log4j-perf/pom.xml
index dec331e..88a2760 100644
--- a/log4j-perf/pom.xml
+++ b/log4j-perf/pom.xml
@@ -238,7 +238,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-samples/log4j-samples-configuration/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-samples/log4j-samples-configuration/pom.xml 
b/log4j-samples/log4j-samples-configuration/pom.xml
index b4a86b4..0003f37 100644
--- a/log4j-samples/log4j-samples-configuration/pom.xml
+++ b/log4j-samples/log4j-samples-configuration/pom.xml
@@ -53,7 +53,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-samples/log4j-samples-flume-common/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-samples/log4j-samples-flume-common/pom.xml 
b/log4j-samples/log4j-samples-flume-common/pom.xml
index 7643cb6..a5df8ca 100644
--- a/log4j-samples/log4j-samples-flume-common/pom.xml
+++ b/log4j-samples/log4j-samples-flume-common/pom.xml
@@ -74,7 +74,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-samples/log4j-samples-flume-embedded/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-samples/log4j-samples-flume-embedded/pom.xml 
b/log4j-samples/log4j-samples-flume-embedded/pom.xml
index 7f7a6b0..8930bb5 100644
--- a/log4j-samples/log4j-samples-flume-embedded/pom.xml
+++ b/log4j-samples/log4j-samples-flume-embedded/pom.xml
@@ -111,7 +111,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>
@@ -141,7 +141,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-samples/log4j-samples-flume-remote/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-samples/log4j-samples-flume-remote/pom.xml 
b/log4j-samples/log4j-samples-flume-remote/pom.xml
index 956e095..76e50a8 100644
--- a/log4j-samples/log4j-samples-flume-remote/pom.xml
+++ b/log4j-samples/log4j-samples-flume-remote/pom.xml
@@ -99,7 +99,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.4</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>
@@ -129,7 +129,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-samples/log4j-samples-loggerProperties/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-samples/log4j-samples-loggerProperties/pom.xml 
b/log4j-samples/log4j-samples-loggerProperties/pom.xml
index e1e495c..36c1444 100644
--- a/log4j-samples/log4j-samples-loggerProperties/pom.xml
+++ b/log4j-samples/log4j-samples-loggerProperties/pom.xml
@@ -53,7 +53,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/log4j-samples/pom.xml
----------------------------------------------------------------------
diff --git a/log4j-samples/pom.xml b/log4j-samples/pom.xml
index 33f4506..1cf5bab 100644
--- a/log4j-samples/pom.xml
+++ b/log4j-samples/pom.xml
@@ -113,7 +113,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.8.2</version>
+        <version>${deploy.plugin.version}</version>
         <configuration>
           <skip>true</skip>
         </configuration>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/f6e37ec1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 738e1a8..724f052 100644
--- a/pom.xml
+++ b/pom.xml
@@ -197,6 +197,7 @@
     <surefire.plugin.version>2.20.1</surefire.plugin.version>
     <failsafe.plugin.version>2.20.1</failsafe.plugin.version>
     <checkstyle.plugin.version>3.0.0</checkstyle.plugin.version>
+    <deploy.plugin.version>2.8.2</deploy.plugin.version>
     <rat.plugin.version>0.12</rat.plugin.version>
     <pdf.plugin.version>1.2</pdf.plugin.version>
     <cobertura.plugin.version>2.7</cobertura.plugin.version>

Reply via email to