Skip to content

Commit a584521

Browse files
committed
Fixs mvn install
1 parent de69be2 commit a584521

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

generator-core/pom.xml

Lines changed: 1 addition & 4 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 13 additions & 2 deletions
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>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package br.com.templates_java;
2+
3+
public class TestSample {
4+
}

0 commit comments

Comments
 (0)