Skip to content

Commit

Permalink
HV-400 Fixing replacement of org.hibernate package.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpollet committed Feb 23, 2011
1 parent 623d428 commit 1f6971b
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 11 deletions.
2 changes: 1 addition & 1 deletion hibernate-validator-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>org.hibernate</groupId>
<groupId>com.example</groupId>
<artifactId>hibernate-validator-quickstart</artifactId>
<packaging>jar</packaging>
<name>Hibernate Validator Quickstart</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import javax.validation.Valid;
import javax.validation.constraints.AssertTrue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

/**
* @author Hardy Ferentschik
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import javax.validation.constraints.AssertTrue;
import javax.validation.constraints.Min;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

/**
* @author Hardy Ferentschik
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import javax.validation.GroupSequence;
import javax.validation.groups.Default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import javax.validation.constraints.NotNull;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import javax.validation.GroupSequence;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import java.lang.annotation.ElementType;
import java.util.Locale;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import java.util.Set;
import javax.validation.ConstraintViolation;
Expand All @@ -23,6 +23,8 @@
import javax.validation.ValidatorFactory;

import static org.junit.Assert.assertEquals;

import com.example.Car;
import org.junit.BeforeClass;
import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.quickstart;
package com.example;

import java.util.Set;
import javax.validation.ConstraintViolation;
Expand All @@ -24,6 +24,13 @@
import javax.validation.groups.Default;

import static org.junit.Assert.assertEquals;

import com.example.Car;
import com.example.CarChecks;
import com.example.Driver;
import com.example.DriverChecks;
import com.example.OrderedChecks;
import com.example.RentalCar;
import org.junit.BeforeClass;
import org.junit.Test;

Expand Down

0 comments on commit 1f6971b

Please sign in to comment.