forked from community/product-iots
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
924 lines
59 KiB
924 lines
59 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
~
|
|
~ 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
|
|
~
|
|
~ 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.
|
|
-->
|
|
|
|
<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">
|
|
<parent>
|
|
<groupId>org.wso2.iot</groupId>
|
|
<artifactId>wso2iot-p2-profile</artifactId>
|
|
<version>3.8.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>wso2iot-analytics-p2-profile</artifactId>
|
|
<name>WSO2 IoT - Analytics P2 Profile Gen</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
<executions>
|
|
<execution>
|
|
<id>unpack-equinox-executable</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>unpack</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.eclipse.equinox</groupId>
|
|
<artifactId>org.eclipse.equinox.executable</artifactId>
|
|
<version>3.5.0.v20110530-7P7NFUFFLWUl76mart</version>
|
|
<type>zip</type>
|
|
<overWrite>true</overWrite>
|
|
<outputDirectory>target</outputDirectory>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>2-unpack-wso2carbon</id>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>unpack</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.wso2.carbon</groupId>
|
|
<artifactId>wso2carbon-core</artifactId>
|
|
<version>${carbon.kernel.version}</version>
|
|
<type>zip</type>
|
|
<overWrite>true</overWrite>
|
|
<outputDirectory>target</outputDirectory>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.wso2.maven</groupId>
|
|
<artifactId>carbon-p2-plugin</artifactId>
|
|
<version>${carbon.p2.plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>2-p2-repo-generation</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>p2-repo-gen</goal>
|
|
</goals>
|
|
<configuration>
|
|
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
|
|
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
|
|
<publishArtifacts>true</publishArtifacts>
|
|
<publishArtifactRepository>true</publishArtifactRepository>
|
|
<featureArtifacts>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt:org.wso2.carbon.device.mgt.basics.feature:${carbon.device.mgt.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt:org.wso2.carbon.email.sender.feature:${carbon.device.mgt.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.apache.axis2.transport:org.apache.axis2.transport.mail.feature:${axis2-transports.wso2.version}
|
|
</featureArtifactDef>
|
|
<!-- START - Analytics Features -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.core.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.datasource.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.restapi.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.spark.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.api.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.spark.commons.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<!-- END - Analytics features -->
|
|
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.analytics.gadget.template.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.dashboard.ui.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.dashboards:org.wso2.carbon.dashboards.deployment.feature:${carbon.dashboard.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.messageconsole.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.activitydashboard.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.webservice.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.jsservice.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon:org.wso2.carbon.core.feature:${carbon.kernel.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon:org.wso2.carbon.core.runtime.feature:${carbon.kernel.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon:org.wso2.carbon.core.ui.feature:${carbon.kernel.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.das:org.wso2.das.styles.feature:${product.das.version}
|
|
</featureArtifactDef>
|
|
|
|
<!-- ********* START - Registry related *********** -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.registry:org.wso2.carbon.registry.core.feature:${carbon.registry.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.registry:org.wso2.carbon.registry.ui.menu.feature:${carbon.registry.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.registry:org.wso2.carbon.registry.resource.properties.feature:${carbon.registry.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.registry:org.wso2.carbon.registry.contentsearch.feature:${carbon.registry.version}
|
|
</featureArtifactDef>
|
|
<!-- ********* END - Registry related *********** -->
|
|
|
|
<!-- ************** START - User Management ********* -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.identity.framework:org.wso2.carbon.user.mgt.feature:${carbon.identity.framework.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.core.ui.feature:${carbon.identity.framework.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.core.server.feature:${carbon.identity.framework.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - User Management ********* -->
|
|
|
|
|
|
<!-- ************** START - Deployment Synchronizer ********* -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.deployment.synchronizer.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.event.server.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - Deployment Synchronizer ********* -->
|
|
|
|
<!-- ************** START - Capp Management ********* -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.application.mgt.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - Capp Management ********* -->
|
|
|
|
<!-- ************** START - Data Bridge ************ -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.databridge.datareceiver.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.databridge.streamdefn.filesystem.server.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.databridge.datapublisher.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.eventsink.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.eventtable.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - Data Bridge ************ -->
|
|
|
|
<!-- ************** START - WebApp Deployment ************ -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.deployment:org.wso2.carbon.webapp.mgt.server.feature:${carbon.deployment.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.deployment:org.wso2.carbon.as.runtimes.cxf.feature:${carbon.deployment.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.logging.mgt.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - WebApp Deployment ************ -->
|
|
|
|
<!-- ************** START - Jaggery feature ************ -->
|
|
<featureArtifactDef>
|
|
org.jaggeryjs:org.jaggeryjs.feature:${jaggery.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - Jaggery feature ************ -->
|
|
|
|
<!-- Multitenancy related -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.multitenancy:org.wso2.carbon.tenant.common.feature:${carbon.multitenancy.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.identity.carbon.auth.saml2:org.wso2.carbon.identity.authenticator.saml2.sso.server.feature:${identity.carbon.auth.saml2.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.identity.carbon.auth.saml2:org.wso2.carbon.identity.authenticator.saml2.sso.ui.feature:${identity.carbon.auth.saml2.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.identity.framework:org.wso2.carbon.security.mgt.feature:${carbon.identity.framework.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.das:org.wso2.das.multitenancy.dashboard.ui.feature:${product.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.tenant.mgt.common.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<!-- END - Multitenancy related -->
|
|
|
|
<!-- START - JMX agent -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.analytics.common.jmx.agent.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.ntask.core.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<!-- END - JMX agent -->
|
|
|
|
<!-- START - Data source related -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.ndatasource.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.data:org.wso2.carbon.datasource.reader.hadoop.server.feature:${carbon.data.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.data:org.wso2.carbon.datasource.reader.cassandra.server.feature:${carbon.data.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.data:org.wso2.carbon.datasource.reader.mongo.server.feature:${carbon.data.version}
|
|
</featureArtifactDef>
|
|
<!-- END - Data source related -->
|
|
|
|
<!-- ************** START - EVENT PROCESSING FEATURES *********** -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.receiver.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.publisher.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.event-processing:org.wso2.carbon.event.processor.feature:${carbon.event-processing.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.tracer.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.event-processing:org.wso2.carbon.event.flow.feature:${carbon.event-processing.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.event-processing:org.wso2.carbon.event.processor.server.feature:${carbon.event-processing.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.statistics.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.stream.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.event-processing:org.wso2.carbon.event.simulator.feature:${carbon.event-processing.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.application.deployer.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.processor.manager.core.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.processor.manager.commons.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.stream.persistence.server.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.template.manager.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.spark.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.event.stream.template.deployer.server.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.gadget.template.deployer.server.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics-common:org.wso2.carbon.dashboard.template.deployer.server.feature:${carbon.analytics.common.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics:org.wso2.carbon.analytics.eventsink.template.deployer.server.feature:${carbon.analytics.das.version}
|
|
</featureArtifactDef>
|
|
<!-- ************** END - EVENT PROCESSING FEATURES ************ -->
|
|
|
|
<!-- START - UES Features -->
|
|
<featureArtifactDef>
|
|
org.jaggeryjs.modules:carbon.feature:${jaggery.extensions.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.jaggeryjs.modules:process.feature:${jaggery.extensions.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.jaggeryjs.modules:i18n.feature:${jaggery.extensions.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.jaggeryjs.modules:sso.feature:${jaggery.extensions.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.jaggeryjs.modules:ws.feature:${jaggery.extensions.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.jaggeryjs:org.jaggeryjs.server.feature:${jaggery.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.dashboards:org.wso2.carbon.dashboards.shindig.feature:${carbon.dashboard.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.dashboards:org.wso2.carbon.dashboards.portal.feature:${carbon.dashboard.version}
|
|
</featureArtifactDef>
|
|
<!-- END - UES Features -->
|
|
|
|
<!-- Transport Adapters -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.device.mgt.adapter.feature:${carbon.device.mgt.plugin.version}
|
|
</featureArtifactDef>
|
|
<!--End Transport Adapters -->
|
|
<!-- Carbon metrics -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.metrics:org.wso2.carbon.metrics.feature:${carbon.metrics.version}
|
|
</featureArtifactDef>
|
|
|
|
<!-- START - Tools -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.commons:org.wso2.carbon.tryit.feature:${carbon.commons.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.event-processing:org.wso2.carbon.siddhi.tryit.feature:${carbon.event-processing.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.ciphertool:org.wso2.ciphertool.feature:${cipher.tool.version}
|
|
</featureArtifactDef>
|
|
<!-- END - Tools -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt:org.wso2.carbon.identity.jwt.client.extension.feature:${carbon.device.mgt.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.analytics.shared:org.wso2.carbon.analytics.shared.spark.common.udf.feature:${analytics.shared.version}
|
|
</featureArtifactDef>
|
|
<!-- Siddhi extension feature -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.execution.json.feature:${carbon.device.mgt.plugin.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.device.feature:${carbon.device.mgt.plugin.version}
|
|
</featureArtifactDef>
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt-plugins:org.wso2.carbon.device.mgt.iot.analytics.feature:${carbon.device.mgt.plugin.version}
|
|
</featureArtifactDef>
|
|
|
|
<!-- GPL Siddhi Extension Script for Geo Fencing -->
|
|
<featureArtifactDef>
|
|
org.wso2.carbon.devicemgt-plugins:org.wso2.gpl.siddhi.extension.geo.script.feature:${carbon.device.mgt.plugin.version}
|
|
</featureArtifactDef>
|
|
</featureArtifacts>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>publishing products</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>publish-product</goal>
|
|
</goals>
|
|
<configuration>
|
|
<productConfigurationFile>${basedir}/carbon.product</productConfigurationFile>
|
|
<executable>
|
|
${basedir}/target/org.eclipse.equinox.executable_3.5.0.v20110530-7P7NFUFFLWUl76mart
|
|
</executable>
|
|
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
|
|
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>materialize-analytics-default-profile</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>materialize-product</goal>
|
|
</goals>
|
|
<configuration>
|
|
<productConfigurationFile>${basedir}/carbon.product
|
|
</productConfigurationFile>
|
|
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
|
|
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
|
|
<targetPath>file:${basedir}/target/wso2carbon-core-${carbon.kernel.version}/wso2/components</targetPath>
|
|
<profile>analytics-default</profile>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>p2-profile-generation</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>p2-profile-gen</goal>
|
|
</goals>
|
|
<configuration>
|
|
<profile>analytics-default</profile>
|
|
<metadataRepository>file:${basedir}/target/p2-repo</metadataRepository>
|
|
<artifactRepository>file:${basedir}/target/p2-repo</artifactRepository>
|
|
<destination>
|
|
${basedir}/target/wso2carbon-core-${carbon.kernel.version}/wso2/components
|
|
</destination>
|
|
<deleteOldProfileFiles>true</deleteOldProfileFiles>
|
|
<features>
|
|
<feature>
|
|
<id>org.wso2.carbon.device.mgt.basics.feature.group</id>
|
|
<version>${carbon.device.mgt.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.email.sender.feature.group</id>
|
|
<version>${carbon.device.mgt.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.apache.axis2.transport.mail.feature.group</id>
|
|
<version>${axis2-transports.wso2.version}</version>
|
|
</feature>
|
|
<!-- START - Analytics Features -->
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.core.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.datasource.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.restapi.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.spark.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.api.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.spark.commons.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.stream.template.deployer.server.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.gadget.template.deployer.server.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.dashboard.template.deployer.server.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<!-- END - Analytics features -->
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.dashboard.ui.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
|
|
<feature>
|
|
<id>org.wso2.carbon.dashboard.deployment.feature.group</id>
|
|
<version>${carbon.dashboard.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.messageconsole.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.activitydashboard.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.webservice.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.jsservice.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.core.feature.group</id>
|
|
<version>${carbon.kernel.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.core.runtime.feature.group</id>
|
|
<version>${carbon.kernel.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.core.ui.feature.group</id>
|
|
<version>${carbon.kernel.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.das.styles.feature.group</id>
|
|
<version>${product.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.shared.spark.common.udf.feature.group</id>
|
|
<version>${analytics.shared.version}</version>
|
|
</feature>
|
|
|
|
<!-- ********* START - Registry related *********** -->
|
|
<feature>
|
|
<id>org.wso2.carbon.registry.core.feature.group</id>
|
|
<version>${carbon.registry.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.registry.ui.menu.feature.group</id>
|
|
<version>${carbon.registry.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.registry.resource.properties.feature.group</id>
|
|
<version>${carbon.registry.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.registry.contentsearch.feature.group</id>
|
|
<version>${carbon.registry.version}</version>
|
|
</feature>
|
|
<!-- ********* END - Registry related *********** -->
|
|
|
|
<!-- ************** START - User Management ********* -->
|
|
<feature>
|
|
<id>org.wso2.carbon.user.mgt.feature.group</id>
|
|
<version>${carbon.identity.framework.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.identity.core.ui.feature.group</id>
|
|
<version>${carbon.identity.framework.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.identity.core.server.feature.group</id>
|
|
<version>${carbon.identity.framework.version}</version>
|
|
</feature>
|
|
<!-- ************** END - User Management ********* -->
|
|
|
|
<!--Identity governance-->
|
|
<!--<feature>-->
|
|
<!--<id>org.wso2.carbon.identity.governance.server.feature.group</id>-->
|
|
<!--<version>${carbon.identity.governance.version}</version>-->
|
|
<!--</feature>-->
|
|
<!--<feature>-->
|
|
<!--<id>org.wso2.carbon.identity.captcha.server.feature.group</id>-->
|
|
<!--<version>${carbon.identity.governance.version}</version>-->
|
|
<!--</feature>-->
|
|
<!--Identity governance ends-->
|
|
|
|
<!-- ************** START - Deployment Synchronizer ********* -->
|
|
<feature>
|
|
<id>org.wso2.carbon.deployment.synchronizer.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.server.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<!-- ************** END - Deployment Synchronizer ********* -->
|
|
|
|
<!-- ************** START - Capp Management ********* -->
|
|
<feature>
|
|
<id>org.wso2.carbon.application.mgt.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<!-- ************** END - Capp Management ********* -->
|
|
|
|
<!-- ************** START - Data Bridge ************ -->
|
|
<feature>
|
|
<id>org.wso2.carbon.databridge.datareceiver.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.databridge.streamdefn.filesystem.server.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.databridge.datapublisher.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.eventsink.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.eventtable.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<!-- ************** END - Data Bridge ************ -->
|
|
|
|
<!-- ************** START - WebApp Deployment ************ -->
|
|
<feature>
|
|
<id>org.wso2.carbon.webapp.mgt.server.feature.group</id>
|
|
<version>${carbon.deployment.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.as.runtimes.cxf.feature.group</id>
|
|
<version>${carbon.deployment.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.logging.mgt.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<!-- ************** END - WebApp Deployment ************* -->
|
|
|
|
|
|
<!-- ************** jaggery feature groups ***************-->
|
|
<feature>
|
|
<id>org.jaggeryjs.feature.group</id>
|
|
<version>${jaggery.version}</version>
|
|
</feature>
|
|
<!-- ***************feature groups end *******************-->
|
|
|
|
<!-- START - Multitenancy related -->
|
|
<feature>
|
|
<id>org.wso2.carbon.tenant.common.feature.group</id>
|
|
<version>${carbon.multitenancy.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.identity.authenticator.saml2.sso.server.feature.group</id>
|
|
<version>${identity.carbon.auth.saml2.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.identity.authenticator.saml2.sso.ui.feature.group</id>
|
|
<version>${identity.carbon.auth.saml2.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.security.mgt.feature.group</id>
|
|
<version>${carbon.identity.framework.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.das.multitenancy.dashboard.ui.feature.group</id>
|
|
<version>${product.das.version}</version>
|
|
</feature>
|
|
<!-- END - Multitenancy related -->
|
|
|
|
<!-- START - JMX agent -->
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.common.jmx.agent.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.ntask.core.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<!-- END - JMX agent -->
|
|
|
|
<!-- START - Data source related -->
|
|
<feature>
|
|
<id>org.wso2.carbon.ndatasource.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.datasource.reader.hadoop.server.feature.group</id>
|
|
<version>${carbon.data.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.datasource.reader.cassandra.server.feature.group</id>
|
|
<version>${carbon.data.version}</version>
|
|
</feature>
|
|
|
|
<feature>
|
|
<id>org.wso2.carbon.datasource.reader.mongo.server.feature.group</id>
|
|
<version>${carbon.data.version}</version>
|
|
</feature>
|
|
|
|
|
|
<!-- END - Data source related -->
|
|
|
|
<!-- ************** START - EVENT PROCESSING FEATURES ************ -->
|
|
<feature>
|
|
<id>org.wso2.carbon.event.receiver.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.publisher.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.processor.feature.group</id>
|
|
<version>${carbon.event-processing.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.processor.server.feature.group</id>
|
|
<version>${carbon.event-processing.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.tracer.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.flow.feature.group</id>
|
|
<version>${carbon.event-processing.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.statistics.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.stream.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.simulator.feature.group</id>
|
|
<version>${carbon.event-processing.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.application.deployer.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.processor.manager.core.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.processor.manager.commons.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.stream.persistence.server.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.event.template.manager.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.spark.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.eventsink.template.deployer.server.feature.group</id>
|
|
<version>${carbon.analytics.das.version}</version>
|
|
</feature>
|
|
|
|
<!-- ************** END - EVENT PROCESSING FEATURES ************ -->
|
|
|
|
<!-- START - UES Features -->
|
|
<feature>
|
|
<id>org.jaggeryjs.modules.carbon.feature.group</id>
|
|
<version>${jaggery.extensions.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.jaggeryjs.modules.process.feature.group</id>
|
|
<version>${jaggery.extensions.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.jaggeryjs.modules.i18n.feature.group</id>
|
|
<version>${jaggery.extensions.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.jaggeryjs.modules.sso.feature.group</id>
|
|
<version>${jaggery.extensions.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.jaggeryjs.modules.ws.feature.group</id>
|
|
<version>${jaggery.extensions.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.dashboards.shindig.feature.group</id>
|
|
<version>${carbon.dashboard.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.dashboards.portal.feature.group</id>
|
|
<version>${carbon.dashboard.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.dashboard.deployment.feature.group</id>
|
|
<version>${carbon.dashboard.version}</version>
|
|
</feature>
|
|
<!-- END - UES Features -->
|
|
|
|
<!-- carbon metrics -->
|
|
<feature>
|
|
<id>org.wso2.carbon.metrics.feature.group</id>
|
|
<version>${carbon.metrics.version}</version>
|
|
</feature>
|
|
|
|
<!--START - Tools-->
|
|
<feature>
|
|
<id>org.wso2.carbon.tryit.feature.group</id>
|
|
<version>${carbon.commons.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.siddhi.tryit.feature.group</id>
|
|
<version>${carbon.event-processing.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.ciphertool.feature.group</id>
|
|
<version>${cipher.tool.version}</version>
|
|
</feature>
|
|
<!--END - Tools-->
|
|
<!-- Transport Adapters -->
|
|
<feature>
|
|
<id>org.wso2.carbon.device.mgt.adapter.feature.group</id>
|
|
<version>${carbon.device.mgt.plugin.version}</version>
|
|
</feature>
|
|
<!-- End Transport Adapters -->
|
|
<feature>
|
|
<id>org.wso2.carbon.identity.jwt.client.extension.feature.group</id>
|
|
<version>${carbon.device.mgt.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.carbon.analytics.gadget.template.feature.group</id>
|
|
<version>${carbon.analytics.common.version}</version>
|
|
</feature>
|
|
<!-- End of IoT Analytics Features -->
|
|
|
|
<!-- Siddhi extension Feature -->
|
|
<feature>
|
|
<id>org.wso2.extension.siddhi.execution.json.feature.group</id>
|
|
<version>${carbon.device.mgt.plugin.version}</version>
|
|
</feature>
|
|
<feature>
|
|
<id>org.wso2.extension.siddhi.device.feature.group</id>
|
|
<version>${carbon.device.mgt.plugin.version}</version>
|
|
</feature>
|
|
<!-- GPL Siddhi Extension Script for Geo Fencing -->
|
|
<feature>
|
|
<id>org.wso2.gpl.siddhi.extension.geo.script.feature.group</id>
|
|
<version>${carbon.device.mgt.plugin.version}</version>
|
|
</feature>
|
|
</features>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>creating-required-resources</id>
|
|
<phase>test</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/wso2/conf" />
|
|
<copy todir="target/wso2carbon-core-${carbon.kernel.version}/wso2/conf">
|
|
<fileset dir="target/wso2carbon-core-${carbon.kernel.version}/repository/conf" />
|
|
</copy>
|
|
<delete dir="target/wso2carbon-core-${carbon.kernel.version}/repository/conf" includeemptydirs="true" />
|
|
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/wso2/conf/etc/bundle-config/hadoop-client" />
|
|
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/wso2/conf/analytics/spark" />
|
|
<mkdir dir="target/wso2carbon-core-${carbon.kernel.version}/wso2/deployment/server" />
|
|
</tasks>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<replace token="false" value="true" dir="target/wso2carbon-core-${carbon.kernel.version}/wso2/components">
|
|
<include name="**/bundles.info" />
|
|
</replace>
|
|
</tasks>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
</properties>
|
|
</project>
|