Skip to content

Commit

Permalink
ARQ-361 Moved OSGi Container + related protocols and testenrichers to…
Browse files Browse the repository at this point in the history
… its own repository
  • Loading branch information
aslakknutsen committed Apr 25, 2011
1 parent ddce720 commit 06a6310
Show file tree
Hide file tree
Showing 24 changed files with 532 additions and 404 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Eclipse
.project
.classpath
.settings/

# IntelliJ
*.iml
*.ipr
*.iws
.idea

# Maven
target/

# TestNG
test-output/

# JBoss AS
transaction.log
1 change: 0 additions & 1 deletion containers/osgi-embedded/.gitignore

This file was deleted.

144 changes: 0 additions & 144 deletions containers/osgi-embedded/pom.xml

This file was deleted.

149 changes: 149 additions & 0 deletions osgi-embedded/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-parent-osgi</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<!-- Artifact Configuration -->
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-osgi-embedded</artifactId>
<name>Arquillian Container OSGi Embedded</name>
<description>OSGi Embedded Container integration for the Arquillian Project</description>



<!-- Properties -->
<properties>
<version.jboss_osgi_framework>1.0.0.Alpha25</version.jboss_osgi_framework>
<version.jboss_osgi_resolver>1.0.9</version.jboss_osgi_resolver>
</properties>

<!-- Build -->
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>bundles</id>
<phase>test-compile</phase>
<goals>
<goal>directory-single</goal>
</goals>
<configuration>
<finalName>test-libs</finalName>
<ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>scripts/assembly-bundles.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>java.util.logging.manager</name>
<value>org.jboss.logmanager.LogManager</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>

<!-- Dependencies -->
<dependencies>

<!-- org.jboss.arquillian -->
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-spi</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-jmx-osgi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-jmx-osgi-bundle</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-impl-base</artifactId>
<scope>provided</scope>
</dependency>

<!-- org.jboss.osgi -->
<dependency>
<groupId>org.jboss.osgi.spi</groupId>
<artifactId>jbosgi-spi</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi.framework</groupId>
<artifactId>jbosgi-framework-core</artifactId>
<version>${version.jboss_osgi_framework}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi.resolver</groupId>
<artifactId>jbosgi-resolver-felix</artifactId>
<version>${version.jboss_osgi_resolver}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.osgi.vfs</groupId>
<artifactId>jbosgi-vfs30</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.logmanager</groupId>
<artifactId>jboss-logmanager</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
File renamed without changes.
Loading

0 comments on commit 06a6310

Please sign in to comment.