Skip to content

Commit

Permalink
groupid renamed as per maven central issue OSSRH-16795
Browse files Browse the repository at this point in the history
  • Loading branch information
rmpestano committed Jul 27, 2015
1 parent 4135898 commit 53f23bb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public class ConnectionHolderIt {
[source, xml]
----
<dependency>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>core</artifactId>
<version>0.1</version>
<scope>test</scope>
Expand Down Expand Up @@ -189,7 +189,7 @@ If you use CDI in your tests then you should have a try in DBUnit rules https://
[source,xml]
----
<dependency>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>cdi</artifactId>
<version>0.1</version>
<scope>test</scope>
Expand Down Expand Up @@ -230,7 +230,7 @@ As stated before, DBunit needs a jdbc connection, a way to create one is using J
[source,xml]
----
<dependency>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>jpa</artifactId>
<version>0.1</version>
<scope>test</scope>
Expand Down
6 changes: 3 additions & 3 deletions cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>dbunit-rules</artifactId>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>parent</artifactId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -26,7 +26,7 @@
</dependency>

<dependency>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>core</artifactId>
<version>${project.parent.version}</version>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>dbunit-rules</artifactId>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>parent</artifactId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -27,7 +27,7 @@
</dependency>

<dependency>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>jpa</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
Expand Down
8 changes: 4 additions & 4 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>dbunit-rules</artifactId>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>parent</artifactId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -59,15 +59,15 @@
<!-- test deps -->

<dependency>
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>core</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<!-- see DeltaspikeUsingInterceptorIt -->
<groupId>com.github.dbunit.rules</groupId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>cdi</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
Expand Down
4 changes: 2 additions & 2 deletions jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.github.dbunit.rules</groupId>
<artifactId>dbunit-rules</artifactId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>parent</artifactId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.dbunit.rules</groupId>
<artifactId>dbunit-rules</artifactId>
<groupId>com.github.dbunit-rules</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>0.1</version>

Expand Down

0 comments on commit 53f23bb

Please sign in to comment.