Skip to content

Commit ef27769

Browse files
authored
Merge pull request #59 from NetoDevel/feature/jv-fix-maven-deps
Feature/jv fix maven deps
2 parents 405906f + 617787e commit ef27769

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

generator-core/pom.xml

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,21 @@
55
<parent>
66
<artifactId>spring-boot-cli</artifactId>
77
<groupId>br.com.netodevel</groupId>
8-
<version>0.0.1.BUILD-SNAPSHOT</version>
8+
<version>0.0.2.BUILD-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
11-
1211
<artifactId>generator-core</artifactId>
1312

1413
<dependencies>
1514
<dependency>
1615
<groupId>junit</groupId>
1716
<artifactId>junit</artifactId>
1817
</dependency>
19-
2018
<dependency>
2119
<groupId>org.apache.commons</groupId>
2220
<artifactId>commons-io</artifactId>
2321
<version>1.3.2</version>
2422
</dependency>
25-
2623
</dependencies>
2724

2825
</project>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<url>https://projects.spring.io/spring-cloud/</url>
1212

1313
<modules>
14-
<module>spring-boot-generate</module>
1514
<module>spring-scaffold-cli</module>
15+
<module>spring-boot-generate</module>
1616
<module>generator-core</module>
1717
<module>templates-java</module>
1818
</modules>

spring-scaffold-cli/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>br.com</groupId>
2828
<artifactId>spring-boot-generate</artifactId>
29-
<version>0.0.1-SNAPSHOT</version>
29+
<version>0.0.2-SNAPSHOT</version>
3030
</dependency>
3131

3232
<dependency>

templates-java/pom.xml

+13-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,23 @@
55
<parent>
66
<artifactId>spring-boot-cli</artifactId>
77
<groupId>br.com.netodevel</groupId>
8-
<version>0.0.1.BUILD-SNAPSHOT</version>
8+
<version>0.0.2.BUILD-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>templates-java</artifactId>
13+
<build>
14+
<plugins>
15+
<plugin>
16+
<groupId>org.apache.maven.plugins</groupId>
17+
<artifactId>maven-compiler-plugin</artifactId>
18+
<configuration>
19+
<source>8</source>
20+
<target>8</target>
21+
</configuration>
22+
</plugin>
23+
</plugins>
24+
</build>
1325
<dependencies>
1426
<dependency>
1527
<groupId>br.com.netodevel</groupId>
@@ -19,5 +31,4 @@
1931
</dependency>
2032
</dependencies>
2133

22-
2334
</project>

0 commit comments

Comments
 (0)