Skip to content

Commit

Permalink
move to jpa package
Browse files Browse the repository at this point in the history
  • Loading branch information
agusaldasoro committed Nov 16, 2023
1 parent 5739029 commit a615d2a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.evomaster.client.java.constraint;
package org.evomaster.client.java.constraint.jpa;

import java.io.Serializable;
import java.util.List;
Expand Down
6 changes: 6 additions & 0 deletions client-java/instrumentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,12 @@
<version>2.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.evomaster</groupId>
<artifactId>evomaster-client-java-constraint</artifactId>
<version>2.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>

</dependencies>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.evomaster.client.java.instrumentation;

import org.evomaster.client.java.constraint.JpaConstraint;
import org.evomaster.client.java.constraint.jpa.JpaConstraint;
import org.evomaster.client.java.instrumentation.staticstate.UnitsInfoRecorder;
import org.evomaster.client.java.utils.SimpleLogger;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.evomaster.client.java.instrumentation.staticstate;

import org.evomaster.client.java.instrumentation.ClassAnalyzer;
import org.evomaster.client.java.constraint.JpaConstraint;
import org.evomaster.client.java.constraint.jpa.JpaConstraint;

import java.io.Serializable;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.foo.somedifferentpackage.examples.entity.EntityX;
import com.foo.somedifferentpackage.examples.entity.EntityY;
import com.foo.somedifferentpackage.examples.entity.EntityZ;
import org.evomaster.client.java.constraint.JpaConstraint;
import org.evomaster.client.java.constraint.jpa.JpaConstraint;
import org.evomaster.client.java.instrumentation.staticstate.UnitsInfoRecorder;
import org.junit.jupiter.api.Test;

Expand Down

0 comments on commit a615d2a

Please sign in to comment.