|
@@ -10,8 +10,9 @@
|
|
|
</parent>
|
|
|
<groupId>com.jpsoft</groupId>
|
|
|
<artifactId>smart-community-server</artifactId>
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <version>1.0.0</version>
|
|
|
<name>smart-community-server</name>
|
|
|
+ <packaging>war</packaging>
|
|
|
<description>智慧小区</description>
|
|
|
|
|
|
<properties>
|
|
@@ -28,20 +29,19 @@
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
</dependency>
|
|
|
-
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
<scope>runtime</scope>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- <optional>true</optional>
|
|
|
- </dependency>
|
|
|
-
|
|
|
<!-- <dependency>-->
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
<!-- <artifactId>slf4j-api</artifactId>-->
|
|
@@ -261,19 +261,20 @@
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
- <activation>
|
|
|
- <activeByDefault>true</activeByDefault>
|
|
|
- </activation>
|
|
|
<properties>
|
|
|
<active.profile>dev</active.profile>
|
|
|
</properties>
|
|
|
+ <activation>
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
+ </activation>
|
|
|
</profile>
|
|
|
<profile>
|
|
|
<id>test</id>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
@@ -286,6 +287,14 @@
|
|
|
<properties>
|
|
|
<active.profile>production</active.profile>
|
|
|
</properties>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
</profile>
|
|
|
</profiles>
|
|
|
</project>
|