Skip to content

Commit

Permalink
added system dependency on ball-draw-parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuno Costa committed Jun 30, 2015
1 parent de5f103 commit 073e60e
Showing 1 changed file with 27 additions and 7 deletions.
34 changes: 27 additions & 7 deletions balldraw_core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,33 @@
</parent>
<artifactId>balldraw_core</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.ingg.ball-draw-server</groupId>
<artifactId>ball-draw-algorithm</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>home</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.ingg.ball-draw-server</groupId>
<artifactId>ball-draw-algorithm</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>/Users/nunocosta/.m2/repository/com/ingg/ball-draw-server/ball-draw-algorithm/1.0.0-SNAPSHOT/ball-draw-algorithm-1.0.0-SNAPSHOT.jar</systemPath>
</dependency>
</dependencies>
</profile>
<profile>
<id>work</id>
<dependencies>
<dependency>
<groupId>com.ingg.ball-draw-server</groupId>
<artifactId>ball-draw-algorithm</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</profile>
</profiles>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand Down

0 comments on commit 073e60e

Please sign in to comment.