[Carbon-commits] [Carbon] svn commit r120136 - in trunk/carbon/features/data-services: . data-services-hosting data-services-hosting/org.wso2.carbon.dataservices.feature data-services-hosting/org.wso2.carbon.dataservices.server.feature data-services-hosting/org.wso2.carbon.dataservices.ui.feature data-services-tasks data-services-tasks/org.wso2.carbon.dataservices.task.feature data-services-tasks/org.wso2.carbon.dataservices.task.server.feature data-services-tasks/org.wso2.carbon.dataservices.task.ui.feature org.wso2.carbon.dataservices.feature org.wso2.carbon.dataservices.server.feature org.wso2.carbon.dataservices.ui.feature
prabatha at wso2.com
prabatha at wso2.com
Sun Feb 5 14:23:31 EST 2012
Author: prabatha
Date: Sun Feb 5 14:23:31 2012
New Revision: 120136
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=120136
Log:
seperating out data services hosting and tasks features
Added:
trunk/carbon/features/data-services/data-services-hosting/
trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.feature/
trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.feature/pom.xml
trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.server.feature/
trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.server.feature/pom.xml
trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.ui.feature/
trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.ui.feature/pom.xml
trunk/carbon/features/data-services/data-services-hosting/pom.xml
trunk/carbon/features/data-services/data-services-tasks/
trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.feature/
trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.feature/pom.xml
trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.server.feature/
trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.server.feature/pom.xml
trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.ui.feature/
trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.ui.feature/pom.xml
trunk/carbon/features/data-services/data-services-tasks/pom.xml
Modified:
trunk/carbon/features/data-services/org.wso2.carbon.dataservices.feature/
trunk/carbon/features/data-services/org.wso2.carbon.dataservices.server.feature/
trunk/carbon/features/data-services/org.wso2.carbon.dataservices.ui.feature/
trunk/carbon/features/data-services/pom.xml
Added: trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.feature/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.feature/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.feature/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,81 @@
+<!--
+ ~ Copyright (c) 2005-2011, 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.carbon</groupId>
+ <artifactId>data-services-hosting-feature</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.dataservices.feature</artifactId>
+ <packaging>pom</packaging>
+ <name>Data Service Hosting Feature</name>
+ <url>http://wso2.org</url>
+ <description>This feature contains the bundles required for Data Service hosting functionality</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.server.feature</artifactId>
+ <version>${project.version}</version>
+ <type>zip</type>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.ui.feature</artifactId>
+ <version>${project.version}</version>
+ <type>zip</type>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.wso2.maven</groupId>
+ <artifactId>carbon-p2-plugin</artifactId>
+ <version>${carbon.p2.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>p2-feature-generation</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-feature-gen</goal>
+ </goals>
+ <configuration>
+ <id>org.wso2.carbon.dataservices</id>
+ <propertiesFile>../../etc/feature.properties</propertiesFile>
+ <adviceFile>
+ <properties>
+ <propertyDef>org.eclipse.equinox.p2.type.group:true</propertyDef>
+ </properties>
+ </adviceFile>
+ <includedFeatures>
+ <includedFeatureDef>org.wso2.carbon:org.wso2.carbon.dataservices.server.feature</includedFeatureDef>
+ <includedFeatureDef>org.wso2.carbon:org.wso2.carbon.dataservices.ui.feature</includedFeatureDef>
+ </includedFeatures>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.server.feature/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.server.feature/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.server.feature/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,80 @@
+<!--
+ ~ Copyright (c) 2005-2011, 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.carbon</groupId>
+ <artifactId>data-services-hosting-feature</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.dataservices.server.feature</artifactId>
+ <packaging>pom</packaging>
+ <name>Data Service Hosting Server Feature</name>
+ <url>http://wso2.org</url>
+ <description>This feature contains the bundles required for Back-end Data Service hosting functionality</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.core</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.common</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.wso2.maven</groupId>
+ <artifactId>carbon-p2-plugin</artifactId>
+ <version>${carbon.p2.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>p2-feature-generation</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-feature-gen</goal>
+ </goals>
+ <configuration>
+ <id>org.wso2.carbon.dataservices.server</id>
+ <propertiesFile>../../etc/feature.properties</propertiesFile>
+ <adviceFile>
+ <properties>
+ <propertyDef>org.wso2.carbon.p2.category.type:console</propertyDef>
+ <propertyDef>org.eclipse.equinox.p2.type.group:false</propertyDef>
+ </properties>
+ </adviceFile>
+ <bundles>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.core</bundleDef>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.common</bundleDef>
+ </bundles>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.ui.feature/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.ui.feature/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-hosting/org.wso2.carbon.dataservices.ui.feature/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,91 @@
+<!--
+ ~ Copyright (c) 2005-2011, 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.carbon</groupId>
+ <artifactId>data-services-hosting-feature</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.dataservices.ui.feature</artifactId>
+ <packaging>pom</packaging>
+ <name>Data Service Hosting UI Feature</name>
+ <url>http://wso2.org</url>
+ <description>This feature contains the bundles required for Front-end Data Service hosting functionality</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.ui</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.stub</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.fileupload.stub</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.wso2.maven</groupId>
+ <artifactId>carbon-p2-plugin</artifactId>
+ <version>${carbon.p2.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>p2-feature-generation</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-feature-gen</goal>
+ </goals>
+ <configuration>
+ <id>org.wso2.carbon.dataservices.ui</id>
+ <propertiesFile>../../etc/feature.properties</propertiesFile>
+ <adviceFile>
+ <properties>
+ <propertyDef>org.wso2.carbon.p2.category.type:console</propertyDef>
+ <propertyDef>org.eclipse.equinox.p2.type.group:false</propertyDef>
+ </properties>
+ </adviceFile>
+ <bundles>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.ui</bundleDef>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.common</bundleDef>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.stub</bundleDef>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.fileupload.stub</bundleDef>
+ </bundles>
+ <importFeatures>
+ <importFeatureDef>org.wso2.carbon.service.mgt.ui</importFeatureDef>
+ <importFeatureDef>org.wso2.carbon.datasource.ui</importFeatureDef>
+ </importFeatures>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/features/data-services/data-services-hosting/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-hosting/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-hosting/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (c) 2009-2011, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
+ ~
+ ~ Licensed 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.carbon</groupId>
+ <artifactId>data-services-features</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>data-services-hosting-feature</artifactId>
+ <packaging>pom</packaging>
+ <name>WSO2 Carbon - Data Services Hosting Feature Aggregator Module</name>
+ <url>http://wso2.org</url>
+
+ <modules>
+ <module>org.wso2.carbon.dataservices.feature</module>
+ <module>org.wso2.carbon.dataservices.server.feature</module>
+ <module>org.wso2.carbon.dataservices.ui.feature</module>
+ </modules>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.core</artifactId>
+ <version>${wso2carbon.version.dataservices}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.ui</artifactId>
+ <version>${wso2carbon.version.dataservices}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.common</artifactId>
+ <version>${wso2carbon.version.dataservices}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.gdata.wso2</groupId>
+ <artifactId>gdata-core</artifactId>
+ <version>${gdata-core.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.gdata.wso2</groupId>
+ <artifactId>gdata-spreadsheet</artifactId>
+ <version>${gdata-spreadsheet.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava.wso2</groupId>
+ <artifactId>guava</artifactId>
+ <version>0.9.0.wso2v1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi.wso2</groupId>
+ <artifactId>poi</artifactId>
+ <version>${poi.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi.wso2</groupId>
+ <artifactId>poi-ooxml</artifactId>
+ <version>${poi.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi.wso2</groupId>
+ <artifactId>ooxml-spreadsheet-schemas</artifactId>
+ <version>${ooxml-spreadsheet-schemas.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.hp.hpl.jena.wso2</groupId>
+ <artifactId>arq</artifactId>
+ <version>${jena-arq.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.webharvest.wso2</groupId>
+ <artifactId>webharvest-core</artifactId>
+ <version>${web-harvest.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sf.saxon.wso2</groupId>
+ <artifactId>saxon</artifactId>
+ <version>${saxon.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient.wso2</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>${commons-httpclient.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>bsh.wso2</groupId>
+ <artifactId>bsh</artifactId>
+ <version>${bsh.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.htmlcleaner.wso2</groupId>
+ <artifactId>htmlcleaner</artifactId>
+ <version>${htmlcleaner.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-dbcp.wso2</groupId>
+ <artifactId>commons-dbcp</artifactId>
+ <version>${commons-dbcp.wso2.version.data-services}</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-pool.wso2</groupId>
+ <artifactId>commons-pool</artifactId>
+ <version>${commons-pool.wso2.version.data-services}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <properties>
+ <wso2carbon.version.dataservices>${wso2carbon.version}</wso2carbon.version.dataservices>
+ <gdata-core.wso2.version.data-services>1.0.0.wso2v1</gdata-core.wso2.version.data-services>
+ <gdata-spreadsheet.wso2.version.data-services>3.0.0.wso2v1
+ </gdata-spreadsheet.wso2.version.data-services>
+ <poi.wso2.version.data-services>3.5.0.wso2v1</poi.wso2.version.data-services>
+ <jena-arq.wso2.version.data-services>1.0.0.wso2v1</jena-arq.wso2.version.data-services>
+ <web-harvest.wso2.version.data-services>2.0.0.wso2v1
+ </web-harvest.wso2.version.data-services>
+ <saxon.wso2.version.data-services>8.9.0.wso2v1</saxon.wso2.version.data-services>
+ <commons-httpclient.wso2.version.data-services>3.1.0.wso2v1
+ </commons-httpclient.wso2.version.data-services>
+ <bsh.wso2.version.data-services>1.3.0.wso2v1</bsh.wso2.version.data-services>
+ <htmlcleaner.version.data-services>2.1.0.wso2v1</htmlcleaner.version.data-services>
+ <commons-dbcp.wso2.version.data-services>1.4.0.wso2v1</commons-dbcp.wso2.version.data-services>
+ <commons-pool.wso2.version.data-services>1.5.0.wso2v1</commons-pool.wso2.version.data-services>
+ <ooxml-spreadsheet-schemas.wso2.version.data-services>1.1.wso2v1</ooxml-spreadsheet-schemas.wso2.version.data-services>
+ </properties>
+
+</project>
+
Added: trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.feature/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.feature/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.feature/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,81 @@
+<!--
+ ~ Copyright (c) 2005-2011, 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.carbon</groupId>
+ <artifactId>data-services-tasks-feature</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.dataservices.task.feature</artifactId>
+ <packaging>pom</packaging>
+ <name>Data Service Tasks Feature</name>
+ <url>http://wso2.org</url>
+ <description>This feature contains the bundles required for Data Service Tasks functionality</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task.server.feature</artifactId>
+ <version>${project.version}</version>
+ <type>zip</type>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task.ui.feature</artifactId>
+ <version>${project.version}</version>
+ <type>zip</type>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.wso2.maven</groupId>
+ <artifactId>carbon-p2-plugin</artifactId>
+ <version>${carbon.p2.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>p2-feature-generation</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-feature-gen</goal>
+ </goals>
+ <configuration>
+ <id>org.wso2.carbon.dataservices.task</id>
+ <propertiesFile>../../etc/feature.properties</propertiesFile>
+ <adviceFile>
+ <properties>
+ <propertyDef>org.eclipse.equinox.p2.type.group:true</propertyDef>
+ </properties>
+ </adviceFile>
+ <includedFeatures>
+ <includedFeatureDef>org.wso2.carbon:org.wso2.carbon.dataservices.task.server.feature</includedFeatureDef>
+ <includedFeatureDef>org.wso2.carbon:org.wso2.carbon.dataservices.task.ui.feature</includedFeatureDef>
+ </includedFeatures>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.server.feature/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.server.feature/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.server.feature/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,74 @@
+<!--
+ ~ Copyright (c) 2005-2011, 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.carbon</groupId>
+ <artifactId>data-services-tasks-feature</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.dataservices.task.server.feature</artifactId>
+ <packaging>pom</packaging>
+ <name>Data Service Tasks Server Feature</name>
+ <url>http://wso2.org</url>
+ <description>This feature contains the bundles required for Back-end Data Service tasks functionality</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.wso2.maven</groupId>
+ <artifactId>carbon-p2-plugin</artifactId>
+ <version>${carbon.p2.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>p2-feature-generation</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-feature-gen</goal>
+ </goals>
+ <configuration>
+ <id>org.wso2.carbon.dataservices.task</id>
+ <propertiesFile>../../etc/feature.properties</propertiesFile>
+ <adviceFile>
+ <properties>
+ <propertyDef>org.wso2.carbon.p2.category.type:console</propertyDef>
+ <propertyDef>org.eclipse.equinox.p2.type.group:false</propertyDef>
+ </properties>
+ </adviceFile>
+ <bundles>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.task</bundleDef>
+ </bundles>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.ui.feature/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.ui.feature/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-tasks/org.wso2.carbon.dataservices.task.ui.feature/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,80 @@
+<!--
+ ~ Copyright (c) 2005-2011, 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.carbon</groupId>
+ <artifactId>data-services-tasks-feature</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>org.wso2.carbon.dataservices.task.ui.feature</artifactId>
+ <packaging>pom</packaging>
+ <name>Data Service Tasks UI Feature</name>
+ <url>http://wso2.org</url>
+ <description>This feature contains the bundles required for Front-end Data Service tasks functionality</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task.ui</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task.stub</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.wso2.maven</groupId>
+ <artifactId>carbon-p2-plugin</artifactId>
+ <version>${carbon.p2.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>p2-feature-generation</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-feature-gen</goal>
+ </goals>
+ <configuration>
+ <id>org.wso2.carbon.dataservices.task.ui</id>
+ <propertiesFile>../../etc/feature.properties</propertiesFile>
+ <adviceFile>
+ <properties>
+ <propertyDef>org.wso2.carbon.p2.category.type:console</propertyDef>
+ <propertyDef>org.eclipse.equinox.p2.type.group:false</propertyDef>
+ </properties>
+ </adviceFile>
+ <bundles>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.task.ui</bundleDef>
+ <bundleDef>org.wso2.carbon:org.wso2.carbon.dataservices.task.stub</bundleDef>
+ </bundles>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: trunk/carbon/features/data-services/data-services-tasks/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/data-services-tasks/pom.xml?pathrev=120136
==============================================================================
--- (empty file)
+++ trunk/carbon/features/data-services/data-services-tasks/pom.xml Sun Feb 5 14:23:31 2012
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (c) 2009-2011, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
+ ~
+ ~ Licensed 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.carbon</groupId>
+ <artifactId>data-services-features</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>data-services-tasks-feature</artifactId>
+ <packaging>pom</packaging>
+ <name>WSO2 Carbon - Data Services Tasks Feature Aggregator Module</name>
+ <url>http://wso2.org</url>
+
+ <modules>
+ <module>org.wso2.carbon.dataservices.task.feature</module>
+ <module>org.wso2.carbon.dataservices.task.server.feature</module>
+ <module>org.wso2.carbon.dataservices.task.ui.feature</module>
+ </modules>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.dataservices.task.ui</artifactId>
+ <version>${carbon.platform.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <properties>
+ </properties>
+
+</project>
+
Modified: trunk/carbon/features/data-services/pom.xml
URL: http://wso2.org/svn/browse/wso2/trunk/carbon/features/data-services/pom.xml?rev=120136&r1=120135&r2=120136&view=diff
==============================================================================
--- trunk/carbon/features/data-services/pom.xml (original)
+++ trunk/carbon/features/data-services/pom.xml Sun Feb 5 14:23:31 2012
@@ -27,129 +27,22 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>data-services-feature</artifactId>
+ <artifactId>data-services-features</artifactId>
<packaging>pom</packaging>
<name>WSO2 Carbon - Data Services Feature Aggregator Module</name>
<url>http://wso2.org</url>
<modules>
- <module>org.wso2.carbon.dataservices.feature</module>
- <module>org.wso2.carbon.dataservices.server.feature</module>
- <module>org.wso2.carbon.dataservices.ui.feature</module>
+ <module>data-services-hosting</module>
+ <module>data-services-tasks</module>
</modules>
<dependencyManagement>
<dependencies>
- <dependency>
- <groupId>org.wso2.carbon</groupId>
- <artifactId>org.wso2.carbon.dataservices.core</artifactId>
- <version>${wso2carbon.version.dataservices}</version>
- </dependency>
- <dependency>
- <groupId>org.wso2.carbon</groupId>
- <artifactId>org.wso2.carbon.dataservices.ui</artifactId>
- <version>${wso2carbon.version.dataservices}</version>
- </dependency>
- <dependency>
- <groupId>org.wso2.carbon</groupId>
- <artifactId>org.wso2.carbon.dataservices.common</artifactId>
- <version>${wso2carbon.version.dataservices}</version>
- </dependency>
- <dependency>
- <groupId>org.wso2.carbon</groupId>
- <artifactId>org.wso2.carbon.dataservices.taskscheduler</artifactId>
- <version>${wso2carbon.version.dataservices}</version>
- </dependency>
- <dependency>
- <groupId>com.google.gdata.wso2</groupId>
- <artifactId>gdata-core</artifactId>
- <version>${gdata-core.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>com.google.gdata.wso2</groupId>
- <artifactId>gdata-spreadsheet</artifactId>
- <version>${gdata-spreadsheet.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava.wso2</groupId>
- <artifactId>guava</artifactId>
- <version>0.9.0.wso2v1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi.wso2</groupId>
- <artifactId>poi</artifactId>
- <version>${poi.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi.wso2</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${poi.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi.wso2</groupId>
- <artifactId>ooxml-spreadsheet-schemas</artifactId>
- <version>${ooxml-spreadsheet-schemas.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>com.hp.hpl.jena.wso2</groupId>
- <artifactId>arq</artifactId>
- <version>${jena-arq.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>org.webharvest.wso2</groupId>
- <artifactId>webharvest-core</artifactId>
- <version>${web-harvest.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>net.sf.saxon.wso2</groupId>
- <artifactId>saxon</artifactId>
- <version>${saxon.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient.wso2</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>${commons-httpclient.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>bsh.wso2</groupId>
- <artifactId>bsh</artifactId>
- <version>${bsh.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>org.htmlcleaner.wso2</groupId>
- <artifactId>htmlcleaner</artifactId>
- <version>${htmlcleaner.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>commons-dbcp.wso2</groupId>
- <artifactId>commons-dbcp</artifactId>
- <version>${commons-dbcp.wso2.version.data-services}</version>
- </dependency>
- <dependency>
- <groupId>commons-pool.wso2</groupId>
- <artifactId>commons-pool</artifactId>
- <version>${commons-pool.wso2.version.data-services}</version>
- </dependency>
</dependencies>
</dependencyManagement>
<properties>
- <wso2carbon.version.dataservices>${wso2carbon.version}</wso2carbon.version.dataservices>
- <gdata-core.wso2.version.data-services>1.0.0.wso2v1</gdata-core.wso2.version.data-services>
- <gdata-spreadsheet.wso2.version.data-services>3.0.0.wso2v1
- </gdata-spreadsheet.wso2.version.data-services>
- <poi.wso2.version.data-services>3.5.0.wso2v1</poi.wso2.version.data-services>
- <jena-arq.wso2.version.data-services>1.0.0.wso2v1</jena-arq.wso2.version.data-services>
- <web-harvest.wso2.version.data-services>2.0.0.wso2v1
- </web-harvest.wso2.version.data-services>
- <saxon.wso2.version.data-services>8.9.0.wso2v1</saxon.wso2.version.data-services>
- <commons-httpclient.wso2.version.data-services>3.1.0.wso2v1
- </commons-httpclient.wso2.version.data-services>
- <bsh.wso2.version.data-services>1.3.0.wso2v1</bsh.wso2.version.data-services>
- <htmlcleaner.version.data-services>2.1.0.wso2v1</htmlcleaner.version.data-services>
- <commons-dbcp.wso2.version.data-services>1.4.0.wso2v1</commons-dbcp.wso2.version.data-services>
- <commons-pool.wso2.version.data-services>1.5.0.wso2v1</commons-pool.wso2.version.data-services>
- <ooxml-spreadsheet-schemas.wso2.version.data-services>1.1.wso2v1</ooxml-spreadsheet-schemas.wso2.version.data-services>
</properties>
</project>
More information about the Carbon-commits
mailing list