| | |
| | | <version>1.0.0</version> |
| | | <packaging>war</packaging> |
| | | |
| | | <repositories> |
| | | <repository> |
| | | <id>local-repo</id> |
| | | <name>Local File System Repository</name> |
| | | <url>file://E:/repository/repository</url> <!-- Windows路径需用正斜杠 --> |
| | | <releases> |
| | | <enabled>true</enabled> <!-- 启用稳定版依赖 --> |
| | | </releases> |
| | | <snapshots> |
| | | <enabled>false</enabled> <!-- 禁用快照版 --> |
| | | </snapshots> |
| | | </repository> |
| | | </repositories> |
| | | |
| | | <properties> |
| | | <java.version>1.8</java.version> |
| | | <cool.version>2.0.0</cool.version> |
| | | <cool.version>3.6.0</cool.version> |
| | | <mysql-driver.version>5.1.47</mysql-driver.version> |
| | | <mybatis-plus.version>2.3.2</mybatis-plus.version> |
| | | <fastjson.version>1.2.58</fastjson.version> |
| | | <springfox.version>2.7.0</springfox.version> |
| | | <dameng.version>8.1.3.162</dameng.version> |
| | | </properties> |
| | | |
| | | <dependencies> |
| | |
| | | <!--<artifactId>spring-boot-starter-tomcat</artifactId>--> |
| | | <!--<scope>provided</scope>--> |
| | | <!--</dependency>--> |
| | | <!-- 在pom.xml中添加以下配置 --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | | <!-- <artifactId>spring-boot-starter-web</artifactId>--> |
| | | <!-- 排除Spring Boot内嵌Tomcat(若已打包为WAR) --> |
| | | <!-- <exclusions>--> |
| | | <!-- <exclusion>--> |
| | | <!-- <groupId>org.springframework.boot</groupId>--> |
| | | <!-- <artifactId>spring-boot-starter-tomcat</artifactId>--> |
| | | <!-- </exclusion>--> |
| | | <!-- </exclusions>--> |
| | | <!-- </dependency>--> |
| | | |
| | | <!-- 显式排除slf4j-simple --> |
| | | <!-- <dependency>--> |
| | | <!-- <groupId>org.slf4j</groupId>--> |
| | | <!-- <artifactId>slf4j-simple</artifactId>--> |
| | | <!-- <version>1.7.30</version>--> |
| | | <!-- <scope>provided</scope> <!– 或直接删除该依赖 –>--> |
| | | <!-- </dependency>--> |
| | | <dependency> |
| | | <groupId>com.dameng</groupId> |
| | | <artifactId>DmJdbcDriver8</artifactId> |
| | | <version>${dameng.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-data-redis</artifactId> |
| | |
| | | <version>1.1.3.3</version> |
| | | <systemPath>${project.basedir}/src/main/resources/lib/xpp3-1.1.3.3.jar</systemPath> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.yaml</groupId> |
| | | <artifactId>snakeyaml</artifactId> |
| | | <version>1.33</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-io</groupId> |
| | | <artifactId>commons-io</artifactId> |
| | | <version>2.11.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>de.schlichtherle.truelicense</groupId> |
| | | <artifactId>truelicense-core</artifactId> |
| | | <version>1.33</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>jswcs</finalName> |
| | | <finalName>wcs</finalName> |
| | | <plugins> |
| | | <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.apache.maven.plugins</groupId> |