]> git.argeo.org Git - gpl/argeo-slc.git/commitdiff
Take into account OSGiBoot renaming
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 13 Jul 2010 09:33:13 +0000 (09:33 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 13 Jul 2010 09:33:13 +0000 (09:33 +0000)
Remove unused directories

git-svn-id: https://svn.argeo.org/slc/trunk@3670 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

dep/org.argeo.slc.dep.agent/pom.xml
runtime/org.argeo.slc.lib.detached/src/main/java/org/argeo/slc/lib/detached/DetachedLauncher.java
runtime/org.argeo.slc.support.equinox/build.properties
runtime/org.argeo.slc.support.equinox/src/test/java/org/argeo/slc/osgi/test/HelloTest.java
runtime/org.argeo.slc.support.hibernate/src/main/resources/org/argeo/slc/hibernate/spring/applicationContext.xml [deleted file]
runtime/org.argeo.slc.unit/src/main/java/org/argeo/slc/equinox/unit/AbstractOsgiRuntimeTestCase.java

index 3b5cc1530eb0c3de9be45ec59c7733aa7e260b29..d1ee0f3afa1d18faad90fa3016638bb0d0c896b7 100644 (file)
@@ -1,4 +1,5 @@
-<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">
+<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.argeo.slc</groupId>
                        <groupId>org.hsqldb</groupId>
                        <artifactId>com.springsource.org.hsqldb</artifactId>
                </dependency>
+               <dependency>
+                       <groupId>com.h2database</groupId>
+                       <artifactId>com.springsource.org.h2</artifactId>
+               </dependency>
                <dependency>
                        <groupId>net.sourceforge.jtds</groupId>
                        <artifactId>com.springsource.net.sourceforge.jtds</artifactId>
index 7ac1606ff463b5d3042c3dd25ef167f43c313709..7422be38898fa6e49d843bbcc8022834ecf41102 100644 (file)
@@ -59,7 +59,7 @@ public class DetachedLauncher extends JvmProcess implements BundleContextAware,
        public DetachedLauncher() {
                // Override defaults
                setSynchronous(false);
-               setMainClass("org.argeo.slc.osgiboot.Launcher");
+               setMainClass("org.argeo.osgi.boot.Launcher");
        }
 
        public void afterPropertiesSet() throws Exception {
index da2d342689057c6a1aab8bb745eb18b2c932d0c6..d3a40a0584294588511530ea3f61b1b9651ec920 100644 (file)
@@ -2,7 +2,7 @@ additional.bundles = org.argeo.slc.core,\
                      org.springframework.context,\
                      org.argeo.slc.unit,\
                      com.springsource.junit,\
-                     org.argeo.slc.osgiboot,\
+                     org.argeo.osgi.boot,\
                      org.eclipse.osgi
 source.. = src/main/java/,\
            src/main/resources/,\
index 472c9eb1aee615df5b52fe00cb33519bcbc96eef..dea2beaaefdb59db4711dfb3b9815b054810289d 100644 (file)
@@ -20,7 +20,7 @@ import java.util.ArrayList;
 import java.util.List;
 
 import org.argeo.slc.equinox.unit.AbstractOsgiRuntimeTestCase;
-import org.argeo.slc.osgiboot.OsgiBoot;
+import org.argeo.osgi.boot.OsgiBoot;
 
 public class HelloTest extends AbstractOsgiRuntimeTestCase {
        public void testHello() throws Exception {
diff --git a/runtime/org.argeo.slc.support.hibernate/src/main/resources/org/argeo/slc/hibernate/spring/applicationContext.xml b/runtime/org.argeo.slc.support.hibernate/src/main/resources/org/argeo/slc/hibernate/spring/applicationContext.xml
deleted file mode 100644 (file)
index 24c0446..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
-
-    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.
-
--->
-
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
-       default-lazy-init="true">
-       
-       <description>Deprecated, use
-               classpath:/org/argeo/slc/hibernate/spring.xml instead</description>
-               
-       <import resource="classpath:/org/argeo/slc/hibernate/spring.xml" />
-</beans>
\ No newline at end of file
index b750c99b7a446bdcd8e5f8b79d1fea731b6085af..0e3941adee7127661b962a44543d734f4023b44b 100644 (file)
@@ -26,7 +26,7 @@ import junit.framework.TestCase;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.argeo.slc.SlcException;
-import org.argeo.slc.osgiboot.OsgiBoot;
+import org.argeo.osgi.boot.OsgiBoot;
 import org.eclipse.core.runtime.adaptor.EclipseStarter;
 import org.osgi.framework.Bundle;
 import org.osgi.framework.BundleContext;