Skip to content

Commit

Permalink
Merge pull request #59 from NetoDevel/feature/jv-fix-maven-deps
Browse files Browse the repository at this point in the history
Feature/jv fix maven deps
  • Loading branch information
netodevel authored Jul 10, 2019
2 parents 405906f + 617787e commit ef27769
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
5 changes: 1 addition & 4 deletions generator-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,21 @@
<parent>
<artifactId>spring-boot-cli</artifactId>
<groupId>br.com.netodevel</groupId>
<version>0.0.1.BUILD-SNAPSHOT</version>
<version>0.0.2.BUILD-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>generator-core</artifactId>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>

</dependencies>

</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<url>https://projects.spring.io/spring-cloud/</url>

<modules>
<module>spring-boot-generate</module>
<module>spring-scaffold-cli</module>
<module>spring-boot-generate</module>
<module>generator-core</module>
<module>templates-java</module>
</modules>
Expand Down
2 changes: 1 addition & 1 deletion spring-scaffold-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>br.com</groupId>
<artifactId>spring-boot-generate</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
15 changes: 13 additions & 2 deletions templates-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
<parent>
<artifactId>spring-boot-cli</artifactId>
<groupId>br.com.netodevel</groupId>
<version>0.0.1.BUILD-SNAPSHOT</version>
<version>0.0.2.BUILD-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>templates-java</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>br.com.netodevel</groupId>
Expand All @@ -19,5 +31,4 @@
</dependency>
</dependencies>


</project>

0 comments on commit ef27769

Please sign in to comment.