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

incubator-tamaya git commit: TAMAYA-53 Enabled external FindBugs configuration for all modules.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master af21ac43e -> 6908442fd


TAMAYA-53 Enabled external FindBugs configuration for all modules.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/6908442f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/6908442f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/6908442f

Branch: refs/heads/master
Commit: 6908442fd543b6612f67ca7bf32ae79e8f7073ce
Parents: af21ac4
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Fri Jan 16 16:56:53 2015 +0100
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Fri Jan 16 16:56:53 2015 +0100

----------------------------------------------------------------------
 java8/pom.xml   | 15 +++++++++++++++
 modules/pom.xml | 15 +++++++++++++++
 2 files changed, 30 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/6908442f/java8/pom.xml
----------------------------------------------------------------------
diff --git a/java8/pom.xml b/java8/pom.xml
index 291b84b..a338b42 100644
--- a/java8/pom.xml
+++ b/java8/pom.xml
@@ -57,6 +57,21 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>findbugs-maven-plugin</artifactId>
+                <configuration>
+                    <excludeFilterFile>findbugs/findbugs-exclude.xml</excludeFilterFile>
+                </configuration>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.tamaya</groupId>
+                        <artifactId>buildconfigurations</artifactId>
+                        <version>${project.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+
         </plugins>
     </build>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/6908442f/modules/pom.xml
----------------------------------------------------------------------
diff --git a/modules/pom.xml b/modules/pom.xml
index 10bca33..18345ed 100644
--- a/modules/pom.xml
+++ b/modules/pom.xml
@@ -64,6 +64,21 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>findbugs-maven-plugin</artifactId>
+                <configuration>
+                    <excludeFilterFile>findbugs/findbugs-exclude.xml</excludeFilterFile>
+                </configuration>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.tamaya</groupId>
+                        <artifactId>buildconfigurations</artifactId>
+                        <version>${project.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+
         </plugins>
     </build>