This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-distribution.git
commit 6a12a6b59417ebae9b1dee15cadb7c0d5c864c4d Author: Oliver Lietz <[email protected]> AuthorDate: Wed Sep 7 12:19:50 2016 +0000 SLING-6043 Switch from inline configurations to config files add config files and enable .config extension in Felix File Install git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1759603 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 136 +++++++++++++++++++++++++++++++ src/main/resources/etc/custom.properties | 31 +++++++ 2 files changed, 167 insertions(+) diff --git a/pom.xml b/pom.xml index 8ddc93f..6bec8b8 100644 --- a/pom.xml +++ b/pom.xml @@ -68,6 +68,142 @@ <type>xml</type> <scope>runtime</scope> </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.felix.jaas.Configuration.factory-GuestLoginModule</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.felix.jaas.Configuration.factory-LoginModuleImpl</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.felix.jaas.Configuration.factory-TokenLoginModule</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.felix.jaas.ConfigurationSpi</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.plugins.document.DocumentNodeStoreService</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.plugins.index.lucene.LuceneIndexProviderService</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.plugins.segment.SegmentNodeStoreService</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.security.authentication.AuthenticationConfigurationImpl</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.security.user.RandomAuthorizableNodeName</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.security.user.UserConfigurationImpl</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.jackrabbit.oak.spi.security.user.action.DefaultAuthorizableActionProvider</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.sling.commons.messaging.mail.internal.SimpleMailBuilder</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.sling.nosql.couchbase.client.CouchbaseClient.factory.config-default</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.sling.nosql.couchbase.resourceprovider.CouchbaseNoSqlResourceProviderFactory.factory.config-default</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.sling.nosql.mongodb.resourceprovider.MongoDBNoSqlResourceProviderFactory.factory.config-default</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.sling.resourceresolver.impl.observation.OsgiObservationBridge</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.karaf-configs</artifactId> + <version>${project.version}</version> + <classifier>org.apache.sling.samples.fling.internal.WiserSmtpService</classifier> + <type>config</type> + <scope>runtime</scope> + </dependency> </dependencies> <build> diff --git a/src/main/resources/etc/custom.properties b/src/main/resources/etc/custom.properties new file mode 100755 index 0000000..6a0831d --- /dev/null +++ b/src/main/resources/etc/custom.properties @@ -0,0 +1,31 @@ +################################################################################ +# +# 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. +# +################################################################################ + +# +# All the values specified here will override the default values given +# in config.properties. +# + +karaf.systemBundlesStartLevel=50 + +# +# You can place any customized configuration here. +# + +felix.fileinstall.filter = .*\\.(cfg|config) -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
