Skip to content

Commit

Permalink
replace remaining references to weld extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Dec 21, 2010
1 parent 0bc3994 commit 7f3a469
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/src/main/docbook/en-US/persistence-general.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<para>
To get started with Seam persistence you need to add the
<literal>seam-persistence.jar </literal> and the
<literal>weld-extensions.jar</literal> to you deployment. If you are in
<literal>seam-solder.jar</literal> to you deployment. If you are in
a java SE environment you will probably also require
<literal>seam-xml.jar</literal> as well for configuration purposes. The
relevant maven configuration is as follows:
Expand All @@ -103,9 +103,9 @@
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-extensions</artifactId>
<version>${weld.extensions.version}</version>
<groupId>org.jboss.seam.solder</groupId>
<artifactId>seam-solder</artifactId>
<version>${seam.solder.version}</version>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;

import org.jboss.weld.extensions.core.Veto;
import org.jboss.seam.solder.core.Veto;

/**
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import org.hibernate.search.annotations.Index;
import org.hibernate.search.annotations.Indexed;
import org.hibernate.search.annotations.Store;
import org.jboss.weld.extensions.core.Veto;
import org.jboss.seam.solder.core.Veto;

/**
* <p>
Expand Down

0 comments on commit 7f3a469

Please sign in to comment.