Skip to content

Commit

Permalink
fixing pom parent
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalinaspolo committed Sep 2, 2015
1 parent f186f10 commit 0a06749
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
.idea
*.iml

target/
**/target/
4 changes: 2 additions & 2 deletions fizz-buzz/pom.xml
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>com.jspcore</artifactId>
<groupId>katas</groupId>
<groupId>com.jspcore</groupId>
<artifactId>katas</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions mars-rover/pom.xml
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>com.jspcore</artifactId>
<groupId>katas</groupId>
<groupId>com.jspcore</groupId>
<artifactId>katas</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
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>katas</groupId>
<artifactId>com.jspcore</artifactId>
<groupId>com.jspcore</groupId>
<artifactId>katas</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>

Expand All @@ -14,6 +14,7 @@
<module>fizz-buzz</module>
<module>mars-rover</module>
<module>tennis-game</module>
<module>lsc-kata</module>
</modules>

<build>
Expand Down
4 changes: 2 additions & 2 deletions roman-numeral/pom.xml
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>com.jspcore</artifactId>
<groupId>katas</groupId>
<groupId>com.jspcore</groupId>
<artifactId>katas</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions tennis-game/pom.xml
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>com.jspcore</artifactId>
<groupId>katas</groupId>
<groupId>com.jspcore</groupId>
<artifactId>katas</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit 0a06749

Please sign in to comment.