This is an automated email from the ASF dual-hosted git repository. sseifert pushed a commit to branch feature/SLING-13020-snapshot-fix-fix in repository https://gitbox.apache.org/repos/asf/sling-parent.git
commit 1caf91b5c7ba342a9b774354ffa46c1d74318f0d Author: Stefan Seifert <[email protected]> AuthorDate: Tue Dec 2 11:56:36 2025 +0100 SLING-13020 define snapshot repos direclty in POM --- sling-parent/pom.xml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml index d778c44..c380879 100644 --- a/sling-parent/pom.xml +++ b/sling-parent/pom.xml @@ -214,6 +214,27 @@ </dependencies> </dependencyManagement> + <repositories> + <repository> + <releases> + <enabled>false</enabled> + </releases> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>https://repository.apache.org/snapshots</url> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <releases> + <enabled>false</enabled> + </releases> + <id>apache.snapshots</id> + <name>Apache Snapshot Repository</name> + <url>https://repository.apache.org/snapshots</url> + </pluginRepository> + </pluginRepositories> + <build> <pluginManagement> @@ -1174,5 +1195,4 @@ </properties> </profile> </profiles> - </project>
