http://git-wip-us.apache.org/repos/asf/incubator-sdap-nexus/blob/9646e7c5/nexus-ingest/nexus-messages/build/reports/project/dependencies/js/script.js
----------------------------------------------------------------------
diff --git 
a/nexus-ingest/nexus-messages/build/reports/project/dependencies/js/script.js 
b/nexus-ingest/nexus-messages/build/reports/project/dependencies/js/script.js
deleted file mode 100644
index 7f4d9a8..0000000
--- 
a/nexus-ingest/nexus-messages/build/reports/project/dependencies/js/script.js
+++ /dev/null
@@ -1,202 +0,0 @@
-/*
- * Copyright 2013 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-function populateFooter(report) {
-    $("#gradleVersion").text(report.gradleVersion);
-    $("#generationDate").text(report.generationDate);
-}
-
-function initializeProjectPage(report) {
-    $(document).ready(function() {
-        // event handling to close the insight div
-        $('#insight').on('click', '#dismissInsight', function(event) {
-            $('#insight').fadeOut();
-            event.preventDefault();
-        });
-
-        // creates a node of a dependency tree
-        function createDependencyNode(dependency) {
-            var node = {
-                data : dependency.name,
-                state : "open",
-                attr : {'data-module' : dependency.module},
-                children : []
-            };
-            var classes = [];
-            if (dependency.alreadyRendered) {
-                classes.push('alreadyRendered');
-            }
-            if (dependency.hasConflict) {
-                classes.push('hasConflict');
-            }
-            if (!dependency.resolvable) {
-                classes.push('unresolvable');
-            }
-            if (classes.length > 0) {
-                node.attr['class'] = classes.join(' ');
-            }
-            $.each(dependency.children, function(index, dependency) {
-                var dependencyNode = createDependencyNode(dependency);
-                node.children.push(dependencyNode);
-            });
-            return node;
-        }
-
-        // finds the moduleInsight by module among the given moduleInsights 
and returns its insight
-        function findInsight(moduleInsights, module) {
-            for (var i = 0; i < moduleInsights.length; i++) {
-                if (moduleInsights[i].module == module) {
-                    return moduleInsights[i].insight;
-                }
-            }
-            return null;
-        }
-
-        // creates a node of the insight tree
-        function createInsightNode(dependency) {
-            var node = {
-                data : dependency.name + (dependency.description ? ' (' + 
dependency.description + ')' : ''),
-                state : "open",
-                attr : {},
-                children : []
-            }
-            var classes = [];
-            if (dependency.alreadyRendered) {
-                classes.push('alreadyRendered');
-            }
-            if (!dependency.resolvable) {
-                classes.push('unresolvable');
-            }
-            if (dependency.hasConflict) {
-                classes.push('hasConflict');
-            }
-            if (dependency.isLeaf) {
-                classes.push('leaf');
-            }
-            if (classes.length > 0) {
-                node.attr['class'] = classes.join(' ');
-            }
-            $.each(dependency.children, function(index, dependency) {
-                var dependencyNode = createInsightNode(dependency);
-                node.children.push(dependencyNode);
-            });
-            return node;
-        }
-
-        // generates a tree for the given module by finding the insight among 
the given moduleInsights,
-        // and displays the insight div
-        function showModuleInsight(module, moduleInsights) {
-            var $insightDiv = $('#insight');
-            $insightDiv.html('');
-            $insightDiv.append($('<i> </i>').attr('id', 
'dismissInsight').attr('title', 'Close'));
-            $insightDiv.append($('<h3>Insight for module 
</h3>').append(module));
-            var $tree = $('<div>').addClass('insightTree');
-            var insight = findInsight(moduleInsights, module);
-            var nodes = [];
-            $.each(insight, function(index, dependency) {
-                var dependencyNode = createInsightNode(dependency);
-                nodes.push(dependencyNode);
-            });
-            $tree.append($('<img>').attr('src', 
'throbber.gif')).append('Loading...');
-            $tree.jstree({
-                json_data : {
-                    data : nodes
-                },
-                themes : {
-                    url : 'css/tree.css',
-                    icons : false
-                },
-                plugins : ['json_data', 'themes']
-            }).bind("loaded.jstree", function (event, data) {
-                        $('li.unresolvable a').attr('title', 'This dependency 
could not be resolved');
-                        $('li.alreadyRendered a').attr('title', 'The children 
of this dependency are not displayed because they have already been displayed 
before');
-                    });
-            $insightDiv.append($tree);
-            $tree.on('click', 'a', function(event) {
-                event.preventDefault();
-            });
-            $insightDiv.fadeIn();
-        }
-
-        // generates the configuration dependeny trees
-        var $dependencies = $('#dependencies');
-        var project = report.project;
-
-        $dependencies.append($('<h2/>').text('Project ' + project.name));
-        if (project.description) {
-            
$dependencies.append($('<p>').addClass('projectDescription').text(project.name));
-        }
-
-        $.each(project.configurations, function(index, configuration) {
-            var $configurationDiv = $('<div/>').addClass('configuration');
-            var $configurationTitle = 
$('<h3/>').addClass('closed').append($('<ins/>')).append(configuration.name);
-            if (configuration.description) {
-                $configurationTitle.append(' - 
').append($('<span/>').addClass('configurationDescription').text(configuration.description));
-            }
-            $configurationDiv.append($configurationTitle);
-
-            var $contentDiv = 
$('<div/>').addClass('configurationContent').hide();
-            var $tree = $('<div>').addClass('dependencyTree');
-            $contentDiv.append($tree);
-            if (configuration.dependencies && 
configuration.dependencies.length > 0) {
-                var nodes = [];
-                $.each(configuration.dependencies, function(index, dependency) 
{
-                    var dependencyNode = createDependencyNode(dependency);
-                    nodes.push(dependencyNode);
-                });
-                $tree.append($('<img>').attr('src', 
'throbber.gif')).append('Loading...');
-                $tree.jstree({
-                    json_data : {
-                        data : nodes
-                    },
-                    themes : {
-                        url : 'css/tree.css',
-                        icons : false
-                    },
-                    plugins : ['json_data', 'themes']
-                }).bind("loaded.jstree", function (event, data) {
-                            $('li.unresolvable a').attr('title', 'This 
dependency could not be resolved');
-                            $('li.alreadyRendered a').attr('title', 'The 
children of this dependency are not displayed because they have already been 
displayed before');
-                        });
-            }
-            else {
-                $tree.append($('<p/>').text("No dependency"));
-            }
-
-            $tree.on('click', 'a', function(event) {
-                event.preventDefault();
-                var module = $(this).closest('li').attr('data-module');
-                showModuleInsight(module, configuration.moduleInsights);
-            });
-
-            $configurationDiv.append($contentDiv);
-            $dependencies.append($configurationDiv);
-        });
-
-        // allows the titles of each dependency tree to toggle the visibility 
of their tree
-        $dependencies.on('click', 'h3', function(event) {
-            $('div.configurationContent', $(this).parent()).slideToggle();
-            $(this).toggleClass('closed');
-        });
-
-        $('#projectBreacrumb').text(project.name);
-        populateFooter(report);
-    });
-}
-
-if (window.projectDependencyReport) {
-    initializeProjectPage(window.projectDependencyReport);
-}

http://git-wip-us.apache.org/repos/asf/incubator-sdap-nexus/blob/9646e7c5/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.html
----------------------------------------------------------------------
diff --git 
a/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.html 
b/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.html
deleted file mode 100644
index c6f8578..0000000
--- a/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-<html>
-       <head>
-               <meta http-equiv="Content-Type" content="text/html; 
charset=utf-8"/>
-               <meta http-equiv="x-ua-compatible" content="IE=edge"/>
-               <link rel="stylesheet" type="text/css" 
href="css/base-style.css"/>
-               <link rel="stylesheet" type="text/css" href="css/style.css"/>
-               <script src="js/jquery.min-1.11.0.js" charset="utf-8">
-               </script>
-               <script src="js/jquery.jstree.js" charset="utf-8">
-               </script>
-               <script src="root.js" charset="utf-8">
-               </script>
-               <script src="js/script.js" charset="utf-8">
-               </script>
-               <title>Dependency reports
-               </title>
-       </head>
-       <body>
-               <div id="content">
-                       <h1>Dependency Report
-                       </h1>
-                       <div class="breadcrumbs">
-                               <a href="index.html">Projects
-                               </a> &gt; 
-                               <span id="projectBreacrumb"/>
-                       </div>
-                       <div id="insight">
-                       </div>
-                       <div id="dependencies">
-                       </div>
-                       <div id="footer">
-                               <p>Generated by 
-                                       <a href="http://www.gradle.org";>Gradle 
2.12
-                                       </a> at Sep 11, 2017 11:06:29 AM
-                               </p>
-                       </div>
-               </div>
-       </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-sdap-nexus/blob/9646e7c5/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.js
----------------------------------------------------------------------
diff --git 
a/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.js 
b/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.js
deleted file mode 100644
index db39485..0000000
--- a/nexus-ingest/nexus-messages/build/reports/project/dependencies/root.js
+++ /dev/null
@@ -1 +0,0 @@
-var projectDependencyReport = {"gradleVersion":"Gradle 
2.12","generationDate":"Mon Sep 11 11:06:29 PDT 
2017","project":{"name":"nexus-messages","description":null,"configurations":[{"name":"archives","description":"Configuration
 for archive 
artifacts.","dependencies":[],"moduleInsights":[]},{"name":"compile","description":"Dependencies
 for source set 
'main'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"compile","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"compileClasspath","description":"Compile
 classpath for source set 
'main'.","dependencies":[{"module":"com.google.protobuf:protob
 
uf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"compileClasspath","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"compileOnly","description":"Compile
 dependencies for source set 
'main'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"compileOnly","resolvable":true,"hasConflict":false,"alreadyRendered":
 
false,"isLeaf":true,"children":[]}]}]}]},{"name":"default","description":"Configuration
 for default 
artifacts.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"default","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"protobuf","description":null,"dependencies":[],"moduleInsights":[]},{"name":"protobufToolsLocator_protoc","description":null,"dependencies":[{"module":"com.google.protobuf:protoc","name":"com.google.protobuf:protoc:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protoc","insight":[{"name":"c
 
om.google.protobuf:protoc:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"protobufToolsLocator_protoc","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"runtime","description":"Runtime
 dependencies for source set 
'main'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"runtime","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"testCompile","description":"Dependencies
 for source set 
'test'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1"
 
,"resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"testCompile","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"testCompileClasspath","description":"Compile
 classpath for source set 
'test'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"testCompileClasspath","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name
 ":"testCompileOnly","description":"Compile dependencies for source set 
'test'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-java","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"testCompileOnly","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]},{"name":"testProtobuf","description":null,"dependencies":[],"moduleInsights":[]},{"name":"testRuntime","description":"Runtime
 dependencies for source set 
'test'.","dependencies":[{"module":"com.google.protobuf:protobuf-java","name":"com.google.protobuf:protobuf-java:2.6.1","resolvable":true,"hasConflict":false,"alreadyRendered":false,"children":[]}],"moduleInsights":[{"module":"com.google.protobuf:protobuf-j
 
ava","insight":[{"name":"com.google.protobuf:protobuf-java:2.6.1","description":null,"resolvable":true,"hasConflict":false,"children":[{"name":"testRuntime","resolvable":true,"hasConflict":false,"alreadyRendered":false,"isLeaf":true,"children":[]}]}]}]}]}};
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-sdap-nexus/blob/9646e7c5/nexus-ingest/nexus-messages/build/reports/project/properties.txt
----------------------------------------------------------------------
diff --git a/nexus-ingest/nexus-messages/build/reports/project/properties.txt 
b/nexus-ingest/nexus-messages/build/reports/project/properties.txt
deleted file mode 100644
index 881ab7b..0000000
--- a/nexus-ingest/nexus-messages/build/reports/project/properties.txt
+++ /dev/null
@@ -1,128 +0,0 @@
-
-------------------------------------------------------------
-Root project
-------------------------------------------------------------
-
-allprojects: [root project 'nexus-messages']
-ant: org.gradle.api.internal.project.DefaultAntBuilder@3ad50290
-antBuilderFactory: 
org.gradle.api.internal.project.DefaultAntBuilderFactory@590029cc
-archivesBaseName: nexus-messages
-artifacts: 
org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@7b001246
-asDynamicObject: org.gradle.api.internal.ExtensibleDynamicObject@180d9997
-assemble: task ':assemble'
-baseClassLoaderScope: 
org.gradle.api.internal.initialization.DefaultClassLoaderScope@a5ed984
-buildDependents: task ':buildDependents'
-buildDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build
-buildFile: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build.gradle
-buildNeeded: task ':buildNeeded'
-buildScriptSource: org.gradle.groovy.scripts.UriScriptSource@52c8cf4a
-buildscript: 
org.gradle.api.internal.initialization.DefaultScriptHandler@29a17577
-check: task ':check'
-childProjects: {}
-class: class org.gradle.api.internal.project.DefaultProject_Decorated
-classLoaderScope: 
org.gradle.api.internal.initialization.DefaultClassLoaderScope@5d1480f5
-classes: task ':classes'
-clean: task ':clean'
-compileJava: task ':compileJava'
-compileTestJava: task ':compileTestJava'
-components: [org.gradle.api.internal.java.JavaLibrary@21faf02a]
-conf2ScopeMappings: 
org.gradle.api.publication.maven.internal.pom.DefaultConf2ScopeMappingContainer@8e909257
-configurationActions: 
org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@355cc9c0
-configurations: [configuration ':archives', configuration ':compile', 
configuration ':compileClasspath', configuration ':compileOnly', configuration 
':default', configuration ':protobuf', configuration 
':protobufToolsLocator_protoc', configuration ':runtime', configuration 
':testCompile', configuration ':testCompileClasspath', configuration 
':testCompileOnly', configuration ':testProtobuf', configuration ':testRuntime']
-convention: org.gradle.api.internal.plugins.DefaultConvention@17f418d1
-defaultArtifacts: 
org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@6e9e21f2
-defaultTasks: []
-deferredProjectConfiguration: 
org.gradle.api.internal.project.DeferredProjectConfiguration@1893f7ab
-dependencies: 
org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@4bd22fb0
-dependencyCacheDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/dependency-cache
-dependencyCacheDirName: dependency-cache
-dependencyReport: task ':dependencyReport'
-depth: 0
-description: null
-distDirectory: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/distrobution
-distsDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/distributions
-distsDirName: distributions
-docsDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/docs
-docsDirName: docs
-ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@7c57848b
-extensions: org.gradle.api.internal.plugins.DefaultConvention@17f418d1
-extractIncludeProto: task ':extractIncludeProto'
-extractIncludeTestProto: task ':extractIncludeTestProto'
-extractProto: task ':extractProto'
-extractTestProto: task ':extractTestProto'
-fileOperations: org.gradle.api.internal.file.DefaultFileOperations@6359bb42
-fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@64f0362d
-genDirectory: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/gen
-generatePomFileForMavenJavaPublication: task 
':generatePomFileForMavenJavaPublication'
-generateProto: task ':generateProto'
-generateTestProto: task ':generateTestProto'
-gradle: build 'nexus-messages'
-group: org.nasa.jpl.nexus
-htmlDependencyReport: task ':htmlDependencyReport'
-inheritedScope: 
org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@3e852aac
-install: task ':install'
-jar: task ':jar'
-javadoc: task ':javadoc'
-libsDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/libs
-libsDirName: libs
-logger: 
org.gradle.logging.internal.slf4j.OutputEventListenerBackedLogger@34e667fd
-logging: org.gradle.logging.internal.DefaultLoggingManager@7eb6822b
-mavenPomDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/poms
-modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@509ba514
-modelSchemaStore: 
org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@426bb8e6
-module: org.gradle.api.internal.artifacts.ProjectBackedModule@37a6f6a0
-name: nexus-messages
-osdetector: com.google.gradle.osdetector.OsDetectorExtension_Decorated@35bfa074
-parent: null
-parentIdentifier: null
-path: :
-pluginManager: 
org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@22782c25
-plugins: [org.gradle.api.plugins.HelpTasksPlugin@34a3975e, 
org.gradle.language.base.plugins.LifecycleBasePlugin@5755195c, 
org.gradle.api.plugins.BasePlugin@51529a58, 
org.gradle.api.plugins.ReportingBasePlugin@22d2e496, 
org.gradle.platform.base.plugins.ComponentBasePlugin@5a34f2ae, 
org.gradle.language.base.plugins.LanguageBasePlugin@269151f1, 
org.gradle.platform.base.plugins.BinaryBasePlugin@245f195b, 
org.gradle.api.plugins.JavaBasePlugin@68468161, 
org.gradle.api.plugins.JavaPlugin@b82466a, 
com.google.gradle.osdetector.OsDetectorPlugin@21920c0a, 
com.google.protobuf.gradle.ProtobufPlugin@6208f25, 
org.gradle.api.plugins.MavenPlugin@22751cdc, 
org.gradle.api.publish.plugins.PublishingPlugin@12c940d0, 
org.gradle.api.publish.maven.plugins.MavenPublishPlugin@3cece406, 
org.gradle.api.plugins.ProjectReportsPlugin@5b3d0ef5]
-processOperations: org.gradle.api.internal.file.DefaultFileOperations@6359bb42
-processResources: task ':processResources'
-processTestResources: task ':processTestResources'
-project: root project 'nexus-messages'
-projectDir: /Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages
-projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
-projectEvaluator: 
org.gradle.configuration.project.LifecycleProjectEvaluator@6815459b
-projectRegistry: 
org.gradle.api.internal.project.DefaultProjectRegistry@65abfe88
-projectReport: task ':projectReport'
-projectReportDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/reports/project
-projectReportDirName: project
-projects: [root project 'nexus-messages']
-properties: {...}
-propertyReport: task ':propertyReport'
-protobuf: com.google.protobuf.gradle.ProtobufConfigurator@2d5f4e49
-publish: task ':publish'
-publishToMavenLocal: task ':publishToMavenLocal'
-publishing: 
org.gradle.api.publish.internal.DefaultPublishingExtension_Decorated@2cc9955e
-pythonBuildDirPath: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/python/nexusproto
-reporting: org.gradle.api.reporting.ReportingExtension_Decorated@4e2556c3
-reportsDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/reports
-repositories: 
[org.gradle.api.internal.artifacts.repositories.DefaultMavenArtifactRepository_Decorated@cdefb01]
-resources: org.gradle.api.internal.resources.DefaultResourceHandler@36bb0bac
-rootDir: /Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages
-rootProject: root project 'nexus-messages'
-scriptHandlerFactory: 
org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@61413634
-scriptPluginFactory: 
org.gradle.configuration.DefaultScriptPluginFactory@5b6e791
-serviceRegistryFactory: 
org.gradle.internal.service.scopes.ProjectScopeServices$4@7ecb12d5
-services: ProjectScopeServices
-sourceCompatibility: 1.8
-sourceSets: [source set 'main', source set 'test']
-standardOutputCapture: 
org.gradle.logging.internal.DefaultLoggingManager@7eb6822b
-state: project state 'EXECUTED'
-status: integration
-subprojects: []
-tarPython: task ':tarPython'
-targetCompatibility: 1.8
-taskReport: task ':taskReport'
-tasks: [task ':assemble', task ':buildDependents', task ':buildNeeded', task 
':check', task ':classes', task ':clean', task ':compileJava', task 
':compileTestJava', task ':dependencyReport', task ':extractIncludeProto', task 
':extractIncludeTestProto', task ':extractProto', task ':extractTestProto', 
task ':generatePomFileForMavenJavaPublication', task ':generateProto', task 
':generateTestProto', task ':htmlDependencyReport', task ':install', task 
':jar', task ':javadoc', task ':processResources', task 
':processTestResources', task ':projectReport', task ':propertyReport', task 
':publish', task ':publishToMavenLocal', task ':tarPython', task ':taskReport', 
task ':test', task ':testClasses', task ':wrapper', task ':writeNewPom']
-test: task ':test'
-testClasses: task ':testClasses'
-testReportDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/reports/tests
-testReportDirName: tests
-testResultsDir: 
/Users/greguska/githubprojects/nexus/nexus-ingest/nexus-messages/build/test-results
-testResultsDirName: test-results
-version: 1.0.0.RELEASE
-wrapper: task ':wrapper'
-writeNewPom: task ':writeNewPom'

http://git-wip-us.apache.org/repos/asf/incubator-sdap-nexus/blob/9646e7c5/nexus-ingest/nexus-messages/build/reports/project/tasks.txt
----------------------------------------------------------------------
diff --git a/nexus-ingest/nexus-messages/build/reports/project/tasks.txt 
b/nexus-ingest/nexus-messages/build/reports/project/tasks.txt
deleted file mode 100644
index 2a2bcbe..0000000
--- a/nexus-ingest/nexus-messages/build/reports/project/tasks.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-
-------------------------------------------------------------
-All tasks runnable from root project
-------------------------------------------------------------
-
-Build tasks
------------
-assemble - Assembles the outputs of this project.
-build - Assembles and tests this project.
-buildDependents - Assembles and tests this project and all projects that 
depend on it.
-buildNeeded - Assembles and tests this project and all projects it depends on.
-classes - Assembles main classes.
-clean - Deletes the build directory.
-jar - Assembles a jar archive containing the main classes.
-testClasses - Assembles test classes.
-
-Build Setup tasks
------------------
-init - Initializes a new Gradle build. [incubating]
-
-Documentation tasks
--------------------
-javadoc - Generates Javadoc API documentation for the main source code.
-
-Help tasks
-----------
-buildEnvironment - Displays all buildscript dependencies declared in root 
project 'nexus-messages'.
-components - Displays the components produced by root project 
'nexus-messages'. [incubating]
-dependencies - Displays all dependencies declared in root project 
'nexus-messages'.
-dependencyInsight - Displays the insight into a specific dependency in root 
project 'nexus-messages'.
-help - Displays a help message.
-model - Displays the configuration model of root project 'nexus-messages'. 
[incubating]
-projects - Displays the sub-projects of root project 'nexus-messages'.
-properties - Displays the properties of root project 'nexus-messages'.
-tasks - Displays the tasks runnable from root project 'nexus-messages'.
-
-Publishing tasks
-----------------
-generatePomFileForMavenJavaPublication - Generates the Maven POM file for 
publication 'mavenJava'.
-publish - Publishes all publications produced by this project.
-publishMavenJavaPublicationToMavenLocal - Publishes Maven publication 
'mavenJava' to the local Maven repository.
-publishToMavenLocal - Publishes all Maven publications produced by this 
project to the local Maven cache.
-
-Reporting tasks
----------------
-projectReport - Generates a report about your project.
-
-Verification tasks
-------------------
-check - Runs all checks.
-test - Runs the unit tests.
-
-Other tasks
------------
-install - Installs the 'archives' artifacts into the local Maven repository.
-tarPython
-wrapper
-writeNewPom
-
-Rules
------
-Pattern: clean<TaskName>: Cleans the output files of a task.
-Pattern: build<ConfigurationName>: Assembles the artifacts of a configuration.
-Pattern: upload<ConfigurationName>: Assembles and uploads the artifacts 
belonging to a configuration.
-
-To see all tasks and more detail, run gradle tasks --all
-
-To see more detail about a task, run gradle help --task <task>

Reply via email to