You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@htrace.apache.org by cm...@apache.org on 2014/12/06 02:45:36 UTC

incubator-htrace git commit: HTRACE-10. Fix Apache rat issues with the HTrace build (cmccabe)

Repository: incubator-htrace
Updated Branches:
  refs/heads/master 192595391 -> 5e90bce1b


HTRACE-10. Fix Apache rat issues with the HTrace build (cmccabe)


Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/5e90bce1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/5e90bce1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/5e90bce1

Branch: refs/heads/master
Commit: 5e90bce1b53e6324c766d236b5f7c6fe2eb9cce8
Parents: 1925953
Author: Colin Patrick Mccabe <cm...@cloudera.com>
Authored: Fri Dec 5 17:11:11 2014 -0800
Committer: Colin Patrick Mccabe <cm...@cloudera.com>
Committed: Fri Dec 5 17:16:04 2014 -0800

----------------------------------------------------------------------
 .gitignore |  2 ++
 pom.xml    | 14 +++++++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/5e90bce1/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index a3b1b3e..58aa24d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,5 @@
 *~
 *.swp
 dependency-reduced-pom.xml
+htrace-core/src/go/bin
+htrace-core/src/go/pkg

http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/5e90bce1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 067a7a9..18ca742 100644
--- a/pom.xml
+++ b/pom.xml
@@ -121,13 +121,17 @@ language governing permissions and limitations under the License. -->
           </executions>
           <configuration>
             <excludes>
-              <!--  exclude source control files -->
-              <exclude>.git/**</exclude>
-              <exclude>.svn/**</exclude>
               <exclude>**/.settings/**</exclude>
+              <exclude>**/d3.min.js</exclude>
+              <exclude>**/dependency-reduced-pom.xml</exclude>
               <exclude>**/generated/**</exclude>
-              <!-- Readme -->
-              <exclue>README.md</exclue>
+              <exclude>*/.settings/*</exclude>
+              <exclude>*/generated/*</exclude>
+              <exclude>*/gopkg.in/*</exclude>
+              <exclude>.git/**</exclude>
+              <exclude>htrace-core/src/go/bin/*</exclude>
+              <exclude>htrace-core/src/go/pkg/*</exclude>
+              <exclue>**/README.md</exclue>
             </excludes>
           </configuration>
         </plugin>