<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <!-- <parent>--> <!-- <artifactId>mztb-parent</artifactId>--> <!-- <groupId>cc.smtweb</groupId>--> <!-- <version>1.0-SNAPSHOT</version>--> <!-- </parent>--> <modelVersion>4.0.0</modelVersion> <groupId>cc.smtweb</groupId> <artifactId>mztb</artifactId> <version>1.0-SNAPSHOT</version> <packaging>war</packaging> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.6.2</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>2.6.2</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.6.2</version> </dependency> <!-- 系统底层 --> <dependency> <groupId>cc.smtweb</groupId> <artifactId>smt-framework-bpm</artifactId> <version>1.4.0-SNAPSHOT</version> </dependency> <!-- <dependency>--> <!-- <groupId>cc.smtweb</groupId>--> <!-- <artifactId>smt-framework-core</artifactId>--> <!-- <version>1.4.0-SNAPSHOT</version>--> <!-- </dependency>--> <dependency> <groupId>cc.smtweb</groupId> <artifactId>smt-framework-bpm-vue</artifactId> <!-- <artifactId>smt-framework-bpm-run</artifactId>--> <version>1.4.0-SNAPSHOT</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.2.6</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.3</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.3.3</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.sun</groupId> <artifactId>rt</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${env.JAVA_HOME}\jre\lib\rt.jar</systemPath> </dependency> </dependencies> <pluginRepositories> <pluginRepository> <id>nexus-jjkj</id> <name>Nexus jjkj</name> <url>http://47.92.149.153:7000/repository/maven-public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> <build> <finalName>mztb</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSystemScope>true</includeSystemScope> </configuration> <version>2.6.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.16</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </project>