|
|
|
|
<?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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.3.7.RELEASE</version>
|
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>com.example</groupId>
|
|
|
|
|
<artifactId>starter-jcef</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<!--<packaging>war</packaging>--><!--需要打包成war时放开-->
|
|
|
|
|
<name>starter-jcef</name>
|
|
|
|
|
<description>project for Spring Boot</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>11</java.version>
|
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
|
<spring-boot.version>2.3.7.RELEASE</spring-boot.version>
|
|
|
|
|
<spring-cloud.version>Hoxton.SR8</spring-cloud.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<!-- 将中央仓库地址指向阿里云聚合仓库,提高下载速度 -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>aliyun</id>
|
|
|
|
|
<name>Aliyun Repository</name>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<!-- 将插件的仓库指向阿里云聚合仓库,解决低版本maven下载插件异常或提高下载速度 -->
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>aliyun</id>
|
|
|
|
|
<name>Aliyun Repository</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>me.friwi</groupId>
|
|
|
|
|
<artifactId>jcefmaven</artifactId>
|
|
|
|
|
<version>110.0.25.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>me.friwi</groupId>
|
|
|
|
|
<artifactId>jcef-natives-windows-amd64</artifactId>
|
|
|
|
|
<version>jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>me.friwi</groupId>-->
|
|
|
|
|
<!-- <artifactId>jcef-natives-windows-arm64</artifactId>-->
|
|
|
|
|
<!-- <version>jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>me.friwi</groupId>-->
|
|
|
|
|
<!-- <artifactId>jcef-natives-linux-amd64</artifactId>-->
|
|
|
|
|
<!-- <version>jcef-87476e9+cef-110.0.25+g75b1c96+chromium-110.0.5481.78</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
<!-- java注册全局热键 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.melloware</groupId>
|
|
|
|
|
<artifactId>jintellitype</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 依赖管理器 -->
|
|
|
|
|
<!-- 管理器中依赖都会有默认的版本号,在pom中引用时即可省略<version>标签 -->
|
|
|
|
|
<!-- 注:当需要非默认版本或本地环境导致的无法继承管理器中版本时,此时可以使用<version>显示指定依赖版本 -->
|
|
|
|
|
<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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
|
<version>${spring-cloud.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<!-- 项目名称 -->
|
|
|
|
|
<finalName>${artifactId}-${version}</finalName>
|
|
|
|
|
<!-- 默认的主代码目录 -->
|
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
<!-- 包含java下的xml文件 -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*Mapper.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
<!-- 包含lib中所有jar包 -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>${basedir}/src/main/resources/lib</directory>
|
|
|
|
|
<targetPath>BOOT-INF/lib/</targetPath>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*.jar</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
<!-- 启动bat -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>${basedir}/src/main/resources/部署文档</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*.bat</include>
|
|
|
|
|
<include>*.sh</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<targetPath>${basedir}/target/部署文档</targetPath>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<webResources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>${project.basedir}/src/main/resources/lib</directory>
|
|
|
|
|
<targetPath>WEB-INF/lib</targetPath>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*.jar</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</webResources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|