| | |
| | | <relativePath/> <!-- lookup parent from repository --> |
| | | </parent> |
| | | <groupId>com.flightfeather</groupId> |
| | | <artifactId>obd</artifactId> |
| | | <artifactId>uav</artifactId> |
| | | <version>1.0.0</version> |
| | | <packaging>war</packaging> |
| | | <name>obd</name> |
| | | <description>Obd data server</description> |
| | | <description>Uav data server</description> |
| | | |
| | | <properties> |
| | | <java.version>1.8</java.version> |
| | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <exclusions> |
| | | <!-- 去除旧log依赖 --> |
| | | <exclusion> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-logging</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.fasterxml.jackson.module</groupId> |
| | |
| | | <version>1.2.12</version> |
| | | </dependency> |
| | | |
| | | <!--增加log4j2依赖↓--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-log4j2</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>poi</artifactId> |
| | | <version>4.1.2</version> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>fastjson</artifactId> |
| | | <version>1.2.75</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> |
| | | <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-maven-plugin</artifactId> |
| | | <configuration> |
| | | <args> |
| | | <arg>-Xjsr305=strict</arg> |
| | | </args> |
| | | <compilerPlugins> |
| | | <plugin>spring</plugin> |
| | | </compilerPlugins> |
| | | </configuration> |
| | | <dependencies> |
| | | <dependency> |
| | | <groupId>org.jetbrains.kotlin</groupId> |
| | | <artifactId>kotlin-maven-allopen</artifactId> |
| | | <version>${kotlin.version}</version> |
| | | </dependency> |
| | | </dependencies> |
| | | </plugin> |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | | <!-- <artifactId>spring-boot-maven-plugin</artifactId>--> |
| | | <!-- </plugin>--> |
| | | <!-- <plugin>--> |
| | | <!-- <groupId>org.jetbrains.kotlin</groupId>--> |
| | | <!-- <artifactId>kotlin-maven-plugin</artifactId>--> |
| | | <!-- <configuration>--> |
| | | <!-- <args>--> |
| | | <!-- <arg>-Xjsr305=strict</arg>--> |
| | | <!-- </args>--> |
| | | <!-- <compilerPlugins>--> |
| | | <!-- <plugin>spring</plugin>--> |
| | | <!-- </compilerPlugins>--> |
| | | <!-- </configuration>--> |
| | | <!-- <dependencies>--> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.jetbrains.kotlin</groupId>--> |
| | | <!-- <artifactId>kotlin-maven-allopen</artifactId>--> |
| | | <!-- <version>${kotlin.version}</version>--> |
| | | <!-- </dependency>--> |
| | | <!-- </dependencies>--> |
| | | <!-- </plugin>--> |
| | | <!-- mybatis generator 自动生成代码插件 --> |
| | | <plugin> |
| | | <groupId>org.mybatis.generator</groupId> |