You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2015/01/15 09:36:13 UTC

directory-kerberos git commit: Added the rat plugin configuration in 3rdParty to ignore it completely, fixing DIRKRB-137

Repository: directory-kerberos
Updated Branches:
  refs/heads/master 0b87560e5 -> 5e7a14455


Added the rat plugin configuration in 3rdParty to ignore it completely, fixing DIRKRB-137


Project: http://git-wip-us.apache.org/repos/asf/directory-kerberos/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-kerberos/commit/5e7a1445
Tree: http://git-wip-us.apache.org/repos/asf/directory-kerberos/tree/5e7a1445
Diff: http://git-wip-us.apache.org/repos/asf/directory-kerberos/diff/5e7a1445

Branch: refs/heads/master
Commit: 5e7a14455c8184bf1590fc2865345a2ff98431fe
Parents: 0b87560
Author: Emmanuel Lécharny <el...@symas.com>
Authored: Thu Jan 15 09:36:03 2015 +0100
Committer: Emmanuel Lécharny <el...@symas.com>
Committed: Thu Jan 15 09:36:03 2015 +0100

----------------------------------------------------------------------
 3rdparty/not-yet-commons-ssl/pom.xml |  2 +-
 3rdparty/pom.xml                     | 15 +++++++++++++++
 pom.xml                              | 27 ++++++++++++++-------------
 3 files changed, 30 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-kerberos/blob/5e7a1445/3rdparty/not-yet-commons-ssl/pom.xml
----------------------------------------------------------------------
diff --git a/3rdparty/not-yet-commons-ssl/pom.xml b/3rdparty/not-yet-commons-ssl/pom.xml
index e7e3359..b975ebf 100644
--- a/3rdparty/not-yet-commons-ssl/pom.xml
+++ b/3rdparty/not-yet-commons-ssl/pom.xml
@@ -16,8 +16,8 @@
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <parent>
-    <artifactId>3rdparty</artifactId>
     <groupId>org.haox</groupId>
+    <artifactId>3rdparty</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>

http://git-wip-us.apache.org/repos/asf/directory-kerberos/blob/5e7a1445/3rdparty/pom.xml
----------------------------------------------------------------------
diff --git a/3rdparty/pom.xml b/3rdparty/pom.xml
index 63eaad4..5323f4d 100644
--- a/3rdparty/pom.xml
+++ b/3rdparty/pom.xml
@@ -38,4 +38,19 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>0.11</version>
+          <configuration>
+            <skip>true</skip>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
 </project>

http://git-wip-us.apache.org/repos/asf/directory-kerberos/blob/5e7a1445/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 82e0594..acf3f8f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,6 +15,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>16</version>
+    <relativePath />
+  </parent>
+
   <groupId>org.haox</groupId>
   <artifactId>haox-all</artifactId>
   <version>1.0-SNAPSHOT</version>
@@ -80,8 +87,6 @@
           <configuration>
             <excludeSubProjects>false</excludeSubProjects>
             <excludes>
-              <!-- 3RD Party elements -->
-              <exclude>**/3rdparty/not-yet-commons-ssl/**/*</exclude>
               <!-- camellia files -->
               <exclude>**/camellia-expect-vt.txt</exclude>
               <!-- CCache files -->
@@ -103,19 +108,10 @@
               <exclude>**/*.iws</exclude>
               <!-- MANIFEST_MF_EXCLUDES -->
               <exclude>**/MANIFEST.MF</exclude>
-              <!-- Missing license header in dependency reduced pom, see http://jira.codehaus.org/browse/MSHADE-48 -->
-              <exclude>**/dependency-reduced-pom.xml</exclude>
-              <!-- LDIF_FILES_EXCLUDES -->
-              <exclude>**/*.ldif</exclude>
-              <!-- PDU_FILES_EXCLUDES -->
-              <exclude>**/*.pdu</exclude>
-              <!-- OSGI_FILES_EXCLUDES -->
-              <exclude>osgi/src/main/resources/META-INF/spring.handlers</exclude>
-              <exclude>osgi/src/main/resources/META-INF/spring.schemas</exclude>
               <!-- LOG_FILES_EXCLUDES -->
               <exclude>**/*.log</exclude>
-              <!-- BYTECODE_EXCLUDES -->
-              <exclude>**/*.bytecode</exclude>
+              <!-- 3RD_PARTY_EXCLUDES -->
+              <exclude>3rdparty/**/*</exclude>
               <!-- BMP_IMAGES_EXCLUDES -->
               <exclude>**/*.bmp</exclude>
             </excludes>
@@ -184,6 +180,11 @@
           </execution>
         </executions>
       </plugin>
+
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+      </plugin>
     </plugins>
   </build>
 </project>