|
@@ -0,0 +1,162 @@
|
|
|
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>cn.lttc</groupId>
|
|
|
+ <artifactId>lttc-sample-scan</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <name>lttc-sample-scan</name>
|
|
|
+ <description>lttc-sample-scan</description>
|
|
|
+ <properties>
|
|
|
+ <java.version>11</java.version>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <spring-boot.version>2.6.13</spring-boot.version>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <!--Spring Boot 核心-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!--mybatis-plus-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
+ <version>3.5.3.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!--德鲁伊 数据库连接池-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
+ <version>1.2.19</version>
|
|
|
+ </dependency>
|
|
|
+ <!--登录校验 sa-token -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.dev33</groupId>
|
|
|
+ <artifactId>sa-token-spring-boot-starter</artifactId>
|
|
|
+ <version>1.37.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!--sql server 驱动-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
+ <artifactId>mssql-jdbc</artifactId>
|
|
|
+ <version>8.2.2.jre11</version>
|
|
|
+ </dependency>
|
|
|
+ <!--Json解析-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.83</version>
|
|
|
+ </dependency>
|
|
|
+ <!--lombok-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.18.26</version>
|
|
|
+ </dependency>
|
|
|
+ <!--文件上传-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
+ <version>1.3</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.8.1</version>
|
|
|
+ <configuration>
|
|
|
+ <source>11</source>
|
|
|
+ <target>11</target>
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <mainClass>cn.lttc.LttcSampleScanApplication</mainClass>
|
|
|
+<!-- <skip>true</skip>-->
|
|
|
+ </configuration>
|
|
|
+
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>repackage</id>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+<!-- <plugin>-->
|
|
|
+<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
|
+<!-- <artifactId>maven-assembly-plugin</artifactId>-->
|
|
|
+<!-- <version>2.4</version>-->
|
|
|
+<!-- <configuration>-->
|
|
|
+<!-- <appendAssemblyId>false</appendAssemblyId>-->
|
|
|
+<!-- <!–jar包名称–>-->
|
|
|
+<!-- <finalName>${project.artifactId}-${project.version}</finalName>-->
|
|
|
+<!-- <descriptorRefs>-->
|
|
|
+<!-- <descriptorRef>jar-with-dependencies</descriptorRef>-->
|
|
|
+<!-- </descriptorRefs>-->
|
|
|
+<!-- <archive>-->
|
|
|
+<!-- <manifest>-->
|
|
|
+<!-- <addClasspath>true</addClasspath>-->
|
|
|
+<!-- </manifest>-->
|
|
|
+<!-- <!–manifest.mf配置–>-->
|
|
|
+<!-- <!–为了做premain而修改的–>-->
|
|
|
+<!-- <manifestEntries>-->
|
|
|
+<!-- <Premain-Class>Xxx</Premain-Class>-->
|
|
|
+<!-- <Agent-Class>Xxx</Agent-Class>-->
|
|
|
+<!-- <Can-Redefine-Classes>true</Can-Redefine-Classes>-->
|
|
|
+<!-- <Can-Retransform-Classes>true</Can-Retransform-Classes>-->
|
|
|
+<!-- </manifestEntries>-->
|
|
|
+<!-- </archive>-->
|
|
|
+<!-- </configuration>-->
|
|
|
+<!-- <executions>-->
|
|
|
+<!-- <execution>-->
|
|
|
+<!-- <id>make-assembly</id>-->
|
|
|
+<!-- <phase>package</phase>-->
|
|
|
+<!-- <goals>-->
|
|
|
+<!-- <goal>assembly</goal>-->
|
|
|
+<!-- </goals>-->
|
|
|
+<!-- </execution>-->
|
|
|
+<!-- </executions>-->
|
|
|
+<!-- </plugin>-->
|
|
|
+
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
+ <filtering>true</filtering>
|
|
|
+ </resource>
|
|
|
+ <resource>
|
|
|
+ <directory>src/main/java</directory>
|
|
|
+ <includes>
|
|
|
+ <include>**/*.xml</include>
|
|
|
+ <include>**/*.json</include>
|
|
|
+ </includes>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|