Examples of addUserDependencies()


Examples of org.jboss.as.server.deployment.module.ModuleSpecification.addUserDependencies()

            }
            // handle the the root deployment
            final ModuleStructureSpec rootDeploymentSpecification = result.getRootDeploymentSpecification();
            if (rootDeploymentSpecification != null) {
                final Map<VirtualFile, ResourceRoot> resourceRoots = resourceRoots(deploymentUnit);
                moduleSpec.addUserDependencies(rootDeploymentSpecification.getModuleDependencies());
                moduleSpec.addExclusions(rootDeploymentSpecification.getExclusions());
                moduleSpec.addAliases(rootDeploymentSpecification.getAliases());
                moduleSpec.addModuleSystemDependencies(rootDeploymentSpecification.getSytemDependencies());
                for (final ResourceRoot additionalResourceRoot : rootDeploymentSpecification.getResourceRoots()) {
View Full Code Here

Examples of org.jboss.as.server.deployment.module.ModuleSpecification.addUserDependencies()

                }
                final DeploymentUnit subDeployment = subDeploymentMap.get(path);
                final ModuleSpecification subModuleSpec = subDeployment.getAttachment(Attachments.MODULE_SPECIFICATION);

                final Map<VirtualFile, ResourceRoot> resourceRoots = resourceRoots(subDeployment);
                subModuleSpec.addUserDependencies(spec.getModuleDependencies());
                subModuleSpec.addExclusions(spec.getExclusions());
                subModuleSpec.addAliases(spec.getAliases());
                subModuleSpec.addModuleSystemDependencies(spec.getSytemDependencies());
                for (final ResourceRoot additionalResourceRoot : spec.getResourceRoots()) {
                    final ResourceRoot existingRoot = resourceRoots.get(additionalResourceRoot.getRoot());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.