This is an automated email from the ASF dual-hosted git repository.

enorman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git


The following commit(s) were added to refs/heads/master by this push:
     new c0c41e2b SLING-10203 remove the proposal as it is now solved by 
dependabot/renovate
c0c41e2b is described below

commit c0c41e2b9244013291393c45f49eef06f60f9fb4
Author: Eric Norman <[email protected]>
AuthorDate: Mon Mar 30 14:15:21 2026 -0700

    SLING-10203 remove the proposal as it is now solved by dependabot/renovate
---
 org-apache-sling-build-version-rules/.gitignore    | 17 ------
 org-apache-sling-build-version-rules/README.md     | 30 ----------
 org-apache-sling-build-version-rules/pom.xml       | 40 -------------
 .../org/apache/sling/build/maven-version-rules.xml | 69 ----------------------
 4 files changed, 156 deletions(-)

diff --git a/org-apache-sling-build-version-rules/.gitignore 
b/org-apache-sling-build-version-rules/.gitignore
deleted file mode 100644
index 4eadebe8..00000000
--- a/org-apache-sling-build-version-rules/.gitignore
+++ /dev/null
@@ -1,17 +0,0 @@
-target/
-.idea
-.classpath
-.metadata
-.project
-.settings
-.externalToolBuilders
-maven-eclipse.xml
-*.swp
-*.iml
-*.ipr
-*.iws
-*.bak
-.vlt
-.DS_Store
-jcr.log
-atlassian-ide-plugin.xml
diff --git a/org-apache-sling-build-version-rules/README.md 
b/org-apache-sling-build-version-rules/README.md
deleted file mode 100644
index dd6ad333..00000000
--- a/org-apache-sling-build-version-rules/README.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Apache Sling Build Version Rules
-
-This module is part of the [Apache Sling](https://sling.apache.org) project.
-
-Use this for providing configuration to the versions-maven-plugin to filter 
out some of the known bad versions that exist in central from consideration in 
the versions:display-dependency-updates report.
-
-## Usage
-Build this project and then define the configuration in your own project 
pom.xml (or parent pom) with something like this:
-
-```
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>versions-maven-plugin</artifactId>
-        <version>2.8.1</version>
-        <configuration>
-            
<rulesUri>classpath:///org/apache/sling/build/maven-version-rules.xml</rulesUri>
-        </configuration>
-        <dependencies>
-            <dependency>
-                <groupId>org.apache.sling</groupId>
-                <artifactId>org.apache.sling.build.version.rules</artifactId>
-                <version>1.0-SNAPSHOT</version>
-            </dependency>
-        </dependencies>
-      </plugin>
-    </plugins>
-  </build>
-```
diff --git a/org-apache-sling-build-version-rules/pom.xml 
b/org-apache-sling-build-version-rules/pom.xml
deleted file mode 100644
index 80c97ff0..00000000
--- a/org-apache-sling-build-version-rules/pom.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you 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.
--->
-<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.sling</groupId>
-        <artifactId>sling</artifactId>
-        <version>41</version>
-        <relativePath/>
-    </parent>
-
-    <groupId>org.apache.sling</groupId>
-    <artifactId>org.apache.sling.build.version.rules</artifactId>
-    <packaging>jar</packaging>
-    <version>1.0-SNAPSHOT</version>
-
-    <name>Apache Sling Build Version Rules</name>
-    <description>This provides the version rules for calculating potential 
dependency updates.</description>
-
-</project>
diff --git 
a/org-apache-sling-build-version-rules/src/main/resources/org/apache/sling/build/maven-version-rules.xml
 
b/org-apache-sling-build-version-rules/src/main/resources/org/apache/sling/build/maven-version-rules.xml
deleted file mode 100644
index a57ab93e..00000000
--- 
a/org-apache-sling-build-version-rules/src/main/resources/org/apache/sling/build/maven-version-rules.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one
-  or more contributor license agreements.  See the NOTICE file
-  distributed with this work for additional information
-  regarding copyright ownership.  The ASF licenses this file
-  to you 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.
--->
-<ruleset comparisonMethod="maven"
-  xmlns="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0";
-  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  
xsi:schemaLocation="http://mojo.codehaus.org/versions-maven-plugin/rule/2.0.0 
http://mojo.codehaus.org/versions-maven-plugin/xsd/rule-2.0.0.xsd";>
-  <!-- globally ignore version that look like alpha/beta/pre-release style 
versions -->
-  <ignoreVersions>
-    <ignoreVersion 
type="regex">(?i).*[-_\.](alpha|b|beta|rc|m|ea)[-_\.]?[0-9]*</ignoreVersion>
-  </ignoreVersions>
-  <rules>
-    <!-- ignore known old versions of commons-collections -->
-    <rule groupId="commons-collections" comparisonMethod="maven">
-      <ignoreVersions>
-        <ignoreVersion>20040616</ignoreVersion>
-        <ignoreVersion>20040102.233541</ignoreVersion>
-        <ignoreVersion>20031027.000000</ignoreVersion>
-        <ignoreVersion>20030418.083655</ignoreVersion>
-      </ignoreVersions>
-    </rule>
-
-    <rule groupId="commons-io" comparisonMethod="maven">
-      <ignoreVersions>
-        <!-- ignore version affected by: 
https://issues.apache.org/jira/browse/IO-734 -->
-        <ignoreVersion>2.9.0</ignoreVersion>
-      </ignoreVersions>
-    </rule>
-
-    <!-- ignore 4.x versions of servlet until jetty supports servlet 4.x -->
-    <rule groupId="javax.servlet" comparisonMethod="maven">
-      <ignoreVersions>
-        <ignoreVersion type="regex">4.*</ignoreVersion>
-      </ignoreVersions>
-    </rule>
-
-    <!-- jackrabbit uses even number for production ready releases so ignore 
the odd numbered versions -->
-    <rule groupId="org.apache.jackrabbit" comparisonMethod="maven">
-      <ignoreVersions>
-        <ignoreVersion type="regex">\d+\.\d*[13579]\.\d+</ignoreVersion>
-      </ignoreVersions>
-    </rule>
-
-    <!-- guava version numbers are a mess, so just ignore it completely -->
-    <rule groupId="com.google.guava" comparisonMethod="maven">
-      <ignoreVersions>
-        <ignoreVersion type="regex">.*</ignoreVersion>
-      </ignoreVersions>
-    </rule>
-
-  </rules>
-
-</ruleset>

Reply via email to