This is an automated email from the ASF dual-hosted git repository. colegreer pushed a commit to branch 3.6-dev in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 261e1f40a4729ecef6258aa98fcc359e6d600e55 Author: Cole-Greer <[email protected]> AuthorDate: Fri Oct 4 13:03:28 2024 -0700 CTR Update rat ignore list and JS mvn clean config In light of the typescript integration in TINKERPOP-2027, the rat ignore list and mvn clean config were updated in later branches. This CTR is backporting those changes to avoid issues when jumping between old and new branches. --- gremlin-javascript/pom.xml | 7 +++++++ pom.xml | 1 + 2 files changed, 8 insertions(+) diff --git a/gremlin-javascript/pom.xml b/gremlin-javascript/pom.xml index 15f45146c7..d87570f371 100644 --- a/gremlin-javascript/pom.xml +++ b/gremlin-javascript/pom.xml @@ -135,6 +135,13 @@ limitations under the License. </goals> </execution> </executions> + <configuration> + <filesets> + <fileset> + <directory>src/main/javascript/gremlin-javascript/build</directory> + </fileset> + </filesets> + </configuration> </plugin> <plugin> <groupId>com.github.eirslett</groupId> diff --git a/pom.xml b/pom.xml index c4f5ecd62c..315fda8aed 100644 --- a/pom.xml +++ b/pom.xml @@ -493,6 +493,7 @@ limitations under the License. <exclude>**/node/**</exclude> <exclude>**/node_modules/**</exclude> <exclude>**/npm-debug.log</exclude> + <exclude>**/build/**</exclude> <!-- javascript docs/lib --> <exclude>**/doc/**</exclude> <exclude>**/lib/**</exclude>
