You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
7.3 KiB

<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.insigma</groupId>
<artifactId>hy-tool</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>hy-tool</name>
<description>EpSoft Hy-Tool</description>
<properties>
<java.version>1.8</java.version>
<sqlite.jdbc.version>3.36.0.3</sqlite.jdbc.version>
<mybatis.version>2.2.1</mybatis.version>
<druid.version>1.2.8</druid.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency>
<!--使用注解简化代码开发,例如开启日志,关闭流,get/set等等-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<!-- druid 驱动 -->
<!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${druid.version}</version>
</dependency>
<!-- sqlite3驱动包 -->
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${sqlite.jdbc.version}</version>
</dependency>
<!-- beauty 相关的本地JAR -->
<dependency>
<groupId>beautyeye_lnf</groupId>
<artifactId>beautyeye_lnf</artifactId>
<version>3.7</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/beautyeye_lnf.jar</systemPath>
</dependency>
<!-- beauty 相关的本地JAR -->
<!-- djnativeswing 相关的本地JAR -->
<dependency>
<groupId>djnativeswing</groupId>
<artifactId>djnativeswing</artifactId>
<version>4.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/djnativeswing.jar</systemPath>
</dependency>
<!-- djnativeswing 相关的本地JAR -->
<!-- djnativeswing-swt 相关的本地JAR -->
<dependency>
<groupId>djnativeswing_swt</groupId>
<artifactId>djnativeswing_swt</artifactId>
<version>4.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/djnativeswing-swt.jar</systemPath>
</dependency>
<!-- djnativeswing-swt 相关的本地JAR -->
<!-- org.eclipse.swt.win32.win32.x86_64-4.2 相关的本地JAR -->
<dependency>
<groupId>swt-4.3-win32-win32-x86_64</groupId>
<artifactId>swt-4.3-win32-win32-x86_64</artifactId>
<version>4.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/swt-4.3-win32-win32-x86_64.jar</systemPath>
</dependency>
<!-- org.eclipse.swt.win32.win32.x86_64-4.2 相关的本地JAR -->
<!-- jsoup HTML parser library @ https://jsoup.org/ -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.14.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.78</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<includeSystemScope>true</includeSystemScope>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<!-- 此处为程序主入口-->
<mainClass>com.wuzf.swing.SwingDemoApplication</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<!-- 跳过单元测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>