product-iots/modules/analytics/features/service/org.wso2.iot.analytics.multitenancy.styles.feature/pom.xml

68 lines
2.7 KiB
XML
Raw Normal View History

2015-12-05 08:35:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!--
2016-02-11 10:03:10 +00:00
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
2015-12-05 08:35:33 +00:00
~
~ WSO2 Inc. 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
~
2016-11-08 06:55:58 +00:00
~ http://www.apache.org/licenses/LICENSE-2.0
2015-12-05 08:35:33 +00:00
~
~ 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
2016-11-08 06:55:58 +00:00
~ KIND, either express or implied. See the License for the
2015-12-05 08:35:33 +00:00
~ specific language governing permissions and limitations
~ under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2015-12-05 08:35:33 +00:00
<parent>
<groupId>org.wso2.iot</groupId>
2016-11-08 06:55:58 +00:00
<artifactId>wso2iot-analytics-multitenancy-features</artifactId>
<version>1.0.0-SNAPSHOT</version>
2015-12-05 08:35:33 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
2016-11-08 06:55:58 +00:00
<artifactId>org.wso2.iot.analytics.multitenancy.style.feature</artifactId>
2015-12-05 08:35:33 +00:00
<packaging>pom</packaging>
<name>WSO2 IoT - Analytics - Multi-tenant Style Feature</name>
2015-12-05 08:35:33 +00:00
<dependencies>
<dependency>
<groupId>org.wso2.iot</groupId>
2016-11-08 06:55:58 +00:00
<artifactId>org.wso2.iot.analytics.multitenancy.styles</artifactId>
2015-12-05 08:35:33 +00:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.wso2.maven</groupId>
<artifactId>carbon-p2-plugin</artifactId>
<executions>
<execution>
<id>p2-feature-generation</id>
<phase>package</phase>
<goals>
<goal>p2-feature-gen</goal>
</goals>
<configuration>
2016-11-08 06:55:58 +00:00
<id>org.wso2.iot.analytics.multitenancy.style</id>
<propertiesFile>../etc/feature.properties</propertiesFile>
2015-12-05 08:35:33 +00:00
<bundles>
2016-11-08 06:55:58 +00:00
<bundleDef>org.wso2.iot:org.wso2.iot.analytics.multitenancy.styles</bundleDef>
2015-12-05 08:35:33 +00:00
</bundles>
2016-11-08 06:55:58 +00:00
<importFeatures>
<importFeatureDef>org.wso2.carbon.core.ui:${carbon.kernel.version}</importFeatureDef>
</importFeatures>
2015-12-05 08:35:33 +00:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>