This is an automated email from the ASF dual-hosted git repository.
cziegeler 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 51a85415 Exclude native files from rat, use simple fsprovider
51a85415 is described below
commit 51a854157682eb332033eae71ff48c4d347e21c5
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Wed Oct 30 17:20:20 2024 -0700
Exclude native files from rat, use simple fsprovider
---
sling-mini/pom.xml | 11 ++++++++++-
sling-mini/src/main/features/app.json | 4 ++--
2 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/sling-mini/pom.xml b/sling-mini/pom.xml
index 7aafe867..b20062cf 100644
--- a/sling-mini/pom.xml
+++ b/sling-mini/pom.xml
@@ -41,7 +41,7 @@
<plugin>
<groupId>org.apache.sling</groupId>
<artifactId>slingfeature-maven-plugin</artifactId>
- <version>1.8.4</version>
+ <version>1.9.0</version>
<extensions>true</extensions>
<executions>
<execution>
@@ -164,6 +164,15 @@
</arguments>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>native/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>
diff --git a/sling-mini/src/main/features/app.json
b/sling-mini/src/main/features/app.json
index 2805473b..5c51fa74 100644
--- a/sling-mini/src/main/features/app.json
+++ b/sling-mini/src/main/features/app.json
@@ -9,7 +9,7 @@
"start-order":"20"
},
{
-
"id":"org.apache.sling:org.apache.sling.sfsresourceprovider:0.0.1-SNAPSHOT",
+
"id":"org.apache.sling:org.apache.sling.fsresource.simple:1.0.0-SNAPSHOT",
"start-order":"20"
},
{
@@ -18,7 +18,7 @@
}
],
"configurations":{
- "org.apache.sling.sfsresource.impl.SFSResourceProvider~files":{
+ "org.apache.sling.simplefsprovider.FsResourceProvider~files":{
"provider.root":"/content/docs",
"provider.file":"$[prop:SOURCE_DIR;default=/tmp/docs]"
},