Skip to content

Commit

Permalink
BZ-1060747: adapted existing code in order to make it work in differe…
Browse files Browse the repository at this point in the history
…nt cdi implementations
  • Loading branch information
porcelli committed Feb 20, 2014
1 parent b6c261f commit 86c99b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ public boolean getBootstrapDeploymentsDone() {
*/
@Produces
@RequestScoped
@Named("DeployList")
public Set<DeploymentUnit> produceDeploymentUnits() {
Set<DeploymentUnit> deploymentUnits = new HashSet<DeploymentUnit>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import javax.enterprise.event.Event;
import javax.enterprise.event.Observes;
import javax.inject.Inject;
import javax.inject.Named;

import org.guvnor.common.services.project.builder.model.BuildMessage;
import org.guvnor.common.services.project.builder.model.BuildResults;
Expand Down Expand Up @@ -51,6 +52,7 @@ public class DeploymentManagerEntryPointImpl implements DeploymentManagerEntryPo

@Inject
@RequestScoped
@Named("DeployList")
private Set<DeploymentUnit> deploymentUnits;

@Inject
Expand Down

0 comments on commit 86c99b0

Please sign in to comment.