You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by pb...@apache.org on 2018/11/30 16:57:23 UTC

[3/3] phoenix git commit: PHOENIX-5037 Fix maven site reporting warnings on build

PHOENIX-5037 Fix maven site reporting warnings on build

Signed-off-by: Josh Elser <el...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/4bea60d4
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/4bea60d4
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/4bea60d4

Branch: refs/heads/4.x-cdh5.15
Commit: 4bea60d456a45dc46959077d31bb05d5a4750195
Parents: 9ab8c1e
Author: Artem Ervits <ar...@gmail.com>
Authored: Wed Nov 28 16:39:29 2018 +0000
Committer: Pedro Boado <pb...@apache.org>
Committed: Fri Nov 30 16:24:47 2018 +0000

----------------------------------------------------------------------
 phoenix-core/pom.xml  | 23 +++++++++++++----------
 phoenix-kafka/pom.xml | 22 ++++++++++++----------
 pom.xml               | 26 ++++++++++++++++----------
 3 files changed, 41 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/4bea60d4/phoenix-core/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 57fc81b..97091b9 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -44,7 +44,6 @@
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
-       <version>3.2</version>
        <dependencies>
         <dependency>
            <groupId>org.apache.maven.doxia</groupId>
@@ -62,15 +61,6 @@
            <version>1.7</version>
          </dependency>
        </dependencies>
-       <configuration>
-         <reportPlugins>
-           <plugin>
-             <groupId>org.codehaus.mojo</groupId>
-             <artifactId>findbugs-maven-plugin</artifactId>
-	         <version>2.5.2</version>
-           </plugin>
-         </reportPlugins>
-       </configuration>
      </plugin>
      <plugin>
        <artifactId>exec-maven-plugin</artifactId>
@@ -491,4 +481,17 @@
         <artifactId>disruptor</artifactId>
       </dependency>
   </dependencies>
+
+  <reporting>
+      <plugins>
+          <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-project-info-reports-plugin</artifactId>
+          </plugin>
+          <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>findbugs-maven-plugin</artifactId>
+          </plugin>
+      </plugins>
+  </reporting>
 </project>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/4bea60d4/phoenix-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-kafka/pom.xml b/phoenix-kafka/pom.xml
index 30153a6..460eb5a 100644
--- a/phoenix-kafka/pom.xml
+++ b/phoenix-kafka/pom.xml
@@ -326,7 +326,6 @@
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-site-plugin</artifactId>
-				<version>3.2</version>
 				<dependencies>
 					<dependency>
 						<groupId>org.apache.maven.doxia</groupId>
@@ -344,15 +343,6 @@
 						<version>1.7</version>
 					</dependency>
 				</dependencies>
-				<configuration>
-					<reportPlugins>
-						<plugin>
-							<groupId>org.codehaus.mojo</groupId>
-							<artifactId>findbugs-maven-plugin</artifactId>
-							<version>2.5.2</version>
-						</plugin>
-					</reportPlugins>
-				</configuration>
 			</plugin>
 
 			<!-- Setup eclipse -->
@@ -412,4 +402,16 @@
 		</plugins>
 	</build>
 
+        <reporting>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-project-info-reports-plugin</artifactId>
+                </plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>findbugs-maven-plugin</artifactId>
+                </plugin>
+            </plugins>
+        </reporting>
 </project>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/4bea60d4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1807e49..571ddb3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -506,16 +506,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.2</version>
-        <configuration>
-          <reportPlugins>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>findbugs-maven-plugin</artifactId>
-              <version>2.5.2</version>
-            </plugin>
-          </reportPlugins>
-        </configuration>
+        <version>3.7.1</version>
       </plugin>
       <plugin>
         <groupId>org.apache.rat</groupId>
@@ -1072,4 +1063,19 @@
       </build>
     </profile>
   </profiles>
+
+  <reporting>
+      <plugins>
+          <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-project-info-reports-plugin</artifactId>
+              <version>3.0.0</version>
+          </plugin>
+          <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>findbugs-maven-plugin</artifactId>
+              <version>3.0.5</version>
+          </plugin>
+      </plugins>
+  </reporting>
 </project>