<?xml version="1.0" encoding="UTF-8"?>
<!--

    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.
-->
<features name="karaf-jdbc-example-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.4.0">

    <feature name="karaf-jdbc-example-common" version="${project.version}">
        <bundle>mvn:org.apache.karaf.examples/karaf-jdbc-example-api/${project.version}</bundle>
    </feature>

    <feature name="karaf-jdbc-example-provider" version="${project.version}">
        <config name="org.ops4j.datasource-karaf-example">
            osgi.jdbc.driver.name=derby
            dataSourceName=jdbc/karaf-example
            url=jdbc:derby:data/example/derby;create=true
        </config>
        
        <config name="org.apache.karaf.examples.jdbc">
            ###############################################
            # Karaf Examples Registry Storage JDBC Configuration
            ###############################################
            
            # Name of the JDBC datasource
            datasource.name=jdbc/karaf-example
            
            # Dialect (type of the database)
            # The dialect is used to create the tables
            # Supported dialects are: generic, derby, mysql
            dialect=derby
        </config>
        
        <feature version="${project.version}">karaf-jdbc-example-common</feature>
        <feature>scr</feature>
        <feature>jdbc</feature>
        <feature>pax-jdbc-derby</feature>
        <feature dependency="true">aries-blueprint</feature>
        <bundle>mvn:org.apache.karaf.examples/karaf-jdbc-example-provider/${project.version}</bundle>
    </feature>

    <feature name="karaf-jdbc-example" version="${project.version}">
        <feature version="${project.version}">karaf-jdbc-example-provider</feature>
        <conditional>
            <condition>shell</condition>
            <bundle>mvn:org.apache.karaf.examples/karaf-jdbc-example-command/${project.version}</bundle>
        </conditional>
    </feature>

</features>
