This is an automated email from the ASF dual-hosted git repository.
deepak pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 4890af95fa Commented out repository.apache.org in build.gradle for
testing unreleased FreeMarker versions (OFBIZ-12934)
4890af95fa is described below
commit 4890af95fa9d984b8780077eb38592d8488bb013
Author: Deepak Dixit <[email protected]>
AuthorDate: Sun Jun 15 13:02:12 2025 +0530
Commented out repository.apache.org in build.gradle for testing unreleased
FreeMarker versions (OFBIZ-12934)
Added the Apache snapshots repository (repository.apache.org) as a
commented-out block in build.gradle.
This can be used to test unreleased FreeMarker versions in the future.
Note: The repository is disabled by default, as repository.apache.org is
not intended for general-purpose Maven use.
As per https://infra.apache.org/abc, it should only be used for testing
pre-production ASF artifacts.
---
build.gradle | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index f9fbb04790..e83836d8ac 100644
--- a/build.gradle
+++ b/build.gradle
@@ -212,7 +212,10 @@ allprojects {
maven {
url
"https://artifacts.alfresco.com/nexus/content/repositories/public/"
}
-
+ /* maven {
+ // To test not released FreeMarker versions
+ url "https://repository.apache.org/content/repositories/snapshots/"
+ } */
}
}