Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Sep 11, 2013
1 parent 1e0c67d commit 445c00e
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 32 deletions.
16 changes: 8 additions & 8 deletions addon/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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-parent</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tools</artifactId>
Expand All @@ -16,17 +16,17 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-api</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-api</artifactId>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-impl</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-impl</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-spi</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-spi</artifactId>
<classifier>forge-addon</classifier>
</dependency>
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions api/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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-parent</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tools-api</artifactId>
Expand All @@ -15,8 +15,8 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-spi</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-spi</artifactId>
<classifier>forge-addon</classifier>
<scope>provided</scope>
</dependency>
Expand Down
12 changes: 6 additions & 6 deletions impl/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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-parent</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tools-impl</artifactId>
Expand All @@ -15,13 +15,13 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-api</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-spi</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-spi</artifactId>
<classifier>forge-addon</classifier>
<scope>provided</scope>
</dependency>
Expand Down
21 changes: 13 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,27 +50,32 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools</artifactId>
<version>${project.version}</version>
<classifier>forge-addon</classifier>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-api</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-impl</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-spi</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-spi</artifactId>
<version>${project.version}</version>
<classifier>forge-addon</classifier>
</dependency>
<dependency>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>ui-api</artifactId>
<version>${version.furnace}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
Expand Down
4 changes: 2 additions & 2 deletions spi/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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-parent</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tools-spi</artifactId>
Expand Down
8 changes: 4 additions & 4 deletions tests/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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools-parent</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>hibernate-tools-tests</artifactId>
Expand All @@ -26,8 +26,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.plugin.hibernate.tools</groupId>
<artifactId>plugin-hibernate-tools</artifactId>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>hibernate-tools</artifactId>
<classifier>forge-addon</classifier>
</dependency>
</dependencies>
Expand Down

0 comments on commit 445c00e

Please sign in to comment.