This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push:
new 5ec5d93bae Minor formatting changes
5ec5d93bae is described below
commit 5ec5d93bae350cd2db8d38479a8bf0ab33e2b9a4
Author: Christopher Tubbs <[email protected]>
AuthorDate: Thu Jan 8 16:30:33 2026 -0500
Minor formatting changes
* Remove markdown files and some .github folder items from the default
license header exclusions, so their license headers are automatically
maintained
* Apply build formatting changes from npx to functions.js
---
.github/CONTRIBUTING.md | 1 -
README.md | 1 -
TESTING.md | 1 -
pom.xml | 8 ++++++++
.../org/apache/accumulo/monitor/resources/js/functions.js | 8 ++++----
5 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 6f30986615..40c0f70f06 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -18,7 +18,6 @@
under the License.
-->
-
# Contributors Guide
If you believe that you have found a
[bug](https://github.com/apache/accumulo/labels/bug), please search for an
existing [issue](https://github.com/apache/accumulo/issues) to see if it has
already been reported. If you would like to add a new feature to Accumulo,
please send an email with your idea to the
[dev](mailto:[email protected]) mail list. If it's appropriate, then we
will create an issue. For simple changes, it's ok to just submit a pull
request without an issue.
diff --git a/README.md b/README.md
index fd30b18977..0ef245b13e 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,6 @@
under the License.
-->
-
[![Apache Accumulo][logo]][accumulo]
--
[![Build Status][ti]][tl] [![Maven Central][mi]][ml] [![Javadoc][ji]][jl]
[![Apache License][li]][ll]
diff --git a/TESTING.md b/TESTING.md
index 3b5211adda..96abd94da2 100644
--- a/TESTING.md
+++ b/TESTING.md
@@ -18,7 +18,6 @@
under the License.
-->
-
# Testing Apache Accumulo
This document is meant to serve as a quick reference to the automated test
suites of Accumulo.
diff --git a/pom.xml b/pom.xml
index 6e07454736..1c8b97c8c7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -739,7 +739,14 @@ under the License.
<licenseSets>
<licenseSet>
<inlineHeader>${accumulo.build.license.header}</inlineHeader>
+ <includes>
+ <!-- override some of the default exclusions -->
+ <include>**/*.md</include>
+ <include>**/.github</include>
+ <include>**/.github/**</include>
+ </includes>
<excludes combine.children="append">
+ <exclude>**/.github/ISSUE_TEMPLATE/**</exclude>
<exclude>**/DEPENDENCIES</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/NOTICE</exclude>
@@ -756,6 +763,7 @@ under the License.
<css>SLASHSTAR_STYLE</css>
<h>SLASHSTAR_STYLE</h>
<java>SLASHSTAR_STYLE</java>
+ <md>XML_STYLE</md>
<proto>SLASHSTAR_STYLE</proto>
<thrift>SLASHSTAR_STYLE</thrift>
</mapping>
diff --git
a/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/functions.js
b/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/functions.js
index 418b0d5e3f..43ebfa53df 100644
---
a/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/functions.js
+++
b/server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/functions.js
@@ -31,10 +31,10 @@ var SIZE_SUFFIX = ['', 'K', 'M', 'G', 'T', 'P', 'E', 'Z'];
// Override Length Menu options for dataTables
if ($.fn && $.fn.dataTable) {
$.extend(true, $.fn.dataTable.defaults, {
- "lengthMenu" : [
- [ 10, 25, 50, 100, -1 ],
- [ 10, 25, 50, 100, "All" ]
- ]
+ "lengthMenu": [
+ [10, 25, 50, 100, -1],
+ [10, 25, 50, 100, "All"]
+ ]
});
}