|
@@ -6,7 +6,7 @@
|
|
|
<groupId>com.neo</groupId>
|
|
|
<artifactId>spring-boot-web</artifactId>
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
- <packaging>jar</packaging>
|
|
|
+ <packaging>war</packaging>
|
|
|
|
|
|
<name>spring-boot-web</name>
|
|
|
<description>Demo project for Spring Boot</description>
|
|
@@ -14,8 +14,7 @@
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>1.5.6.RELEASE</version>
|
|
|
- <relativePath/> <!-- lookup parent from repository -->
|
|
|
+ <version>2.1.3.RELEASE</version>
|
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
@@ -26,51 +25,34 @@
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-devtools</artifactId>
|
|
|
- <optional>true</optional>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
- </dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.webjars.bower</groupId>
|
|
|
- <artifactId>jquery</artifactId>
|
|
|
- <version>2.0.3</version>
|
|
|
- </dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.webjars.bower</groupId>
|
|
|
- <artifactId>bootstrap</artifactId>
|
|
|
- <version>3.0.3</version>
|
|
|
+ <groupId>org.webjars.bower</groupId>
|
|
|
+ <artifactId>jquery</artifactId>
|
|
|
+ <version>2.0.3</version>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-redis</artifactId>
|
|
|
- </dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.springframework.session</groupId>
|
|
|
- <artifactId>spring-session-data-redis</artifactId>
|
|
|
+ <groupId>org.webjars.bower</groupId>
|
|
|
+ <artifactId>bootstrap</artifactId>
|
|
|
+ <version>3.0.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
@@ -79,9 +61,6 @@
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <fork>true</fork>
|
|
|
- </configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|