Skip to content

Commit

Permalink
Javassist is no longer a dependency of Weld
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Mar 13, 2013
1 parent 0c9d67a commit 646c504
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -44,7 +44,6 @@ public class WeldDependencyProcessor implements DeploymentUnitProcessor {

private static ModuleIdentifier JAVAX_PERSISTENCE_API_ID = ModuleIdentifier.create("javax.persistence.api");
private static ModuleIdentifier JAVAEE_API_ID = ModuleIdentifier.create("javaee.api");
private static final ModuleIdentifier JAVASSIST_ID = ModuleIdentifier.create("org.javassist");
private static ModuleIdentifier JBOSS_AS_WELD_ID = ModuleIdentifier.create("org.jboss.as.weld");
private static ModuleIdentifier WELD_CORE_ID = ModuleIdentifier.create("org.jboss.weld.core");
private static ModuleIdentifier WELD_API_ID = ModuleIdentifier.create("org.jboss.weld.api");
Expand All @@ -65,7 +64,6 @@ public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitPro
final ModuleLoader moduleLoader = Module.getBootModuleLoader();
addDependency(moduleSpecification, moduleLoader, JAVAX_PERSISTENCE_API_ID);
addDependency(moduleSpecification, moduleLoader, JAVAEE_API_ID);
addDependency(moduleSpecification, moduleLoader, JAVASSIST_ID);
addDependency(moduleSpecification, moduleLoader, WELD_CORE_ID);
addDependency(moduleSpecification, moduleLoader, WELD_API_ID);
addDependency(moduleSpecification, moduleLoader, WELD_SPI_ID);
Expand Down

0 comments on commit 646c504

Please sign in to comment.