You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by rw...@apache.org on 2012/04/08 15:50:18 UTC

svn commit: r1311003 - in /incubator/stanbol/trunk/commons/launchpad: ./ pom.xml src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/stanbol/ src/main/java/org/apache/stanbol/launchpad/

Author: rwesten
Date: Sun Apr  8 13:50:18 2012
New Revision: 1311003

URL: http://svn.apache.org/viewvc?rev=1311003&view=rev
Log:
STANBOL-562: Stanbol specific Launcher required to reset the default sling.home value from "sling" to "stanbol" for runnable jars

Added:
    incubator/stanbol/trunk/commons/launchpad/   (with props)
    incubator/stanbol/trunk/commons/launchpad/pom.xml   (with props)
    incubator/stanbol/trunk/commons/launchpad/src/
    incubator/stanbol/trunk/commons/launchpad/src/main/
    incubator/stanbol/trunk/commons/launchpad/src/main/java/
    incubator/stanbol/trunk/commons/launchpad/src/main/java/org/
    incubator/stanbol/trunk/commons/launchpad/src/main/java/org/apache/
    incubator/stanbol/trunk/commons/launchpad/src/main/java/org/apache/stanbol/
    incubator/stanbol/trunk/commons/launchpad/src/main/java/org/apache/stanbol/launchpad/

Propchange: incubator/stanbol/trunk/commons/launchpad/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Apr  8 13:50:18 2012
@@ -0,0 +1,7 @@
+.settings
+
+.project
+
+target
+
+.classpath

Added: incubator/stanbol/trunk/commons/launchpad/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/commons/launchpad/pom.xml?rev=1311003&view=auto
==============================================================================
--- incubator/stanbol/trunk/commons/launchpad/pom.xml (added)
+++ incubator/stanbol/trunk/commons/launchpad/pom.xml Sun Apr  8 13:50:18 2012
@@ -0,0 +1,77 @@
+<?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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9.0-incubating-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.launchpad</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Apache Stanbol Launchpad</name>
+  <description>
+    Small wrapper over the Apache Sling Launchpad that is used to set 
+    some Stanbol specific environment parameters
+  </description>
+
+  <inceptionYear>2010</inceptionYear>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/commons/launchpad/
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/commons/launchpad/
+    </developerConnection>
+    <url>http://incubator.apache.org/stanbol/</url>
+  </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.stanbol.commons.indexedgraph.*;version=${project.version}
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.launchpad.base</artifactId>
+      <classifier>app</classifier>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: incubator/stanbol/trunk/commons/launchpad/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain