Skip to content

Commit f3d9efc

Browse files
committed
fix for deploying without main class.
1 parent 604c29e commit f3d9efc

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
11+
.sts4-cache
12+
13+
### IntelliJ IDEA ###
14+
.idea
15+
*.iws
16+
*.iml
17+
*.ipr
18+
19+
### NetBeans ###
20+
/nbproject/private/
21+
/build/
22+
/nbbuild/
23+
/dist/
24+
/nbdist/
25+
/.nb-gradle/

pom.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@
2525
</properties>
2626

2727
<dependencies>
28-
<dependency>
29-
<groupId>org.springframework.boot</groupId>
30-
<artifactId>spring-boot-starter</artifactId>
31-
</dependency>
3228

3329
<dependency>
3430
<groupId>org.projectlombok</groupId>
@@ -48,14 +44,5 @@
4844
</dependency>
4945
</dependencies>
5046

51-
<build>
52-
<plugins>
53-
<plugin>
54-
<groupId>org.springframework.boot</groupId>
55-
<artifactId>spring-boot-maven-plugin</artifactId>
56-
</plugin>
57-
</plugins>
58-
</build>
59-
6047

6148
</project>

0 commit comments

Comments
 (0)