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.

104 lines
3.8 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?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>
<groupId>com.example</groupId>
<artifactId>starter-jxbrowser</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>8</java.version>
<maven.test.skip>true</maven.test.skip>
</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>
<!-- java注册全局热键 -->
<dependency>
<groupId>com.melloware</groupId>
<artifactId>jintellitype</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>jxbrowser</artifactId>
<version>6.21</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/jxbrowser-6.21.jar</systemPath>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>jxbrowser-linux64</artifactId>
<version>6.21</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/jxbrowser-linux64-6.21.jar</systemPath>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>jxbrowser-mac</artifactId>
<version>6.21</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/jxbrowser-mac-6.21.jar</systemPath>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>jxbrowser-win32</artifactId>
<version>6.21</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/jxbrowser-win32-6.21.jar</systemPath>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>jxbrowser-win64</artifactId>
<version>6.21</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/jxbrowser-win64-6.21.jar</systemPath>
</dependency>
</dependencies>
<build>
<!-- 项目名称 -->
<finalName>${artifactId}-${version}</finalName>
<!-- 默认的主代码目录 -->
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<!-- 包含lib中所有jar包 -->
<resource>
<directory>${basedir}/src/main/resources/lib</directory>
<targetPath>BOOT-INF/lib/</targetPath>
<includes>
<include>*.jar</include>
</includes>
</resource>
</resources>
</build>
</project>

Powered by TurnKey Linux.