Of course, these are my test classes,
public abstract class AbstractServiceIT {
@Deployment(name="main",order=1)
public static JavaArchive createDeployment() {
JavaArchive archive = ShrinkWrap.create(JavaArchive.class)
.addPackages(true, "com.example.ejbs")
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
System.out.println(archive.toString(true));
return archive;
}
}
@RunWith(Arquillian.class)
public class SearchServiceSolrImplIT extends AbstractServiceIT {
@Deployment(name="solr",order=2)
public static WebArchive solrDeploy() {
WebArchive archive = ShrinkWrap.create(ZipImporter.class,
"solr.war")
.importFrom(new File("src/test/resources/solr-4.3.0.war"))
.as(WebArchive.class);
return archive;
}
}
My pom.xml
<profile>
<id>tomee-embedded</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0-6-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>arquillian-tomee-embedded</artifactId>
<version>1.6.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<!-- SLF4J -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
</dependency>
<!-- Log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
</dependencies>
</profile>
My arquillian.xml
<arquillian xmlns="http://jboss.org/schema/arquillian"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://jboss.org/schema/arquillian
http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<container qualifier="tomee" default="true">
<configuration>
<property name="httpPort">-1</property>
<property name="stopPort">-1</property>
<property name="dir">target/tomee-embedded</property>
<property name="appWorkingDir">target/working-dir</property>
<property name="properties">
openejb.deploymentId.format={moduleId}/{ejbName}
-Dsolr.solr.home=/Users/molgun/Downloads/solr-4.6.1/example/solr
</property>
</configuration>
</container>
</arquillian>
2014-03-17 15:37 GMT+02:00 Romain Manni-Bucau <[email protected]>:
> Hi
>
> can you reproduce it and share the sample? I doubt it is an aadatper issue.
> Romain Manni-Bucau
> Twitter: @rmannibucau
> Blog: http://rmannibucau.wordpress.com/
> LinkedIn: http://fr.linkedin.com/in/rmannibucau
> Github: https://github.com/rmannibucau
>
>
>
> 2014-03-17 14:22 GMT+01:00 Muhammed Olgun <[email protected]>:
> > I made two deployments with TomEE-Arquillian Embedded but I got
> >
> > *org.apache.openejb.DuplicateDeploymentIdException: Application cannot be
> > deployed as it contains deployment-ids which are in use*
> >
> > So, I edited my arquillian.xml like this;
> >
> > <arquillian xmlns="http://jboss.org/schema/arquillian"
> > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> > xsi:schemaLocation="
> > http://jboss.org/schema/arquillian
> > http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
> > <container qualifier="tomee" default="true">
> > <configuration>
> > <property name="httpPort">-1</property>
> > <property name="stopPort">-1</property>
> > <property name="dir">target/tomee-embedded</property>
> > <property name="appWorkingDir">target/working-dir</property>
> > <property name="properties">
> > openejb.deploymentId.format={moduleId}/{ejbName}
> >
> > -Dsolr.solr.home=/Users/molgun/Downloads/solr-4.6.1/example/solr
> > </property>
> > </configuration>
> > </container>
> > </arquillian>
> >
> > and I see from log console;
> >
> > Mar 17, 2014 3:21:17 PM org.apache.openejb.util.OptionsLog info
> > INFO: Using 'openejb.deploymentId.format={moduleId}/{ejbName}'
> >
> > but I'm getting still same error. Should I create a ticket or did I miss
> > something?
>