JBoss-OSGI SVN: r89442 - in projects/jboss-osgi/trunk: blueprint/testsuite and 11 other directories.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-26 10:59:13 -0400 (Tue, 26 May 2009)
New Revision: 89442
Added:
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jmx/
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jmx/JMXServiceTestCase.java
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNDIServiceTestCase.java
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNPServerTestCase.java
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/RMIRegistryTestCase.java
Modified:
projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml
projects/jboss-osgi/trunk/bundles/jmx/src/main/java/org/jboss/osgi/jmx/internal/JMXConnectorService.java
projects/jboss-osgi/trunk/bundles/jndi/pom.xml
projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/JNPServer.java
projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/ServiceActivator.java
projects/jboss-osgi/trunk/pom.xml
projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/EmbeddedRuntime.java
projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTest.java
projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTestHelper.java
projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/RemoteRuntime.java
projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/internal/OSGiRuntimeImpl.java
projects/jboss-osgi/trunk/testsuite/functional/.project
projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/bootstrap/BundleTestCase.java
projects/jboss-osgi/trunk/testsuite/pom.xml
Log:
More work on JNDI startup/shutdown
Modified: projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml 2009-05-26 14:59:13 UTC (rev 89442)
@@ -139,39 +139,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <redirectTestOutputToFile>false</redirectTestOutputToFile>
- <failIfNoTests>false</failIfNoTests>
- <systemProperties>
- <!--
- Implement URLStreamHandlerService
- https://jira.jboss.org/jira/browse/JBOSGI-75
- -->
- <property>
- <name>java.protocol.handler.pkgs</name>
- <value>org.jboss.net.protocol|org.jboss.virtual.protocol</value>
- </property>
- <property>
- <name>org.apache.xerces.xni.parser.XMLParserConfiguration</name>
- <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
- </property>
- <property>
- <name>org.jboss.osgi.husky.Invoker</name>
- <value>org.jboss.osgi.husky.internal.OSGiInvoker</value>
- </property>
- <property>
- <name>log4j.output.dir</name>
- <value>${project.build.directory}</value>
- </property>
- <property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
- </property>
- </systemProperties>
- </configuration>
- </plugin>
</plugins>
</build>
Modified: projects/jboss-osgi/trunk/bundles/jmx/src/main/java/org/jboss/osgi/jmx/internal/JMXConnectorService.java
===================================================================
--- projects/jboss-osgi/trunk/bundles/jmx/src/main/java/org/jboss/osgi/jmx/internal/JMXConnectorService.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/bundles/jmx/src/main/java/org/jboss/osgi/jmx/internal/JMXConnectorService.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -69,11 +69,11 @@
try
{
rmiRegistry.list();
- log.log(LogService.LOG_DEBUG, "Registry running at host=" + host + ",port=" + rmiPort);
+ log.log(LogService.LOG_DEBUG, "RMI Registry running at host=" + host + ",port=" + rmiPort);
}
catch (RemoteException e)
{
- log.log(LogService.LOG_DEBUG, "No registry running at host=" + host + ",port=" + rmiPort + ". Will create one.");
+ log.log(LogService.LOG_DEBUG, "No RMI Registry running at host=" + host + ",port=" + rmiPort + ". Will create one.");
rmiRegistry = LocateRegistry.createRegistry(rmiPort, null, new DefaultSocketFactory(bindAddress));
shutdownRegistry = true;
}
@@ -134,7 +134,10 @@
// Shutdown the registry if this service created it
if (shutdownRegistry == true)
+ {
+ log.log(LogService.LOG_DEBUG, "Shutdown RMI Registry");
UnicastRemoteObject.unexportObject(rmiRegistry, true);
+ }
log.log(LogService.LOG_DEBUG, "JMXConnectorServer stopped");
}
Modified: projects/jboss-osgi/trunk/bundles/jndi/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/jndi/pom.xml 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/bundles/jndi/pom.xml 2009-05-26 14:59:13 UTC (rev 89442)
@@ -60,7 +60,6 @@
<instructions>
<Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
<Bundle-Activator>org.jboss.osgi.jndi.internal.ServiceActivator</Bundle-Activator>
- <Export-Package>org.jboss.osgi.jndi</Export-Package>
<Import-Package>
javax.naming*,
javax.net,
@@ -76,7 +75,7 @@
jnpserver;inline=false,
</Embed-Dependency>
<_exportcontents>
- org.jnp.interfaces,
+ org.jnp.interfaces;version=${version.jboss.naming},
</_exportcontents>
</instructions>
</configuration>
Modified: projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/JNPServer.java
===================================================================
--- projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/JNPServer.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/JNPServer.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -23,8 +23,6 @@
//$Id$
-import java.io.IOException;
-
import javax.naming.NamingException;
import org.jboss.osgi.common.log.LogServiceTracker;
@@ -41,61 +39,37 @@
* @author thomas.diesler(a)jboss.com
* @since 24-Apr-2009
*/
-public class JNPServer
+public class JNPServer
{
private LogService log;
+ private String host;
+ private int jndiPort;
+ private int rmiPort;
+
private Main namingMain;
private Naming namingServer;
- public JNPServer(BundleContext context, String jndiHost, int jndiPort, int jndiRmiPort)
+ public JNPServer(BundleContext context, String host, int jndiPort, int rmiPort)
{
this.log = new LogServiceTracker(context);
+ this.host = host;
+ this.jndiPort = jndiPort;
+ this.rmiPort = rmiPort;
+ }
+ public void start()
+ {
try
{
- NamingBean namingBean = new NamingBean()
- {
- public Naming getNamingInstance()
- {
- if (namingServer == null)
- {
- try
- {
- namingServer = new NamingServer();
- }
- catch (NamingException ex)
- {
- throw new IllegalStateException("Cannot create NamingServer", ex);
- }
- }
- return namingServer;
- }
- };
-
namingMain = new Main();
- namingMain.setNamingInfo(namingBean);
-
- namingMain.setBindAddress(jndiHost);
+ namingMain.setNamingInfo(getNamingBean());
+
+ namingMain.setBindAddress(host);
namingMain.setPort(jndiPort);
-
- namingMain.setRmiBindAddress(jndiHost);
- namingMain.setRmiPort(jndiRmiPort);
-
- log.log(LogService.LOG_DEBUG, "Naming server created");
- }
- catch (IOException ex)
- {
- log.log(LogService.LOG_ERROR, "Cannot create Naming server", ex);
- }
- }
- public void start()
- {
- if (namingMain == null)
- throw new IllegalStateException("Naming server not available");
+ namingMain.setRmiBindAddress(host);
+ namingMain.setRmiPort(rmiPort);
- try
- {
namingMain.start();
log.log(LogService.LOG_DEBUG, "Naming server started");
}
@@ -110,7 +84,32 @@
if (namingMain != null)
{
namingMain.stop();
+ namingMain = null;
+ namingServer = null;
log.log(LogService.LOG_DEBUG, "Naming server stopped");
}
}
+
+ private NamingBean getNamingBean()
+ {
+ NamingBean namingBean = new NamingBean()
+ {
+ public Naming getNamingInstance()
+ {
+ if (namingServer == null)
+ {
+ try
+ {
+ namingServer = new NamingServer();
+ }
+ catch (NamingException ex)
+ {
+ throw new IllegalStateException("Cannot create NamingServer", ex);
+ }
+ }
+ return namingServer;
+ }
+ };
+ return namingBean;
+ }
}
\ No newline at end of file
Modified: projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/ServiceActivator.java
===================================================================
--- projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/ServiceActivator.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/bundles/jndi/src/main/java/org/jboss/osgi/jndi/internal/ServiceActivator.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -28,6 +28,7 @@
import org.jboss.osgi.common.log.LogServiceTracker;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
+import org.osgi.framework.ServiceRegistration;
import org.osgi.service.log.LogService;
/**
@@ -42,6 +43,7 @@
public static final String REMOTE_JNDI_RMI_PORT = "org.jboss.osgi.jndi.rmi.port";
public static final String REMOTE_JNDI_PORT = "org.jboss.osgi.jndi.port";
+ private ServiceRegistration registration;
private JNPServer jnpServer;
private LogService log;
@@ -64,12 +66,19 @@
jnpServer = new JNPServer(context, jndiHost, Integer.parseInt(jndiPort), Integer.parseInt(jndiRmiPort));
jnpServer.start();
- context.registerService(InitialContext.class.getName(), new InitialContextFactory(jndiHost, jndiPort), null);
+ InitialContextFactory serviceFactory = new InitialContextFactory(jndiHost, jndiPort);
+ registration = context.registerService(InitialContext.class.getName(), serviceFactory, null);
log.log(LogService.LOG_DEBUG, "InitialContext registered");
}
public void stop(BundleContext context)
{
+ if (registration != null)
+ {
+ registration.unregister();
+ registration = null;
+ }
+
if (jnpServer != null)
{
jnpServer.stop();
Modified: projects/jboss-osgi/trunk/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/pom.xml 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/pom.xml 2009-05-26 14:59:13 UTC (rev 89442)
@@ -24,7 +24,13 @@
<!-- Properties -->
<properties>
+ <surefire.husky.invoker>-Dorg.jboss.osgi.husky.Invoker=org.jboss.osgi.husky.internal.OSGiInvoker</surefire.husky.invoker>
+ <surefire.log4j.output.dir>-Dlog4j.output.dir=${project.build.directory}</surefire.log4j.output.dir>
+ <surefire.protocol.handlers>-Djava.protocol.handler.pkgs=org.jboss.net.protocol\|org.jboss.virtual.protocol</surefire.protocol.handlers>
+ <surefire.test.archive.dir>-Dtest.archive.directory=${project.build.directory}/test-libs</surefire.test.archive.dir>
<surefire.security.args>-Djava.security.manager -Djava.security.policy=src/test/resources/tst.policy</surefire.security.args>
+ <surefire.xerces.parser.config>-Dorg.apache.xerces.xni.parser.XMLParserConfiguration=org.apache.xerces.parsers.XIncludeAwareParserConfiguration</surefire.xerces.parser.config>
+ <surefire.common.args>${surefire.husky.invoker} ${surefire.log4j.output.dir} ${surefire.protocol.handlers} ${surefire.test.archive.dir} ${surefire.xerces.parser.config}</surefire.common.args>
<version.aqute.bnd>0.0.323</version.aqute.bnd>
<version.equinox>3.4.2</version.equinox>
@@ -390,32 +396,7 @@
<configuration>
<redirectTestOutputToFile>false</redirectTestOutputToFile>
<failIfNoTests>false</failIfNoTests>
- <systemProperties>
- <property>
- <name>org.apache.xerces.xni.parser.XMLParserConfiguration</name>
- <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
- </property>
- <property>
- <name>org.jboss.osgi.husky.Invoker</name>
- <value>org.jboss.osgi.husky.internal.LocalInvoker</value>
- </property>
- <!--
- Implement URLStreamHandlerService
- https://jira.jboss.org/jira/browse/JBOSGI-75
- -->
- <property>
- <name>java.protocol.handler.pkgs</name>
- <value>org.jboss.net.protocol|org.jboss.virtual.protocol</value>
- </property>
- <property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
- </property>
- <property>
- <name>log4j.output.dir</name>
- <value>${basedir}/target</value>
- </property>
- </systemProperties>
+ <argLine>${surefire.common.args}</argLine>
</configuration>
</plugin>
</plugins>
Modified: projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/EmbeddedRuntime.java
===================================================================
--- projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/EmbeddedRuntime.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/EmbeddedRuntime.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -26,19 +26,15 @@
import java.net.URL;
import java.util.ArrayList;
import java.util.Enumeration;
-import java.util.Hashtable;
import java.util.List;
import java.util.Properties;
import javax.management.MBeanServer;
import javax.management.MBeanServerConnection;
import javax.management.MBeanServerFactory;
-import javax.naming.InitialContext;
-import javax.naming.NamingException;
import org.jboss.osgi.spi.framework.OSGiBootstrapProvider;
import org.jboss.osgi.spi.framework.OSGiFramework;
-import org.jboss.osgi.spi.logging.ExportedPackageHelper;
import org.jboss.osgi.spi.logging.LogEntryCache;
import org.jboss.osgi.spi.testing.internal.OSGiRuntimeImpl;
import org.osgi.framework.Bundle;
@@ -148,16 +144,6 @@
return server;
}
- @SuppressWarnings("unchecked")
- public InitialContext getInitialContext() throws NamingException
- {
- Hashtable env = new Hashtable();
- env.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
- env.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
- env.put("java.naming.provider.url", "jnp://" + getServerHost() + ":1199");
- return new InitialContext(env);
- }
-
public AbstractPackageAdmin getPackageAdmin()
{
BundleContext context = getBundleContext();
Modified: projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTest.java
===================================================================
--- projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTest.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTest.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -24,6 +24,9 @@
import java.io.File;
import java.net.URL;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
import org.jboss.logging.Logger;
import org.jboss.osgi.spi.testing.internal.OSGiRuntimeImpl;
import org.jboss.virtual.VFS;
@@ -108,4 +111,19 @@
{
return helper.getTestArchiveFile(archive);
}
+
+ public InitialContext getInitialContext() throws NamingException
+ {
+ return helper.getInitialContext();
+ }
+
+ public Integer getJndiPort()
+ {
+ return helper.getJndiPort();
+ }
+
+ public String getServerHost()
+ {
+ return helper.getServerHost();
+ }
}
Modified: projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTestHelper.java
===================================================================
--- projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTestHelper.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/OSGiTestHelper.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -24,7 +24,11 @@
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
+import java.util.Hashtable;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
import org.jboss.osgi.spi.framework.OSGiBootstrap;
import org.jboss.osgi.spi.framework.OSGiBootstrapProvider;
@@ -141,4 +145,25 @@
throw new IllegalArgumentException("Cannot obtain '" + testArchiveDir + "/" + archive + "'.");
}
+
+ @SuppressWarnings("unchecked")
+ public InitialContext getInitialContext() throws NamingException
+ {
+ Hashtable env = new Hashtable();
+ env.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
+ env.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
+ env.put("java.naming.provider.url", "jnp://" + getServerHost() + ":" + getJndiPort());
+ return new InitialContext(env);
+ }
+
+ public Integer getJndiPort()
+ {
+ String port = System.getProperty("jndi.server.port", "1099");
+ return new Integer(port);
+ }
+
+ public String getServerHost()
+ {
+ return System.getProperty("jboss.bind.address", "localhost");
+ }
}
Modified: projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/RemoteRuntime.java
===================================================================
--- projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/RemoteRuntime.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/RemoteRuntime.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -27,7 +27,6 @@
import java.io.FileInputStream;
import java.io.IOException;
import java.util.HashSet;
-import java.util.Hashtable;
import java.util.Set;
import java.util.jar.Attributes;
import java.util.jar.JarInputStream;
@@ -213,17 +212,6 @@
return mbeanServer;
}
- @SuppressWarnings("unchecked")
- public InitialContext getInitialContext() throws NamingException
- {
- Hashtable env = new Hashtable();
- String bindAddress = System.getProperty("jboss.bind.address", "localhost");
- env.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
- env.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
- env.put("java.naming.provider.url", "jnp://" + bindAddress + ":1099");
- return new InitialContext(env);
- }
-
public AbstractPackageAdmin getPackageAdmin()
{
return new RemotePackageAdmin(this);
Modified: projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/internal/OSGiRuntimeImpl.java
===================================================================
--- projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/internal/OSGiRuntimeImpl.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/spi/src/main/java/org/jboss/osgi/spi/testing/internal/OSGiRuntimeImpl.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -29,6 +29,8 @@
import java.util.Map;
import javax.management.ObjectName;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
import org.jboss.logging.Logger;
import org.jboss.osgi.spi.logging.LogEntryCache;
@@ -78,14 +80,16 @@
{
return logReaderService;
}
-
+
public void addCapability(Capability capability) throws BundleException
{
+ log.debug("Add capability : " + capability);
+
for (String location : capability.getBundles())
{
AbstractBundle bundle = installBundle(location);
bundle.start();
-
+
bundles.put(location, bundle);
}
capabilities.add(capability);
@@ -93,8 +97,10 @@
public void removeCapability(Capability capability)
{
+ log.debug("Remove capability : " + capability);
+
capabilities.remove(capability);
-
+
List<String> bundleLocations = capability.getBundles();
Collections.reverse(bundleLocations);
@@ -116,7 +122,7 @@
{
this.logEntryCache = logEntryCache;
}
-
+
public void stopLogEntryTracking()
{
if (logReaderService != null && logEntryCache != null)
@@ -126,16 +132,20 @@
logEntryCache = null;
}
}
-
+
public void shutdown()
{
+ log.debug("Start Shutdown");
+
stopLogEntryTracking();
-
+
while (capabilities.size() > 0)
{
Capability capability = capabilities.get(0);
removeCapability(capability);
}
+
+ log.debug("End Shutdown");
}
public void deploy(String location) throws Exception
@@ -161,8 +171,13 @@
return MBeanProxy.get(mbeanInterface, objectName, getMBeanServer());
}
+ public InitialContext getInitialContext() throws NamingException
+ {
+ return helper.getInitialContext();
+ }
+
public String getServerHost()
{
- return System.getProperty("jboss.bind.address", "localhost");
+ return helper.getServerHost();
}
}
Modified: projects/jboss-osgi/trunk/testsuite/functional/.project
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/.project 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/testsuite/functional/.project 2009-05-26 14:59:13 UTC (rev 89442)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>jboss-osgi-testsuite</name>
+ <name>jboss-osgi-testsuite-functional</name>
<comment></comment>
<projects>
</projects>
Modified: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/bootstrap/BundleTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/bootstrap/BundleTestCase.java 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/bootstrap/BundleTestCase.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -49,7 +49,12 @@
{
AbstractBundle bundle = runtime.installBundle("bundles/jboss-osgi-apache-xerces.jar");
bundle.start();
+ assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
+ bundle.stop();
+ assertEquals("Test bundle RESOLVED", Bundle.RESOLVED, bundle.getState());
+
+ bundle.start();
assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
}
finally
@@ -66,8 +71,13 @@
{
AbstractBundle bundle = runtime.installBundle("bundles/jboss-osgi-jaxb.jar");
bundle.start();
-
assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
+
+ bundle.stop();
+ assertEquals("Test bundle RESOLVED", Bundle.RESOLVED, bundle.getState());
+
+ bundle.start();
+ assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
}
finally
{
@@ -83,8 +93,14 @@
{
AbstractBundle bundle = runtime.installBundle("bundles/jboss-osgi-apache-xerces.jar");
bundle = runtime.installBundle("bundles/jboss-osgi-common-core.jar");
+
bundle.start();
+ assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
+ bundle.stop();
+ assertEquals("Test bundle RESOLVED", Bundle.RESOLVED, bundle.getState());
+
+ bundle.start();
assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
}
finally
@@ -103,8 +119,14 @@
bundle = runtime.installBundle("bundles/jboss-osgi-common-core.jar");
bundle = runtime.installBundle("bundles/jboss-osgi-jaxb.jar");
bundle = runtime.installBundle("bundles/jboss-osgi-xml-binding.jar");
+
bundle.start();
+ assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
+ bundle.stop();
+ assertEquals("Test bundle RESOLVED", Bundle.RESOLVED, bundle.getState());
+
+ bundle.start();
assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
}
finally
@@ -121,8 +143,14 @@
{
AbstractBundle bundle = runtime.installBundle("bundles/jboss-osgi-common-core.jar");
bundle = runtime.installBundle("bundles/jboss-osgi-jndi.jar");
+
bundle.start();
+ assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
+ bundle.stop();
+ assertEquals("Test bundle RESOLVED", Bundle.RESOLVED, bundle.getState());
+
+ bundle.start();
assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
}
finally
@@ -140,8 +168,14 @@
AbstractBundle bundle = runtime.installBundle("bundles/jboss-osgi-common-core.jar");
bundle = runtime.installBundle("bundles/jboss-osgi-jndi.jar");
bundle = runtime.installBundle("bundles/jboss-osgi-jmx.jar");
+
bundle.start();
+ assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
+ bundle.stop();
+ assertEquals("Test bundle RESOLVED", Bundle.RESOLVED, bundle.getState());
+
+ bundle.start();
assertEquals("Test bundle ACTIVE", Bundle.ACTIVE, bundle.getState());
}
finally
Added: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jmx/JMXServiceTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jmx/JMXServiceTestCase.java (rev 0)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jmx/JMXServiceTestCase.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -0,0 +1,74 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.osgi.service.jmx;
+
+//$Id$
+
+import static org.junit.Assert.assertNotNull;
+
+import javax.management.MBeanServerConnection;
+import javax.naming.InitialContext;
+
+import org.jboss.osgi.spi.testing.JMXCapability;
+import org.jboss.osgi.spi.testing.JNDICapability;
+import org.jboss.osgi.spi.testing.OSGiRuntime;
+import org.jboss.osgi.spi.testing.OSGiTest;
+import org.jboss.osgi.spi.testing.OSGiTestHelper;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * A test that verifies that JMX/JNDI startup and shutdown cleanly.
+ *
+ * @author thomas.diesler(a)jboss.com
+ * @since 12-Feb-2009
+ */
+public class JMXServiceTestCase extends OSGiTest
+{
+ @Test
+ @Ignore
+ public void testJMXService() throws Exception
+ {
+ OSGiRuntime runtime = new OSGiTestHelper().getDefaultRuntime();
+ runtime.addCapability(new JNDICapability());
+ runtime.addCapability(new JMXCapability());
+
+ // Lookup the MBeanServerConnection
+ InitialContext iniCtx = runtime.getInitialContext();
+ MBeanServerConnection rmiAdaptor = (MBeanServerConnection)iniCtx.lookup("jmx/invoker/RMIAdaptor");
+ assertNotNull("RMIAdaptor not null", rmiAdaptor);
+
+ runtime.shutdown();
+
+ // Do the second run
+ runtime = new OSGiTestHelper().getDefaultRuntime();
+ runtime.addCapability(new JNDICapability());
+ runtime.addCapability(new JMXCapability());
+
+ // Lookup the MBeanServerConnection
+ iniCtx = runtime.getInitialContext();
+ rmiAdaptor = (MBeanServerConnection)iniCtx.lookup("jmx/invoker/RMIAdaptor");
+ assertNotNull("RMIAdaptor not null", rmiAdaptor);
+
+ runtime.shutdown();
+ }
+}
\ No newline at end of file
Property changes on: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jmx/JMXServiceTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNDIServiceTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNDIServiceTestCase.java (rev 0)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNDIServiceTestCase.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -0,0 +1,85 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.osgi.service.jndi;
+
+//$Id$
+
+import static org.junit.Assert.assertEquals;
+
+import javax.naming.InitialContext;
+
+import org.jboss.osgi.spi.testing.JNDICapability;
+import org.jboss.osgi.spi.testing.OSGiRuntime;
+import org.jboss.osgi.spi.testing.OSGiTest;
+import org.jboss.osgi.spi.testing.OSGiTestHelper;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * A test that verifies that JNDI startup and shutdown cleanly.
+ *
+ * @author thomas.diesler(a)jboss.com
+ * @since 12-Feb-2009
+ */
+public class JNDIServiceTestCase extends OSGiTest
+{
+ @Test
+ @Ignore
+ public void testJNDIService() throws Exception
+ {
+ JNDICapability jndiCap = new JNDICapability();
+
+ OSGiRuntime runtime = new OSGiTestHelper().getDefaultRuntime();
+ runtime.addCapability(jndiCap);
+
+ InitialContext iniCtx = runtime.getInitialContext();
+ iniCtx.bind("foo", new String("bar"));
+ assertEquals("bar", iniCtx.lookup("foo"));
+ iniCtx.unbind("foo");
+
+ runtime.removeCapability(jndiCap);
+
+ /*
+ try
+ {
+ iniCtx = runtime.getInitialContext();
+ assertEquals("bar", iniCtx.lookup("foo"));
+ fail("NamingException expected");
+ }
+ catch (NamingException ex)
+ {
+ // expected
+ }
+ */
+
+ // Do the second run
+ runtime = new OSGiTestHelper().getDefaultRuntime();
+ runtime.addCapability(jndiCap);
+
+ iniCtx = runtime.getInitialContext();
+ iniCtx.bind("foo", new String("bar"));
+ assertEquals("bar", iniCtx.lookup("foo"));
+
+ iniCtx.unbind("foo");
+ runtime.shutdown();
+ }
+}
\ No newline at end of file
Property changes on: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNDIServiceTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNPServerTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNPServerTestCase.java (rev 0)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNPServerTestCase.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -0,0 +1,121 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.osgi.service.jndi;
+
+//$Id$
+
+import static org.junit.Assert.assertEquals;
+
+import java.net.UnknownHostException;
+
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+import org.jboss.osgi.spi.testing.OSGiTest;
+import org.jnp.interfaces.Naming;
+import org.jnp.server.Main;
+import org.jnp.server.NamingBean;
+import org.jnp.server.NamingServer;
+import org.junit.Before;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * Test JNP server start/stop
+ *
+ * @author thomas.diesler(a)jboss.com
+ * @since 12-Feb-2009
+ */
+public class JNPServerTestCase extends OSGiTest
+{
+ private Naming namingServer;
+ private Integer jndiPort;
+ private Integer rmiPort;
+
+ @Before
+ public void setUp() throws Exception
+ {
+ super.setUp();
+ jndiPort = getJndiPort();
+ rmiPort = jndiPort - 1;
+ }
+
+ @Test
+ @Ignore
+ public void testJNPServer() throws Exception
+ {
+ Main namingMain = getNaming();
+ namingMain.start();
+
+ InitialContext iniCtx = getInitialContext();
+ iniCtx.bind("foo", new String("bar"));
+ assertEquals("bar", iniCtx.lookup("foo"));
+
+ iniCtx.unbind("foo");
+ namingMain.stop();
+
+ // Restart the JNPServer
+ namingMain = getNaming();
+ namingMain.start();
+
+ iniCtx = getInitialContext();
+ iniCtx.bind("foo", new String("bar"));
+ assertEquals("bar", iniCtx.lookup("foo"));
+
+ iniCtx.unbind("foo");
+ namingMain.stop();
+ }
+
+ private Main getNaming() throws UnknownHostException
+ {
+ String host = getServerHost();
+
+ NamingBean namingBean = new NamingBean()
+ {
+ public Naming getNamingInstance()
+ {
+ if (namingServer == null)
+ {
+ try
+ {
+ namingServer = new NamingServer();
+ }
+ catch (NamingException ex)
+ {
+ throw new IllegalStateException("Cannot create NamingServer", ex);
+ }
+ }
+ return namingServer;
+ }
+ };
+
+ Main namingMain = new Main();
+ namingMain.setNamingInfo(namingBean);
+
+ namingMain.setBindAddress(host);
+ namingMain.setPort(jndiPort);
+
+ namingMain.setRmiBindAddress(host);
+ namingMain.setRmiPort(rmiPort);
+ return namingMain;
+ }
+}
\ No newline at end of file
Property changes on: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/JNPServerTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/RMIRegistryTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/RMIRegistryTestCase.java (rev 0)
+++ projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/RMIRegistryTestCase.java 2009-05-26 14:59:13 UTC (rev 89442)
@@ -0,0 +1,85 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.osgi.service.jndi;
+
+//$Id$
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
+
+import java.net.InetAddress;
+import java.rmi.RemoteException;
+import java.rmi.registry.LocateRegistry;
+import java.rmi.registry.Registry;
+import java.rmi.server.UnicastRemoteObject;
+import java.util.Arrays;
+import java.util.List;
+
+import org.jboss.net.sockets.DefaultSocketFactory;
+import org.jboss.osgi.spi.testing.OSGiTest;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * Test that the RMI registry can be created and shutdown
+ *
+ * @author thomas.diesler(a)jboss.com
+ * @since 12-Feb-2009
+ */
+public class RMIRegistryTestCase extends OSGiTest
+{
+ @Test
+ @Ignore
+ public void testRMIRegistry() throws Exception
+ {
+ String host = getServerHost();
+ int rmiPort = getJndiPort() - 1;
+
+ // Check to see if registry already created
+ Registry rmiRegistry = LocateRegistry.getRegistry(host, rmiPort);
+ try
+ {
+ rmiRegistry.list();
+ fail("No RMI registry expected");
+ }
+ catch (RemoteException ex)
+ {
+ // expected
+ }
+
+ // Create RMI registry
+ rmiRegistry = LocateRegistry.createRegistry(rmiPort, null, new DefaultSocketFactory(InetAddress.getByName(host)));
+ List<String> list = Arrays.asList(rmiRegistry.list());
+ assertEquals("No RMI objects", 0, list.size());
+
+ // Unexport the RMI registry
+ UnicastRemoteObject.unexportObject(rmiRegistry, true);
+
+ // Recreate RMI registry
+ rmiRegistry = LocateRegistry.createRegistry(rmiPort, null, new DefaultSocketFactory(InetAddress.getByName(host)));
+ list = Arrays.asList(rmiRegistry.list());
+ assertEquals("No RMI objects", 0, list.size());
+
+ // Unexport the RMI registry
+ UnicastRemoteObject.unexportObject(rmiRegistry, true);
+ }
+}
\ No newline at end of file
Property changes on: projects/jboss-osgi/trunk/testsuite/functional/src/test/java/org/jboss/test/osgi/service/jndi/RMIRegistryTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: projects/jboss-osgi/trunk/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/testsuite/pom.xml 2009-05-26 14:56:39 UTC (rev 89441)
+++ projects/jboss-osgi/trunk/testsuite/pom.xml 2009-05-26 14:59:13 UTC (rev 89442)
@@ -20,6 +20,13 @@
<module>functional</module>
</modules>
+ <!-- Properties -->
+ <properties>
+ <surefire.runtime.equinox>-Djboss.osgi.framework.config=jboss-osgi-equinox.properties</surefire.runtime.equinox>
+ <surefire.runtime.felix>-Djboss.osgi.framework.config=jboss-osgi-felix.properties</surefire.runtime.felix>
+ <surefire.runtime.knopflerfish>-Djboss.osgi.framework.config=jboss-osgi-knopflerfish.properties</surefire.runtime.knopflerfish>
+ </properties>
+
<!-- Dependencies -->
<dependencies>
<dependency>
@@ -119,6 +126,14 @@
<filtering>true</filtering>
</testResource>
</testResources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <argLine>-Djndi.server.port=1199</argLine>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
<!-- Profiles -->
@@ -135,6 +150,9 @@
<name>!framework</name>
</property>
</activation>
+ <properties>
+ <surefire.framework.profile.args>${surefire.common.args} ${surefire.runtime.felix}</surefire.framework.profile.args>
+ </properties>
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
@@ -146,36 +164,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <systemProperties>
- <!--
- Implement URLStreamHandlerService
- https://jira.jboss.org/jira/browse/JBOSGI-75
- -->
- <property>
- <name>java.protocol.handler.pkgs</name>
- <value>org.jboss.net.protocol|org.jboss.virtual.protocol</value>
- </property>
- <property>
- <name>org.apache.xerces.xni.parser.XMLParserConfiguration</name>
- <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
- </property>
- <property>
- <name>org.jboss.osgi.husky.Invoker</name>
- <value>org.jboss.osgi.husky.internal.OSGiInvoker</value>
- </property>
- <property>
- <name>log4j.output.dir</name>
- <value>${project.build.directory}</value>
- </property>
- <property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
- </property>
- <property>
- <name>jboss.osgi.framework.config</name>
- <value>jboss-osgi-felix.properties</value>
- </property>
- </systemProperties>
+ <argLine>${surefire.framework.profile.args}</argLine>
</configuration>
</plugin>
</plugins>
@@ -194,6 +183,9 @@
<value>felix</value>
</property>
</activation>
+ <properties>
+ <surefire.framework.profile.args>${surefire.common.args} ${surefire.runtime.felix}</surefire.framework.profile.args>
+ </properties>
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
@@ -205,36 +197,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <systemProperties>
- <!--
- Implement URLStreamHandlerService
- https://jira.jboss.org/jira/browse/JBOSGI-75
- -->
- <property>
- <name>java.protocol.handler.pkgs</name>
- <value>org.jboss.net.protocol|org.jboss.virtual.protocol</value>
- </property>
- <property>
- <name>org.apache.xerces.xni.parser.XMLParserConfiguration</name>
- <value>org.apache.xerces.parsers.XIncludeAwareParserConfiguration</value>
- </property>
- <property>
- <name>org.jboss.osgi.husky.Invoker</name>
- <value>org.jboss.osgi.husky.internal.OSGiInvoker</value>
- </property>
- <property>
- <name>log4j.output.dir</name>
- <value>${project.build.directory}</value>
- </property>
- <property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
- </property>
- <property>
- <name>jboss.osgi.framework.config</name>
- <value>jboss-osgi-felix.properties</value>
- </property>
- </systemProperties>
+ <argLine>${surefire.framework.profile.args}</argLine>
</configuration>
</plugin>
</plugins>
@@ -253,6 +216,9 @@
<value>equinox</value>
</property>
</activation>
+ <properties>
+ <surefire.framework.profile.args>${surefire.common.args} ${surefire.runtime.equinox}</surefire.framework.profile.args>
+ </properties>
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
@@ -264,20 +230,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <systemProperties>
- <property>
- <name>log4j.output.dir</name>
- <value>${basedir}/target</value>
- </property>
- <property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
- </property>
- <property>
- <name>jboss.osgi.framework.config</name>
- <value>jboss-osgi-equinox.properties</value>
- </property>
- </systemProperties>
+ <argLine>${surefire.framework.profile.args}</argLine>
<includes>
<!-- Minimal bootstrap testing -->
<include>org/jboss/test/osgi/bootstrap/BootstrapTestCase.*</include>
@@ -300,6 +253,9 @@
<value>knopflerfish</value>
</property>
</activation>
+ <properties>
+ <surefire.framework.profile.args>${surefire.common.args} ${surefire.runtime.knopflerfish}</surefire.framework.profile.args>
+ </properties>
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
@@ -311,20 +267,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <systemProperties>
- <property>
- <name>log4j.output.dir</name>
- <value>${basedir}/target</value>
- </property>
- <property>
- <name>test.archive.directory</name>
- <value>${project.build.directory}/test-libs</value>
- </property>
- <property>
- <name>jboss.osgi.framework.config</name>
- <value>jboss-osgi-knopflerfish.properties</value>
- </property>
- </systemProperties>
+ <argLine>${surefire.framework.profile.args}</argLine>
<includes>
<!-- Minimal bootstrap testing -->
<include>org/jboss/test/osgi/bootstrap/BootstrapTestCase.*</include>
@@ -351,6 +294,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
+ <argLine>${surefire.framework.profile.args} -Djndi.server.port=1199</argLine>
<excludes>
<!-- Exclude tests that require remote access -->
<exclude>org/jboss/test/osgi/jbossas/**</exclude>
17 years, 1 month
JBoss-OSGI SVN: r89428 - in projects/jboss-osgi/trunk: bundles and 4 other directories.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-26 05:17:50 -0400 (Tue, 26 May 2009)
New Revision: 89428
Removed:
projects/jboss-osgi/trunk/bundles/.project
projects/jboss-osgi/trunk/integration/.project
projects/jboss-osgi/trunk/repository/.project
projects/jboss-osgi/trunk/runtime/.project
Modified:
projects/jboss-osgi/trunk/3rdparty/jbossxb/.project
projects/jboss-osgi/trunk/bundles/jmx/.project
Log:
Fix eclipse build
Modified: projects/jboss-osgi/trunk/3rdparty/jbossxb/.project
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/jbossxb/.project 2009-05-26 08:56:15 UTC (rev 89427)
+++ projects/jboss-osgi/trunk/3rdparty/jbossxb/.project 2009-05-26 09:17:50 UTC (rev 89428)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>jbossxb-bundle</name>
+ <name>jboss-osgi-xml-binding</name>
<comment></comment>
<projects>
</projects>
@@ -12,7 +12,7 @@
</buildCommand>
</buildSpec>
<natures>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
Deleted: projects/jboss-osgi/trunk/bundles/.project
===================================================================
--- projects/jboss-osgi/trunk/bundles/.project 2009-05-26 08:56:15 UTC (rev 89427)
+++ projects/jboss-osgi/trunk/bundles/.project 2009-05-26 09:17:50 UTC (rev 89428)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>jboss-osgi-bundles</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
Modified: projects/jboss-osgi/trunk/bundles/jmx/.project
===================================================================
--- projects/jboss-osgi/trunk/bundles/jmx/.project 2009-05-26 08:56:15 UTC (rev 89427)
+++ projects/jboss-osgi/trunk/bundles/jmx/.project 2009-05-26 09:17:50 UTC (rev 89428)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>jboss-osgi-blueprint</name>
+ <name>jboss-osgi-jmx</name>
<comment></comment>
<projects>
</projects>
@@ -17,7 +17,7 @@
</buildCommand>
</buildSpec>
<natures>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
Deleted: projects/jboss-osgi/trunk/integration/.project
===================================================================
--- projects/jboss-osgi/trunk/integration/.project 2009-05-26 08:56:15 UTC (rev 89427)
+++ projects/jboss-osgi/trunk/integration/.project 2009-05-26 09:17:50 UTC (rev 89428)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>jboss-osgi-integration</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
Deleted: projects/jboss-osgi/trunk/repository/.project
===================================================================
--- projects/jboss-osgi/trunk/repository/.project 2009-05-26 08:56:15 UTC (rev 89427)
+++ projects/jboss-osgi/trunk/repository/.project 2009-05-26 09:17:50 UTC (rev 89428)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>jboss-osgi-repository</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
Deleted: projects/jboss-osgi/trunk/runtime/.project
===================================================================
--- projects/jboss-osgi/trunk/runtime/.project 2009-05-26 08:56:15 UTC (rev 89427)
+++ projects/jboss-osgi/trunk/runtime/.project 2009-05-26 09:17:50 UTC (rev 89428)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>jboss-osgi-runtime</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
17 years, 1 month
JBoss-OSGI SVN: r89427 - in projects/jboss-osgi/trunk: 3rdparty/apache-xerces and 26 other directories.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-26 04:56:15 -0400 (Tue, 26 May 2009)
New Revision: 89427
Modified:
projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml
projects/jboss-osgi/trunk/3rdparty/jaxb/pom.xml
projects/jboss-osgi/trunk/3rdparty/jboss-common-core/pom.xml
projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml
projects/jboss-osgi/trunk/blueprint/impl/pom.xml
projects/jboss-osgi/trunk/blueprint/pom.xml
projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml
projects/jboss-osgi/trunk/bundles/common/pom.xml
projects/jboss-osgi/trunk/bundles/jmx/pom.xml
projects/jboss-osgi/trunk/bundles/jndi/pom.xml
projects/jboss-osgi/trunk/bundles/logging/pom.xml
projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml
projects/jboss-osgi/trunk/bundles/remotelog/pom.xml
projects/jboss-osgi/trunk/bundles/webconsole/pom.xml
projects/jboss-osgi/trunk/husky/harness/pom.xml
projects/jboss-osgi/trunk/husky/pom.xml
projects/jboss-osgi/trunk/husky/testsuite/pom.xml
projects/jboss-osgi/trunk/integration/deployers/pom.xml
projects/jboss-osgi/trunk/integration/jbossas/pom.xml
projects/jboss-osgi/trunk/pom.xml
projects/jboss-osgi/trunk/repository/api/pom.xml
projects/jboss-osgi/trunk/repository/pom.xml
projects/jboss-osgi/trunk/runtime/equinox/pom.xml
projects/jboss-osgi/trunk/runtime/felix/pom.xml
projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml
projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml
projects/jboss-osgi/trunk/runtime/microcontainer/pom.xml
projects/jboss-osgi/trunk/spi/pom.xml
Log:
Prepare for release - remove dependencies on SNAPSHOTS
Modified: projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-apache-xerces</artifactId>
<packaging>bundle</packaging>
- <version>2.9.1-SNAPSHOT</version>
+ <version>2.9.1</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/3rdparty/jaxb/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/jaxb/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/3rdparty/jaxb/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-jaxb</artifactId>
<packaging>bundle</packaging>
- <version>2.1.10-SNAPSHOT</version>
+ <version>2.1.10</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/3rdparty/jboss-common-core/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/jboss-common-core/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/3rdparty/jboss-common-core/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-common-core</artifactId>
<packaging>bundle</packaging>
- <version>2.2.11-SNAPSHOT</version>
+ <version>2.2.11</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
@@ -16,7 +16,7 @@
</parent>
<properties>
- <version.jboss.common.core>2.2.11-SNAPSHOT</version.jboss.common.core>
+ <version.jboss.common.core>2.2.11.SP1</version.jboss.common.core>
</properties>
<dependencies>
Modified: projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-xml-binding</artifactId>
<packaging>bundle</packaging>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.0.0</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/blueprint/impl/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/impl/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/blueprint/impl/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-blueprint</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Alpha1</version>
</parent>
<!-- Dependencies -->
Modified: projects/jboss-osgi/trunk/blueprint/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/blueprint/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-blueprint</artifactId>
<packaging>pom</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Alpha1</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-blueprint</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Alpha1</version>
</parent>
<!-- Dependencies -->
Modified: projects/jboss-osgi/trunk/bundles/common/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/common/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/common/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-common</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/bundles/jmx/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/jmx/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/jmx/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-jmx</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/bundles/jndi/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/jndi/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/jndi/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-jndi</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/bundles/logging/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/logging/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/logging/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-logging</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<!-- Parent -->
<parent>
Modified: projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-microcontainer</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<!-- Parent -->
<parent>
Modified: projects/jboss-osgi/trunk/bundles/remotelog/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/remotelog/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/remotelog/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-remotelog</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<!-- Parent -->
<parent>
Modified: projects/jboss-osgi/trunk/bundles/webconsole/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/webconsole/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/bundles/webconsole/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -7,7 +7,7 @@
<artifactId>jboss-osgi-webconsole</artifactId>
<packaging>bundle</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi.bundles</groupId>
Modified: projects/jboss-osgi/trunk/husky/harness/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/harness/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/husky/harness/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-husky</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0</version>
</parent>
<!-- Dependencies -->
Modified: projects/jboss-osgi/trunk/husky/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/husky/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -22,7 +22,7 @@
<artifactId>jboss-osgi-husky</artifactId>
<packaging>pom</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0</version>
<!-- Parent -->
<parent>
Modified: projects/jboss-osgi/trunk/husky/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-husky</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0</version>
</parent>
<!-- Dependencies -->
Modified: projects/jboss-osgi/trunk/integration/deployers/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/integration/deployers/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/integration/deployers/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-deployers</artifactId>
<packaging>jar</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/integration/jbossas/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/integration/jbossas/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/integration/jbossas/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-integration-jbossas</artifactId>
<packaging>jar</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -47,25 +47,25 @@
<version.jboss.logging>2.0.5.GA</version.jboss.logging>
<version.jboss.microcontainer>2.0.4.GA</version.jboss.microcontainer>
<version.jboss.naming>5.0.1.GA</version.jboss.naming>
- <version.jboss.osgi.apache.xerces>2.9.1-SNAPSHOT</version.jboss.osgi.apache.xerces>
- <version.jboss.osgi.blueprint>1.0.0-SNAPSHOT</version.jboss.osgi.blueprint>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
- <version.jboss.osgi.common.core>2.2.11-SNAPSHOT</version.jboss.osgi.common.core>
- <version.jboss.osgi.deployers>1.0.0-SNAPSHOT</version.jboss.osgi.deployers>
- <version.jboss.osgi.husky>1.0.0-SNAPSHOT</version.jboss.osgi.husky>
- <version.jboss.osgi.integration.jbossas>1.0.0-SNAPSHOT</version.jboss.osgi.integration.jbossas>
- <version.jboss.osgi.jaxb>2.1.10-SNAPSHOT</version.jboss.osgi.jaxb>
- <version.jboss.osgi.jmx>1.0.0-SNAPSHOT</version.jboss.osgi.jmx>
- <version.jboss.osgi.jndi>1.0.0-SNAPSHOT</version.jboss.osgi.jndi>
- <version.jboss.osgi.logging>1.0.0-SNAPSHOT</version.jboss.osgi.logging>
- <version.jboss.osgi.microcontainer>1.0.0-SNAPSHOT</version.jboss.osgi.microcontainer>
- <version.jboss.osgi.remotelog>1.0.0-SNAPSHOT</version.jboss.osgi.remotelog>
- <version.jboss.osgi.runtime.equinox>1.0.0-SNAPSHOT</version.jboss.osgi.runtime.equinox>
- <version.jboss.osgi.runtime.felix>1.0.0-SNAPSHOT</version.jboss.osgi.runtime.felix>
- <version.jboss.osgi.runtime.knopflerfish>1.0.0-SNAPSHOT</version.jboss.osgi.runtime.knopflerfish>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.jboss.osgi.webconsole>1.0.0-SNAPSHOT</version.jboss.osgi.webconsole>
- <version.jboss.osgi.xml.binding>2.0.0-SNAPSHOT</version.jboss.osgi.xml.binding>
+ <version.jboss.osgi.apache.xerces>2.9.1</version.jboss.osgi.apache.xerces>
+ <version.jboss.osgi.blueprint>1.0.0.Alpha1</version.jboss.osgi.blueprint>
+ <version.jboss.osgi.common>1.0.0.Beta2</version.jboss.osgi.common>
+ <version.jboss.osgi.common.core>2.2.11</version.jboss.osgi.common.core>
+ <version.jboss.osgi.deployers>1.0.0.Beta2</version.jboss.osgi.deployers>
+ <version.jboss.osgi.husky>1.0.0</version.jboss.osgi.husky>
+ <version.jboss.osgi.integration.jbossas>1.0.0.Beta2</version.jboss.osgi.integration.jbossas>
+ <version.jboss.osgi.jaxb>2.1.10</version.jboss.osgi.jaxb>
+ <version.jboss.osgi.jmx>1.0.0.Beta2</version.jboss.osgi.jmx>
+ <version.jboss.osgi.jndi>1.0.0.Beta2</version.jboss.osgi.jndi>
+ <version.jboss.osgi.logging>1.0.0.Beta2</version.jboss.osgi.logging>
+ <version.jboss.osgi.microcontainer>1.0.0.Beta2</version.jboss.osgi.microcontainer>
+ <version.jboss.osgi.remotelog>1.0.0.Beta2</version.jboss.osgi.remotelog>
+ <version.jboss.osgi.runtime.equinox>1.0.0.Beta2</version.jboss.osgi.runtime.equinox>
+ <version.jboss.osgi.runtime.felix>1.0.0.Beta2</version.jboss.osgi.runtime.felix>
+ <version.jboss.osgi.runtime.knopflerfish>1.0.0.Beta2</version.jboss.osgi.runtime.knopflerfish>
+ <version.jboss.osgi.spi>1.0.0.Beta2</version.jboss.osgi.spi>
+ <version.jboss.osgi.webconsole>1.0.0.Beta2</version.jboss.osgi.webconsole>
+ <version.jboss.osgi.xml.binding>2.0.0</version.jboss.osgi.xml.binding>
<version.jbossas>5.0.1.GA</version.jbossas>
<version.junit>4.6</version.junit>
<version.knopflerfish>2.2.0</version.knopflerfish>
Modified: projects/jboss-osgi/trunk/repository/api/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/repository/api/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/repository/api/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-repository</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
</parent>
<!-- Dependencies -->
Modified: projects/jboss-osgi/trunk/repository/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/repository/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/repository/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -5,7 +5,7 @@
<artifactId>jboss-osgi-repository</artifactId>
<packaging>pom</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/runtime/equinox/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/equinox/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/runtime/equinox/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-runtime-equinox</artifactId>
<packaging>jar</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/runtime/felix/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/felix/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/runtime/felix/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-runtime-felix</artifactId>
<packaging>jar</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-runtime-knopflerfish</artifactId>
<packaging>jar</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-runtime-microcontainer</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
</parent>
<!-- Properties -->
Modified: projects/jboss-osgi/trunk/runtime/microcontainer/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/microcontainer/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/runtime/microcontainer/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -5,7 +5,7 @@
<artifactId>jboss-osgi-runtime-microcontainer</artifactId>
<packaging>pom</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<parent>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/spi/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/spi/pom.xml 2009-05-26 08:46:57 UTC (rev 89426)
+++ projects/jboss-osgi/trunk/spi/pom.xml 2009-05-26 08:56:15 UTC (rev 89427)
@@ -8,7 +8,7 @@
<artifactId>jboss-osgi-spi</artifactId>
<packaging>jar</packaging>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta2</version>
<!-- Parent -->
<parent>
17 years, 1 month
JBoss-OSGI SVN: r89423 - in projects/jboss-osgi/trunk: 3rdparty/apache-xerces and 25 other directories.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-26 04:10:22 -0400 (Tue, 26 May 2009)
New Revision: 89423
Modified:
projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml
projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml
projects/jboss-osgi/trunk/blueprint/pom.xml
projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml
projects/jboss-osgi/trunk/blueprint/testsuite/scripts/assembly-bundles.xml
projects/jboss-osgi/trunk/blueprint/testsuite/src/test/resources/jboss-osgi-framework.properties
projects/jboss-osgi/trunk/bundles/common/pom.xml
projects/jboss-osgi/trunk/bundles/jmx/pom.xml
projects/jboss-osgi/trunk/bundles/jndi/pom.xml
projects/jboss-osgi/trunk/bundles/logging/pom.xml
projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml
projects/jboss-osgi/trunk/bundles/remotelog/pom.xml
projects/jboss-osgi/trunk/distribution/pom.xml
projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-equinox.properties
projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-felix.properties
projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-knopflerfish.properties
projects/jboss-osgi/trunk/docbook/pom.xml
projects/jboss-osgi/trunk/husky/pom.xml
projects/jboss-osgi/trunk/husky/testsuite/pom.xml
projects/jboss-osgi/trunk/integration/deployers/pom.xml
projects/jboss-osgi/trunk/integration/jbossas/pom.xml
projects/jboss-osgi/trunk/pom.xml
projects/jboss-osgi/trunk/repository/api/pom.xml
projects/jboss-osgi/trunk/runtime/equinox/pom.xml
projects/jboss-osgi/trunk/runtime/felix/pom.xml
projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml
projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml
projects/jboss-osgi/trunk/spi/pom.xml
projects/jboss-osgi/trunk/testsuite/.project
Log:
Move dependency management to top-level
Modified: projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/3rdparty/apache-xerces/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -19,7 +19,6 @@
<version.apache.xerces>2.9.1</version.apache.xerces>
<version.wutka.dtdparser>1.2.1</version.wutka.dtdparser>
<version.xml.resolver>1.2</version.xml.resolver>
- <version.osgi>r4v41</version.osgi>
</properties>
<dependencies>
@@ -47,13 +46,11 @@
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/3rdparty/jbossxb/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,10 +16,8 @@
</parent>
<properties>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
<version.jboss.xb>2.0.0.GA</version.jboss.xb>
<version.javassist>3.9.0.GA</version.javassist>
- <version.osgi>r4v41</version.osgi>
<!-- Transitive Dependencies -->
<version.jboss.reflect>2.0.0.GA</version.jboss.reflect>
@@ -41,19 +39,16 @@
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/blueprint/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/blueprint/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -21,91 +21,4 @@
<module>testsuite</module>
</modules>
- <!-- Properties -->
- <properties>
- <version.apache.xerces.bundle>2.9.1-SNAPSHOT</version.apache.xerces.bundle>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
- <version.jboss.osgi.husky>1.0.0-SNAPSHOT</version.jboss.osgi.husky>
- <version.jboss.osgi.jmx>1.0.0-SNAPSHOT</version.jboss.osgi.jmx>
- <version.jboss.osgi.logging>1.0.0-SNAPSHOT</version.jboss.osgi.logging>
- <version.jboss.osgi.runtime.felix>1.0.0-SNAPSHOT</version.jboss.osgi.runtime.felix>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.jboss.common.core.bundle>2.2.11-SNAPSHOT</version.jboss.common.core.bundle>
- <version.jbossxb.bundle>2.0.0-SNAPSHOT</version.jbossxb.bundle>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
- <!-- Dependencies -->
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>biz.aQute</groupId>
- <artifactId>bnd</artifactId>
- <version>${version.aqute.bnd}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
- </dependency>
-
-
- <!-- OSGi Dependencies -->
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
- </dependency>
-
- <!-- Bundle Dependencies -->
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-apache-xerces</artifactId>
- <version>${version.apache.xerces.bundle}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-jmx</artifactId>
- <version>${version.jboss.osgi.jmx}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-husky-harness</artifactId>
- <version>${version.jboss.osgi.husky}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-logging</artifactId>
- <version>${version.jboss.osgi.logging}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-xml-binding</artifactId>
- <version>${version.jbossxb.bundle}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-common-core</artifactId>
- <version>${version.jboss.common.core.bundle}</version>
- </dependency>
-
- <!-- Test Dependencies -->
- <dependency>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-runtime-felix</artifactId>
- <version>${version.jboss.osgi.runtime.felix}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
</project>
Modified: projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/blueprint/testsuite/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -32,6 +32,8 @@
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-husky-harness</artifactId>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
@@ -45,7 +47,6 @@
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-blueprint-impl</artifactId>
- <version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -65,6 +66,11 @@
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-jaxb</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-jmx</artifactId>
<scope>provided</scope>
</dependency>
Modified: projects/jboss-osgi/trunk/blueprint/testsuite/scripts/assembly-bundles.xml
===================================================================
--- projects/jboss-osgi/trunk/blueprint/testsuite/scripts/assembly-bundles.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/blueprint/testsuite/scripts/assembly-bundles.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -20,6 +20,7 @@
<include>*:jboss-osgi-common:jar</include>
<include>*:jboss-osgi-common-core:jar</include>
<include>*:jboss-osgi-husky-harness:jar</include>
+ <include>*:jboss-osgi-jaxb:jar</include>
<include>*:jboss-osgi-jmx:jar</include>
<include>*:jboss-osgi-logging:jar</include>
<include>*:jboss-osgi-xml-binding:jar</include>
Modified: projects/jboss-osgi/trunk/blueprint/testsuite/src/test/resources/jboss-osgi-framework.properties
===================================================================
--- projects/jboss-osgi/trunk/blueprint/testsuite/src/test/resources/jboss-osgi-framework.properties 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/blueprint/testsuite/src/test/resources/jboss-osgi-framework.properties 2009-05-26 08:10:22 UTC (rev 89423)
@@ -34,6 +34,7 @@
file://${test.archive.directory}/bundles/jboss-osgi-husky-harness.jar \
file://${test.archive.directory}/bundles/jboss-osgi-common-core.jar \
file://${test.archive.directory}/bundles/jboss-osgi-apache-xerces.jar \
+ file://${test.archive.directory}/bundles/jboss-osgi-jaxb.jar \
file://${test.archive.directory}/bundles/jboss-osgi-xml-binding.jar \
file://${test.archive.directory}/bundles/jboss-osgi-blueprint-impl.jar
\ No newline at end of file
Modified: projects/jboss-osgi/trunk/bundles/common/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/common/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/bundles/common/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -15,11 +15,6 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
@@ -27,16 +22,16 @@
<artifactId>jboss-logging-spi</artifactId>
<scope>provided</scope>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/bundles/jmx/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/jmx/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/bundles/jmx/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -15,24 +15,18 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
+
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
@@ -40,19 +34,16 @@
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-jndi</artifactId>
- <version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/bundles/jndi/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/jndi/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/bundles/jndi/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -17,9 +17,7 @@
<!-- Properties -->
<properties>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
<version.jboss.naming>5.0.1.GA</version.jboss.naming>
- <version.osgi>r4v41</version.osgi>
</properties>
<!-- Dependencies -->
@@ -31,26 +29,25 @@
<version>${version.jboss.naming}</version>
<scope>provided</scope>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <scope>provided</scope>
+ </dependency>
<!-- Bundles -->
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
- <scope>provided</scope>
- </dependency>
</dependencies>
<build>
Modified: projects/jboss-osgi/trunk/bundles/logging/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/logging/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/bundles/logging/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -17,11 +17,6 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
@@ -29,16 +24,16 @@
<artifactId>jboss-logging-spi</artifactId>
<scope>provided</scope>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/bundles/microcontainer/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -17,75 +17,52 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.apache.xerces.bundle>2.9.1-SNAPSHOT</version.apache.xerces.bundle>
- <version.jboss.deployers>2.0.5.GA</version.jboss.deployers>
- <version.jboss.microcontainer>2.0.4.GA</version.jboss.microcontainer>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
- <version.jboss.osgi.deployers>1.0.0-SNAPSHOT</version.jboss.osgi.deployers>
- <version.jboss.osgi.jmx>1.0.0-SNAPSHOT</version.jboss.osgi.jmx>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.jbossxb.bundle>2.0.0-SNAPSHOT</version.jbossxb.bundle>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.deployers</groupId>
<artifactId>jboss-deployers-vfs</artifactId>
- <version>${version.jboss.deployers}</version>
</dependency>
<dependency>
<groupId>org.jboss.microcontainer</groupId>
<artifactId>jboss-kernel</artifactId>
- <version>${version.jboss.microcontainer}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-deployers</artifactId>
- <version>${version.jboss.osgi.deployers}</version>
</dependency>
<!-- Bundle Dependencies -->
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-jmx</artifactId>
- <version>${version.jboss.osgi.jmx}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-apache-xerces</artifactId>
- <version>${version.apache.xerces.bundle}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-xml-binding</artifactId>
- <version>${version.jbossxb.bundle}</version>
</dependency>
<!-- Provided Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/bundles/remotelog/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/bundles/remotelog/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/bundles/remotelog/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -20,10 +20,8 @@
<!-- Properties -->
<properties>
<version.concurrent>1.3.4</version.concurrent>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
<version.jboss.remoting>2.5.0.SP2</version.jboss.remoting>
<version.jboss.serialization>1.0.3.GA</version.jboss.serialization>
- <version.osgi>r4v41</version.osgi>
</properties>
<!-- Dependencies -->
@@ -31,18 +29,17 @@
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
Modified: projects/jboss-osgi/trunk/distribution/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/distribution/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/distribution/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -24,19 +24,13 @@
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi</artifactId>
<version>1.0.0.Beta2</version>
- <relativePath>../../pom.xml</relativePath>
</parent>
- <!-- Properties -->
- <properties>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-deployers</artifactId>
- <version>${version.jboss.osgi.deployers}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi</groupId>
@@ -47,7 +41,6 @@
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-integration-jbossas</artifactId>
- <version>${version.jboss.osgi.integration.jbossas}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi</groupId>
Modified: projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-equinox.properties
===================================================================
--- projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-equinox.properties 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-equinox.properties 2009-05-26 08:10:22 UTC (rev 89423)
@@ -63,10 +63,10 @@
# Bundles that need to be started automatically
org.jboss.osgi.spi.framework.autoStart=\
file://${osgi.home}/bundles/org.apache.felix.log.jar \
- file://${osgi.home}/bundles/apache-xerces-bundle.jar \
- file://${osgi.home}/bundles/jboss-common-core-bundle.jar \
- file://${osgi.home}/bundles/jaxb-bundle.jar \
- file://${osgi.home}/bundles/jbossxb-bundle.jar \
+ file://${osgi.home}/bundles/jboss-osgi-apache-xerces.jar \
+ file://${osgi.home}/bundles/jboss-osgi-common-core.jar \
+ file://${osgi.home}/bundles/jboss-osgi-jaxb.jar \
+ file://${osgi.home}/bundles/jboss-osgi-xml-binding.jar \
file://${osgi.home}/bundles/jboss-osgi-common.jar \
file://${osgi.home}/bundles/jboss-osgi-logging.jar \
file://${osgi.home}/bundles/jboss-osgi-jndi.jar \
Modified: projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-felix.properties
===================================================================
--- projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-felix.properties 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-felix.properties 2009-05-26 08:10:22 UTC (rev 89423)
@@ -63,10 +63,10 @@
# Bundles that need to be started automatically
org.jboss.osgi.spi.framework.autoStart=\
file://${osgi.home}/bundles/org.apache.felix.log.jar \
- file://${osgi.home}/bundles/apache-xerces-bundle.jar \
- file://${osgi.home}/bundles/jboss-common-core-bundle.jar \
- file://${osgi.home}/bundles/jaxb-bundle.jar \
- file://${osgi.home}/bundles/jbossxb-bundle.jar \
+ file://${osgi.home}/bundles/jboss-osgi-apache-xerces.jar \
+ file://${osgi.home}/bundles/jboss-osgi-common-core.jar \
+ file://${osgi.home}/bundles/jboss-osgi-jaxb.jar \
+ file://${osgi.home}/bundles/jboss-osgi-xml-binding.jar \
file://${osgi.home}/bundles/jboss-osgi-common.jar \
file://${osgi.home}/bundles/jboss-osgi-logging.jar \
file://${osgi.home}/bundles/jboss-osgi-jndi.jar \
Modified: projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-knopflerfish.properties
===================================================================
--- projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-knopflerfish.properties 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/distribution/runtime/conf/jboss-osgi-knopflerfish.properties 2009-05-26 08:10:22 UTC (rev 89423)
@@ -63,10 +63,10 @@
# Bundles that need to be started automatically
org.jboss.osgi.spi.framework.autoStart=\
file://${osgi.home}/bundles/org.apache.felix.log.jar \
- file://${osgi.home}/bundles/apache-xerces-bundle.jar \
- file://${osgi.home}/bundles/jboss-common-core-bundle.jar \
- file://${osgi.home}/bundles/jaxb-bundle.jar \
- file://${osgi.home}/bundles/jbossxb-bundle.jar \
+ file://${osgi.home}/bundles/jboss-osgi-apache-xerces.jar \
+ file://${osgi.home}/bundles/jboss-osgi-common-core.jar \
+ file://${osgi.home}/bundles/jboss-osgi-jaxb.jar \
+ file://${osgi.home}/bundles/jboss-osgi-xml-binding.jar \
file://${osgi.home}/bundles/jboss-osgi-common.jar \
file://${osgi.home}/bundles/jboss-osgi-logging.jar \
file://${osgi.home}/bundles/jboss-osgi-jndi.jar \
Modified: projects/jboss-osgi/trunk/docbook/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/docbook/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/docbook/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -24,7 +24,6 @@
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi</artifactId>
<version>1.0.0.Beta2</version>
- <relativePath>../../pom.xml</relativePath>
</parent>
<!-- Plugins -->
Modified: projects/jboss-osgi/trunk/husky/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/husky/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,7 +16,7 @@
<modelVersion>4.0.0</modelVersion>
<name>JBossOSGi Husky</name>
- <description>JBoss OSGi Bundle Testsuite</description>
+ <description>JBoss OSGi Test Support</description>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-husky</artifactId>
@@ -37,55 +37,4 @@
<module>testsuite</module>
</modules>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
- <version.jboss.osgi.jmx>1.0.0-SNAPSHOT</version.jboss.osgi.jmx>
- <version.jboss.osgi.logging>1.0.0-SNAPSHOT</version.jboss.osgi.logging>
- <version.jboss.osgi.runtime.felix>1.0.0-SNAPSHOT</version.jboss.osgi.runtime.felix>
- <version.junit>4.6</version.junit>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
- <!-- Dependencies -->
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-jmx</artifactId>
- <version>${version.jboss.osgi.jmx}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-logging</artifactId>
- <version>${version.jboss.osgi.logging}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-runtime-felix</artifactId>
- <version>${version.jboss.osgi.runtime.felix}</version>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
- </dependency>
- <dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${version.junit}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
</project>
Modified: projects/jboss-osgi/trunk/husky/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -56,25 +56,21 @@
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-husky-harness</artifactId>
- <version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-jmx</artifactId>
- <version>${version.jboss.osgi.jmx}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-logging</artifactId>
- <version>${version.jboss.osgi.logging}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/integration/deployers/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/integration/deployers/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/integration/deployers/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,31 +16,22 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.jboss.system.jmx>5.0.1.GA</version.jboss.system.jmx>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/integration/jbossas/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/integration/jbossas/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/integration/jbossas/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,29 +16,22 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
+
+ <!-- OSGi Dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -40,18 +40,21 @@
<version.felix.webconsole>1.2.8</version.felix.webconsole>
<version.izpack>4.2.0</version.izpack>
<version.javax.servlet>2.4</version.javax.servlet>
- <version.jaxb.bundle>2.1.10-SNAPSHOT</version.jaxb.bundle>
- <version.jboss.common.core.bundle>2.2.11-SNAPSHOT</version.jboss.common.core.bundle>
+ <version.jboss.aop>2.0.1.GA</version.jboss.aop>
+ <version.jboss.deployers>2.0.5.GA</version.jboss.deployers>
<version.jboss.jdocbook.plugin>2.1.2</version.jboss.jdocbook.plugin>
<version.jboss.jdocbook.style>1.1.0</version.jboss.jdocbook.style>
<version.jboss.logging>2.0.5.GA</version.jboss.logging>
<version.jboss.microcontainer>2.0.4.GA</version.jboss.microcontainer>
<version.jboss.naming>5.0.1.GA</version.jboss.naming>
<version.jboss.osgi.apache.xerces>2.9.1-SNAPSHOT</version.jboss.osgi.apache.xerces>
+ <version.jboss.osgi.blueprint>1.0.0-SNAPSHOT</version.jboss.osgi.blueprint>
<version.jboss.osgi.common>1.0.0-SNAPSHOT</version.jboss.osgi.common>
+ <version.jboss.osgi.common.core>2.2.11-SNAPSHOT</version.jboss.osgi.common.core>
<version.jboss.osgi.deployers>1.0.0-SNAPSHOT</version.jboss.osgi.deployers>
- <version.jboss.osgi.jbossxb>2.0.0-SNAPSHOT</version.jboss.osgi.jbossxb>
+ <version.jboss.osgi.husky>1.0.0-SNAPSHOT</version.jboss.osgi.husky>
<version.jboss.osgi.integration.jbossas>1.0.0-SNAPSHOT</version.jboss.osgi.integration.jbossas>
+ <version.jboss.osgi.jaxb>2.1.10-SNAPSHOT</version.jboss.osgi.jaxb>
<version.jboss.osgi.jmx>1.0.0-SNAPSHOT</version.jboss.osgi.jmx>
<version.jboss.osgi.jndi>1.0.0-SNAPSHOT</version.jboss.osgi.jndi>
<version.jboss.osgi.logging>1.0.0-SNAPSHOT</version.jboss.osgi.logging>
@@ -62,6 +65,7 @@
<version.jboss.osgi.runtime.knopflerfish>1.0.0-SNAPSHOT</version.jboss.osgi.runtime.knopflerfish>
<version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
<version.jboss.osgi.webconsole>1.0.0-SNAPSHOT</version.jboss.osgi.webconsole>
+ <version.jboss.osgi.xml.binding>2.0.0-SNAPSHOT</version.jboss.osgi.xml.binding>
<version.jbossas>5.0.1.GA</version.jbossas>
<version.junit>4.6</version.junit>
<version.knopflerfish>2.2.0</version.knopflerfish>
@@ -71,71 +75,72 @@
<!-- DependencyManagement -->
<dependencyManagement>
<dependencies>
+
+ <!-- JBoss OSGi Dependencies -->
<dependency>
- <groupId>biz.aQute</groupId>
- <artifactId>bnd</artifactId>
- <version>${version.aqute.bnd}</version>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-blueprint-impl</artifactId>
+ <version>${version.jboss.osgi.blueprint}</version>
</dependency>
<dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging-spi</artifactId>
- <version>${version.jboss.logging}</version>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-deployers</artifactId>
+ <version>${version.jboss.osgi.deployers}</version>
</dependency>
<dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging-log4j</artifactId>
- <version>${version.jboss.logging}</version>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-integration-jbossas</artifactId>
+ <version>${version.jboss.osgi.integration.jbossas}</version>
</dependency>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${version.junit}</version>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-husky-harness</artifactId>
+ <version>${version.jboss.osgi.husky}</version>
</dependency>
<dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>${version.javax.servlet}</version>
+ <groupId>org.jboss.osgi</groupId>
+ <artifactId>jboss-osgi-spi</artifactId>
+ <version>${version.jboss.osgi.spi}</version>
</dependency>
+
+ <!-- JBoss OSGi Bundle Dependencies -->
<dependency>
- <groupId>org.codehaus.izpack</groupId>
- <artifactId>izpack-standalone-compiler</artifactId>
- <version>${version.izpack}</version>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-common</artifactId>
+ <version>${version.jboss.osgi.common}</version>
</dependency>
<dependency>
- <groupId>org.jboss.osgi</groupId>
- <artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-jmx</artifactId>
+ <version>${version.jboss.osgi.jmx}</version>
</dependency>
<dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-aop-mc-int</artifactId>
- <version>${version.jboss.microcontainer}</version>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-jndi</artifactId>
+ <version>${version.jboss.osgi.jndi}</version>
</dependency>
<dependency>
- <groupId>org.jboss.naming</groupId>
- <artifactId>jnpserver</artifactId>
- <version>${version.jboss.naming}</version>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-logging</artifactId>
+ <version>${version.jboss.osgi.logging}</version>
</dependency>
<dependency>
- <groupId>org.jboss.jbossas</groupId>
- <artifactId>jboss-as-client</artifactId>
- <version>${version.jbossas}</version>
- <type>pom</type>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-microcontainer</artifactId>
+ <version>${version.jboss.osgi.microcontainer}</version>
</dependency>
-
- <!-- OSGi Dependencies -->
<dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-remotelog</artifactId>
+ <version>${version.jboss.osgi.remotelog}</version>
</dependency>
<dependency>
- <groupId>org.osgi</groupId>
- <artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
+ <groupId>org.jboss.osgi.bundles</groupId>
+ <artifactId>jboss-osgi-webconsole</artifactId>
+ <version>${version.jboss.osgi.webconsole}</version>
</dependency>
- <!-- Bundle Dependencies -->
+ <!-- 3rd Party Bundle Dependencies -->
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-apache-xerces</artifactId>
@@ -143,55 +148,110 @@
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-jaxb</artifactId>
- <version>${version.jaxb.bundle}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-common-core</artifactId>
- <version>${version.jboss.common.core.bundle}</version>
+ <version>${version.jboss.osgi.common.core}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-common</artifactId>
- <version>${version.jboss.osgi.common}</version>
+ <artifactId>jboss-osgi-jaxb</artifactId>
+ <version>${version.jboss.osgi.jaxb}</version>
</dependency>
<dependency>
<groupId>org.jboss.osgi.bundles</groupId>
<artifactId>jboss-osgi-xml-binding</artifactId>
- <version>${version.jboss.osgi.jbossxb}</version>
+ <version>${version.jboss.osgi.xml.binding}</version>
</dependency>
+
+ <!-- 3rd Party Dependencies -->
<dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-jmx</artifactId>
- <version>${version.jboss.osgi.jmx}</version>
+ <groupId>biz.aQute</groupId>
+ <artifactId>bnd</artifactId>
+ <version>${version.aqute.bnd}</version>
</dependency>
<dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-jndi</artifactId>
- <version>${version.jboss.osgi.jndi}</version>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>${version.javax.servlet}</version>
</dependency>
<dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-logging</artifactId>
- <version>${version.jboss.osgi.logging}</version>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${version.junit}</version>
</dependency>
<dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-microcontainer</artifactId>
- <version>${version.jboss.osgi.microcontainer}</version>
+ <groupId>org.codehaus.izpack</groupId>
+ <artifactId>izpack-standalone-compiler</artifactId>
+ <version>${version.izpack}</version>
</dependency>
<dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-remotelog</artifactId>
- <version>${version.jboss.osgi.remotelog}</version>
+ <groupId>org.jboss.aop</groupId>
+ <artifactId>jboss-aop</artifactId>
+ <version>${version.jboss.aop}</version>
</dependency>
<dependency>
- <groupId>org.jboss.osgi.bundles</groupId>
- <artifactId>jboss-osgi-webconsole</artifactId>
- <version>${version.jboss.osgi.webconsole}</version>
+ <groupId>org.jboss.deployers</groupId>
+ <artifactId>jboss-deployers-client-spi</artifactId>
+ <version>${version.jboss.deployers}</version>
</dependency>
+ <dependency>
+ <groupId>org.jboss.deployers</groupId>
+ <artifactId>jboss-deployers-impl</artifactId>
+ <version>${version.jboss.deployers}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.deployers</groupId>
+ <artifactId>jboss-deployers-vfs</artifactId>
+ <version>${version.jboss.deployers}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.deployers</groupId>
+ <artifactId>jboss-deployers-vfs-spi</artifactId>
+ <version>${version.jboss.deployers}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-spi</artifactId>
+ <version>${version.jboss.logging}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging-log4j</artifactId>
+ <version>${version.jboss.logging}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-aop-mc-int</artifactId>
+ <version>${version.jboss.microcontainer}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.microcontainer</groupId>
+ <artifactId>jboss-kernel</artifactId>
+ <version>${version.jboss.microcontainer}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.naming</groupId>
+ <artifactId>jnpserver</artifactId>
+ <version>${version.jboss.naming}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossas</groupId>
+ <artifactId>jboss-as-client</artifactId>
+ <version>${version.jbossas}</version>
+ <type>pom</type>
+ </dependency>
+ <!-- OSGi Dependencies -->
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ <version>${version.osgi}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ <version>${version.osgi}</version>
+ </dependency>
+
<!-- Equinox Dependencies -->
<dependency>
<groupId>org.jboss.osgi</groupId>
@@ -419,7 +479,7 @@
</snapshots>
</pluginRepository>
</pluginRepositories>
-
+
<!-- Source Repository -->
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/jboss-osgi</connection>
@@ -473,7 +533,7 @@
</plugin>
</plugins>
</reporting>
-
+
<!-- Profiles -->
<profiles>
Modified: projects/jboss-osgi/trunk/repository/api/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/repository/api/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/repository/api/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -11,17 +11,11 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
</dependency>
</dependencies>
</project>
Modified: projects/jboss-osgi/trunk/runtime/equinox/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/equinox/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/runtime/equinox/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,17 +16,11 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
<dependency>
<groupId>org.eclipse.equinox</groupId>
Modified: projects/jboss-osgi/trunk/runtime/felix/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/felix/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/runtime/felix/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,17 +16,11 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
Modified: projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/runtime/knopflerfish/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -16,18 +16,11 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.osgi.spi>1.0.0-SNAPSHOT</version.jboss.osgi.spi>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jboss.osgi</groupId>
<artifactId>jboss-osgi-spi</artifactId>
- <version>${version.jboss.osgi.spi}</version>
</dependency>
<dependency>
<groupId>org.knopflerfish</groupId>
@@ -36,7 +29,6 @@
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/runtime/microcontainer/osgi-int/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -13,11 +13,7 @@
<!-- Properties -->
<properties>
- <version.jboss.aop>2.0.1.GA</version.jboss.aop>
- <version.jboss.deployers>2.0.5.GA</version.jboss.deployers>
- <version.jboss.microcontainer>2.0.4.GA</version.jboss.microcontainer>
<version.jboss.test>1.0.5.GA</version.jboss.test>
- <version.osgi>r4v41</version.osgi>
</properties>
<dependencies>
@@ -25,32 +21,26 @@
<dependency>
<groupId>org.jboss.microcontainer</groupId>
<artifactId>jboss-kernel</artifactId>
- <version>${version.jboss.microcontainer}</version>
</dependency>
<dependency>
<groupId>org.jboss.deployers</groupId>
<artifactId>jboss-deployers-vfs-spi</artifactId>
- <version>${version.jboss.deployers}</version>
</dependency>
<dependency>
<groupId>org.jboss.deployers</groupId>
<artifactId>jboss-deployers-vfs</artifactId>
- <version>${version.jboss.deployers}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
</dependency>
<dependency>
<groupId>org.jboss.aop</groupId>
<artifactId>jboss-aop</artifactId>
- <version>${version.jboss.aop}</version>
<exclusions>
<exclusion>
<groupId>ant</groupId>
@@ -111,7 +101,6 @@
<dependency>
<groupId>org.jboss.deployers</groupId>
<artifactId>jboss-deployers-impl</artifactId>
- <version>${version.jboss.deployers}</version>
<scope>test</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/spi/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/spi/pom.xml 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/spi/pom.xml 2009-05-26 08:10:22 UTC (rev 89423)
@@ -17,13 +17,6 @@
<version>1.0.0.Beta2</version>
</parent>
- <!-- Properties -->
- <properties>
- <version.jboss.deployers>2.0.5.GA</version.jboss.deployers>
- <version.jboss.microcontainer>2.0.4.GA</version.jboss.microcontainer>
- <version.osgi>r4v41</version.osgi>
- </properties>
-
<!-- Dependencies -->
<dependencies>
@@ -35,7 +28,6 @@
<dependency>
<groupId>org.jboss.deployers</groupId>
<artifactId>jboss-deployers-vfs</artifactId>
- <version>${version.jboss.deployers}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -46,25 +38,21 @@
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
- <version>${version.osgi}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.deployers</groupId>
<artifactId>jboss-deployers-client-spi</artifactId>
- <version>${version.jboss.deployers}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.microcontainer</groupId>
<artifactId>jboss-kernel</artifactId>
- <version>${version.jboss.microcontainer}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: projects/jboss-osgi/trunk/testsuite/.project
===================================================================
--- projects/jboss-osgi/trunk/testsuite/.project 2009-05-26 07:07:36 UTC (rev 89422)
+++ projects/jboss-osgi/trunk/testsuite/.project 2009-05-26 08:10:22 UTC (rev 89423)
@@ -6,11 +6,6 @@
</projects>
<buildSpec>
<buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
@@ -18,6 +13,5 @@
</buildSpec>
<natures>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
17 years, 1 month
JBoss-OSGI SVN: r89416 - projects/jboss-osgi/trunk/husky/testsuite.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-25 20:03:04 -0400 (Mon, 25 May 2009)
New Revision: 89416
Modified:
projects/jboss-osgi/trunk/husky/testsuite/pom.xml
Log:
Only run in embedded
Modified: projects/jboss-osgi/trunk/husky/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 00:01:22 UTC (rev 89415)
+++ projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 00:03:04 UTC (rev 89416)
@@ -147,7 +147,6 @@
<!--
Name: remote-tesing
Descr: Setup for remote testing
- -->
<profile>
<id>remote-tesing</id>
<activation>
@@ -174,19 +173,20 @@
<value>5401</value>
</property>
<property>
+ <name>log4j.output.dir</name>
+ <value>${project.build.directory}</value>
+ </property>
+ <property>
<name>test.archive.directory</name>
<value>${project.build.directory}/test-libs</value>
</property>
- <property>
- <name>log4j.output.dir</name>
- <value>/home/tdiesler/svn/jboss-osgi/projects/husky/trunk/testsuite/target</value>
- </property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
+ -->
</profiles>
17 years, 1 month
JBoss-OSGI SVN: r89415 - projects/jboss-osgi/trunk/husky/testsuite.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-25 20:01:22 -0400 (Mon, 25 May 2009)
New Revision: 89415
Modified:
projects/jboss-osgi/trunk/husky/testsuite/pom.xml
Log:
Fix log4j output prop
Modified: projects/jboss-osgi/trunk/husky/testsuite/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 00:00:05 UTC (rev 89414)
+++ projects/jboss-osgi/trunk/husky/testsuite/pom.xml 2009-05-26 00:01:22 UTC (rev 89415)
@@ -129,13 +129,13 @@
<value>org.jboss.osgi.husky.internal.OSGiInvoker</value>
</property>
<property>
+ <name>log4j.output.dir</name>
+ <value>${project.build.directory}</value>
+ </property>
+ <property>
<name>test.archive.directory</name>
<value>${project.build.directory}/test-libs</value>
</property>
- <property>
- <name>log4j.output.dir</name>
- <value>/home/tdiesler/svn/jboss-osgi/projects/husky/trunk/testsuite/target</value>
- </property>
</systemProperties>
</configuration>
</plugin>
17 years, 1 month
JBoss-OSGI SVN: r89414 - projects/jboss-osgi/trunk/husky/testsuite/src/test/java/org/jboss/test/osgi/husky/context.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-25 20:00:05 -0400 (Mon, 25 May 2009)
New Revision: 89414
Modified:
projects/jboss-osgi/trunk/husky/testsuite/src/test/java/org/jboss/test/osgi/husky/context/ContextTestCase.java
Log:
Only run in embedded
Modified: projects/jboss-osgi/trunk/husky/testsuite/src/test/java/org/jboss/test/osgi/husky/context/ContextTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/husky/testsuite/src/test/java/org/jboss/test/osgi/husky/context/ContextTestCase.java 2009-05-25 23:49:59 UTC (rev 89413)
+++ projects/jboss-osgi/trunk/husky/testsuite/src/test/java/org/jboss/test/osgi/husky/context/ContextTestCase.java 2009-05-26 00:00:05 UTC (rev 89414)
@@ -58,7 +58,7 @@
if (context == null)
{
helper = new OSGiTestHelper();
- runtime = helper.getDefaultRuntime();
+ runtime = helper.getEmbeddedRuntime();
runtime.addCapability(new JMXCapability());
runtime.addCapability(new HuskyCapability());
17 years, 1 month
JBoss-OSGI SVN: r89413 - projects/jboss-osgi/trunk/blueprint/testsuite/src/test/java/org/jboss/test/osgi/blueprint/context.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-25 19:49:59 -0400 (Mon, 25 May 2009)
New Revision: 89413
Modified:
projects/jboss-osgi/trunk/blueprint/testsuite/src/test/java/org/jboss/test/osgi/blueprint/context/BlueprintContextTestCase.java
Log:
Only run in embedded
Modified: projects/jboss-osgi/trunk/blueprint/testsuite/src/test/java/org/jboss/test/osgi/blueprint/context/BlueprintContextTestCase.java
===================================================================
--- projects/jboss-osgi/trunk/blueprint/testsuite/src/test/java/org/jboss/test/osgi/blueprint/context/BlueprintContextTestCase.java 2009-05-25 23:40:30 UTC (rev 89412)
+++ projects/jboss-osgi/trunk/blueprint/testsuite/src/test/java/org/jboss/test/osgi/blueprint/context/BlueprintContextTestCase.java 2009-05-25 23:49:59 UTC (rev 89413)
@@ -59,7 +59,7 @@
if (context == null)
{
helper = new OSGiTestHelper();
- runtime = helper.getDefaultRuntime();
+ runtime = helper.getEmbeddedRuntime();
runtime.installBundle("context-basic.jar").start();
}
17 years, 1 month
JBoss-OSGI SVN: r89412 - projects/jboss-osgi/trunk/distribution/src/main/resources/installer.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-25 19:40:30 -0400 (Mon, 25 May 2009)
New Revision: 89412
Modified:
projects/jboss-osgi/trunk/distribution/src/main/resources/installer/install-definition.xml
Log:
Install jboss-osgi-* bundles
Modified: projects/jboss-osgi/trunk/distribution/src/main/resources/installer/install-definition.xml
===================================================================
--- projects/jboss-osgi/trunk/distribution/src/main/resources/installer/install-definition.xml 2009-05-25 23:34:18 UTC (rev 89411)
+++ projects/jboss-osgi/trunk/distribution/src/main/resources/installer/install-definition.xml 2009-05-25 23:40:30 UTC (rev 89412)
@@ -172,10 +172,10 @@
<!-- JBossOSGi Bundles -->
<fileset dir="@{deploy.artifacts.dir}/lib" targetdir="$INSTALL_PATH/runtime/bundles" override="true">
- <include name="apache-xerces-bundle.jar" />
- <include name="jaxb-bundle.jar" />
- <include name="jbossxb-bundle.jar" />
- <include name="jboss-common-core-bundle.jar" />
+ <include name="jboss-osgi-apache-xerces.jar" />
+ <include name="jboss-osgi-jaxb.jar" />
+ <include name="jboss-osgi-xml-binding.jar" />
+ <include name="jboss-osgi-common-core.jar" />
<include name="jboss-osgi-common.jar" />
<include name="jboss-osgi-logging.jar" />
<include name="jboss-osgi-jndi.jar" />
17 years, 1 month
JBoss-OSGI SVN: r89411 - in projects/jboss-osgi/trunk/hudson/hudson-home/jobs: JBoss-6.0.0 and 3 other directories.
by jboss-osgi-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2009-05-25 19:34:18 -0400 (Mon, 25 May 2009)
New Revision: 89411
Modified:
projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-5.1.0/config.xml
projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-6.0.0/config.xml
projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk15/config.xml
projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk16/config.xml
projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-matrix/config.xml
Log:
Remove reference to build module
Modified: projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-5.1.0/config.xml
===================================================================
--- projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-5.1.0/config.xml 2009-05-25 23:31:36 UTC (rev 89410)
+++ projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-5.1.0/config.xml 2009-05-25 23:34:18 UTC (rev 89411)
@@ -30,7 +30,7 @@
<hudson.tasks.Shell>
<command>
OSGIDIR=$WORKSPACE/jboss-osgi
-HUDSONDIR=$OSGIDIR/build/hudson
+HUDSONDIR=$OSGIDIR/hudson
HUDSONBIN=$HUDSONDIR/hudson-home/bin
JBOSS_VERSION=jboss-5.1.0.GA
Modified: projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-6.0.0/config.xml
===================================================================
--- projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-6.0.0/config.xml 2009-05-25 23:31:36 UTC (rev 89410)
+++ projects/jboss-osgi/trunk/hudson/hudson-home/jobs/JBoss-6.0.0/config.xml 2009-05-25 23:34:18 UTC (rev 89411)
@@ -30,7 +30,7 @@
<hudson.tasks.Shell>
<command>
OSGIDIR=$WORKSPACE/jboss-osgi
-HUDSONDIR=$OSGIDIR/build/hudson
+HUDSONDIR=$OSGIDIR/hudson
HUDSONBIN=$HUDSONDIR/hudson-home/bin
JBOSS_VERSION=jboss-6.0.0.Alpha1
Modified: projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk15/config.xml
===================================================================
--- projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk15/config.xml 2009-05-25 23:31:36 UTC (rev 89410)
+++ projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk15/config.xml 2009-05-25 23:34:18 UTC (rev 89411)
@@ -44,7 +44,7 @@
<hudson.tasks.Shell>
<command>
OSGIDIR=$WORKSPACE/jboss-osgi
-HUDSONDIR=$OSGIDIR/build/hudson
+HUDSONDIR=$OSGIDIR/hudson
export JBOSS_BINDADDR=(a)jboss.bind.address@
Modified: projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk16/config.xml
===================================================================
--- projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk16/config.xml 2009-05-25 23:31:36 UTC (rev 89410)
+++ projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-jdk16/config.xml 2009-05-25 23:34:18 UTC (rev 89411)
@@ -44,7 +44,7 @@
<hudson.tasks.Shell>
<command>
OSGIDIR=$WORKSPACE/jboss-osgi
-HUDSONDIR=$OSGIDIR/build/hudson
+HUDSONDIR=$OSGIDIR/hudson
export JBOSS_BINDADDR=(a)jboss.bind.address@
Modified: projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-matrix/config.xml
===================================================================
--- projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-matrix/config.xml 2009-05-25 23:31:36 UTC (rev 89410)
+++ projects/jboss-osgi/trunk/hudson/hudson-home/jobs/jbossosgi-matrix/config.xml 2009-05-25 23:34:18 UTC (rev 89411)
@@ -60,7 +60,7 @@
<hudson.tasks.Shell>
<command>
OSGIDIR=$WORKSPACE/jboss-osgi
-HUDSONDIR=$OSGIDIR/build/hudson
+HUDSONDIR=$OSGIDIR/hudson
export FRAMEWORK=$framework
export CONTAINER=$container
17 years, 1 month