| | |
| | | <artifactId>javassist</artifactId> |
| | | <groupId>javassist</groupId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <artifactId>dom4j</artifactId> |
| | | <groupId>dom4j</groupId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | |
| | |
| | | <version>${spring.boot.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- websocket --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-websocket</artifactId> |
| | | <version>${spring.boot.version}</version> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- mqtt --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-integration</artifactId> |
| | | <version>${spring.boot.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.integration</groupId> |
| | | <artifactId>spring-integration-stream</artifactId> |
| | | <version>5.2.0.RELEASE</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.integration</groupId> |
| | | <artifactId>spring-integration-mqtt</artifactId> |
| | | <version>5.2.0.RELEASE</version> |
| | | </dependency> |
| | | |
| | | <!-- thymeleaf --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <version>1.4.01</version> |
| | | </dependency> |
| | | |
| | | <!-- Security --> |
| | | <dependency> |
| | | <groupId>org.springframework.security</groupId> |
| | | <artifactId>spring-security-core</artifactId> |
| | | <version>${spring.security}</version> |
| | | </dependency> |
| | | <!-- Security <dependency> <groupId>org.springframework.security</groupId> |
| | | <artifactId>spring-security-core</artifactId> <version>${spring.security}</version> |
| | | </dependency> --> |
| | | |
| | | |
| | | <!-- druid --> |
| | |
| | | |
| | | |
| | | <build> |
| | | |
| | | <plugins> |
| | | <!-- 设置编译版本 --> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <version>3.1</version> |
| | | <configuration> |
| | | <source>1.8</source> |
| | | <target>1.8</target> |
| | | <encoding>UTF-8</encoding> |
| | | </configuration> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <executions> |
| | | <execution> |
| | | <goals> |
| | | <goal>repackage</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | | <!-- <artifactId>spring-boot-maven-plugin</artifactId>--> |
| | | <!-- <executions>--> |
| | | <!-- <execution>--> |
| | | <!-- <goals>--> |
| | | <!-- <goal>repackage</goal>--> |
| | | <!-- </goals>--> |
| | | <!-- </execution>--> |
| | | <!-- </executions>--> |
| | | <!-- </plugin>--> |
| | | |
| | | </plugins> |
| | | |
| | | <resources> |