You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by re...@apache.org on 2013/09/11 17:43:03 UTC

svn commit: r1521912 - in /clerezza/trunk/provisioning/typehandlerspace: ./ pom.xml src/ src/main/ src/main/feature/ src/main/feature/feature.xml

Author: reto
Date: Wed Sep 11 15:43:03 2013
New Revision: 1521912

URL: http://svn.apache.org/r1521912
Log:
CLEREZZA-818: added feature for typehandlerspace

Added:
    clerezza/trunk/provisioning/typehandlerspace/   (with props)
    clerezza/trunk/provisioning/typehandlerspace/pom.xml
    clerezza/trunk/provisioning/typehandlerspace/src/
    clerezza/trunk/provisioning/typehandlerspace/src/main/
    clerezza/trunk/provisioning/typehandlerspace/src/main/feature/
    clerezza/trunk/provisioning/typehandlerspace/src/main/feature/feature.xml

Propchange: clerezza/trunk/provisioning/typehandlerspace/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Sep 11 15:43:03 2013
@@ -0,0 +1 @@
+target

Added: clerezza/trunk/provisioning/typehandlerspace/pom.xml
URL: http://svn.apache.org/viewvc/clerezza/trunk/provisioning/typehandlerspace/pom.xml?rev=1521912&view=auto
==============================================================================
--- clerezza/trunk/provisioning/typehandlerspace/pom.xml (added)
+++ clerezza/trunk/provisioning/typehandlerspace/pom.xml Wed Sep 11 15:43:03 2013
@@ -0,0 +1,130 @@
+<?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.
+
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.apache.clerezza.provisioning</groupId>
+    <artifactId>typehandlerspace</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>Typehandlerspace feature</name>
+    <description>What's needed to get typehandlerspace working on top of 
+        JAX-RS 2.0.</description>
+
+    <dependencies>
+       
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>
+            <artifactId>slf4j-scala-api</artifactId>
+            <version>1.6.3-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.scala-lang</groupId>
+            <artifactId>scala-library</artifactId>
+            <version>2.10.0</version>
+            <scope>provided</scope>
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.storage.web</artifactId>
+            <version>0.2-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>platform.users.core</artifactId>
+            <version>0.2-SNAPSHOT</version>
+            <scope>provided</scope>
+
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>platform.usermanager</artifactId>
+            <version>0.14-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>platform.graphnodeprovider</artifactId>
+            <version>0.2-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>platform.typepriority</artifactId>
+            <version>0.2-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency> 	
+ 
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>platform.typehandlerspace.jaxrs</artifactId>
+            <version>0.9-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency> 	
+
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>platform.typehandlerspace</artifactId>
+            <version>0.9-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.clerezza.provisionig.tooling</groupId>
+                    <artifactId>karaf-maven-plugin</artifactId>
+                    <version>3.0.0.RC1</version>
+                    <extensions>true</extensions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.clerezza.provisionig.tooling</groupId>
+                <artifactId>karaf-maven-plugin</artifactId>
+                <configuration>
+                    <startLevel>25</startLevel>
+                    <aggregateFeatures>true</aggregateFeatures>
+                    <resolver>(obr)</resolver>
+                    <checkDependencyChange>false</checkDependencyChange>
+                    <includeTransitiveDependency>false</includeTransitiveDependency>
+                    <createSlingPartialBundleList>true</createSlingPartialBundleList>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
+</project>

Added: clerezza/trunk/provisioning/typehandlerspace/src/main/feature/feature.xml
URL: http://svn.apache.org/viewvc/clerezza/trunk/provisioning/typehandlerspace/src/main/feature/feature.xml?rev=1521912&view=auto
==============================================================================
--- clerezza/trunk/provisioning/typehandlerspace/src/main/feature/feature.xml (added)
+++ clerezza/trunk/provisioning/typehandlerspace/src/main/feature/feature.xml Wed Sep 11 15:43:03 2013
@@ -0,0 +1,26 @@
+<?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="${project.artifactId}-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.0.0">
+
+    <feature name='${project.artifactId}' description='${project.name}' version='${project.version}'>
+        <details>${project.description}</details>
+        <!-- <config>foo=bar</config> -->
+    </feature>
+
+</features>
\ No newline at end of file