This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git
The following commit(s) were added to refs/heads/main by this push:
new 7e8ff9e Remove unneeded and risky repository settings
7e8ff9e is described below
commit 7e8ff9ee880b55dbed5e85d36a8eb3b920c0d16f
Author: Christopher Tubbs <[email protected]>
AuthorDate: Tue Jun 30 21:14:06 2026 -0400
Remove unneeded and risky repository settings
* Remove repository configuration block that enables the snapshot
repository; having it enabled by default risks being banned by ASF
* It is recommended to build locally with `mvn install` for testing
* Alternatively, a user can set `-Dapache.snapshots` to enable the ASF
snapshot repository configured in the ASF parent POM, or they can set
this property in a local maven profile or in their `MAVEN_OPTS` once
they understand the risks
---
pom.xml | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/pom.xml b/pom.xml
index 39d857f..c27351c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,6 +32,7 @@
<name>Apache Accumulo Testing</name>
<description>Testing tools for Apache Accumulo</description>
<properties>
+ <!-- build locally with mvn install (recommended) or use the latest
published with -Dapache.snapshots -->
<accumulo.version>4.0.0-SNAPSHOT</accumulo.version>
<!-- prevent introduction of new compiler warnings -->
<maven.compiler.failOnWarning>true</maven.compiler.failOnWarning>
@@ -120,19 +121,6 @@
<scope>test</scope>
</dependency>
</dependencies>
- <repositories>
- <repository>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <id>apache.snapshots</id>
- <name>Apache Snapshot Repository</name>
- <url>https://repository.apache.org/content/repositories/snapshots</url>
- </repository>
- </repositories>
<build>
<pluginManagement>
<plugins>