[
https://issues.jboss.org/browse/AS7-1967?page=com.atlassian.jira.plugin.s...
]
Idar Borlaug commented on AS7-1967:
-----------------------------------
Found a workaround, seems akka haven't got a dependency in manifest files for
org.jacorb. Should it?
Add this plugin to maven.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<archive>
<manifestEntries>
<Dependencies>org.jacorb</Dependencies><!--
needed for akka to run on jboss 7 -->
</manifestEntries>
</archive>
</configuration>
</plugin>
Problem deplying AKKA app on Jboss 7.0.2
----------------------------------------
Key: AS7-1967
URL:
https://issues.jboss.org/browse/AS7-1967
Project: Application Server 7
Issue Type: Bug
Affects Versions: 7.0.2.Final
Reporter: Idar Borlaug
Attachments: akkawar.tar.bz2, server.log
When trying to deploy a small AKKA application bundled in a war. I get classloader
errors. See log file for more info.
Caused by: java.lang.NoClassDefFoundError: org/omg/CORBA/portable/IDLEntity
java.lang.LinkageError: com/eaio/uuid/UUID
mavne dependencies that create the problem:
<dependency>
<groupId>se.scalablesolutions.akka</groupId>
<artifactId>akka-actor</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>se.scalablesolutions.akka</groupId>
<artifactId>akka-spring</artifactId>
<version>1.2</version>
</dependency>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira