1 Star 0 Fork 93

jcstrong / 自动备份文件到阿里云盘

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 7.08 KB
一键复制 编辑 原始数据 按行查看 历史
Jack 提交于 2022-07-31 17:50 . 1.新增停止备份功能
<?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>xin.xingk.www</groupId>
<artifactId>AliYunPan</artifactId>
<version>2.4</version>
<name>AliYunPan</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<!--okhttp3-->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.9.1</version>
</dependency>
<!--hutool工具类-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.21</version>
</dependency>
<!--Jsoup-->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.13.1</version>
</dependency>
<!--二维码-->
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.3.3</version>
</dependency>
<!--flatlaf-->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>2.0.2</version>
</dependency>
<!--flatlaf-->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf-extras</artifactId>
<version>2.0.2</version>
</dependency>
<!--logback-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.9</version>
</dependency>
<!--集成lombook-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
</dependency>
<!--GUI Designer -> binary class files-->
<dependency>
<groupId>com.intellij</groupId>
<artifactId>forms_rt</artifactId>
<version>7.0.3</version>
</dependency>
<!--mybatis-plus-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>3.4.3</version>
</dependency>
<!--连接池-->
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>4.0.3</version>
</dependency>
<!--SQLite-->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.36.0.3</version>
</dependency>
<!--cglib-->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2.2</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/main/resources</directory>
<includes>
<include>**</include>
</includes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>io.github.fvarrui</groupId>
<artifactId>javapackager</artifactId>
<version>1.6.3</version>
<configuration>
<!--在应用程序中嵌入自定义 JRE-->
<jrePath>D:\Program Files\Java\jre1.8.0_191</jrePath>
<bundleJre>true</bundleJre>
<mainClass>xin.xingk.www.App</mainClass>
<!--为应用程序生成安装程序-->
<generateInstaller>true</generateInstaller>
</configuration>
<executions>
<execution>
<id>bundling-for-windows</id>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
<configuration>
<platform>windows</platform>
<createZipball>true</createZipball>
<!--<administratorRequired>true</administratorRequired>-->
<winConfig>
<!-- general properties -->
<!--生成安装程序-->
<generateSetup>true</generateSetup>
<!--生成 MSI 安装程序-->
<generateMsi>false</generateMsi>
<!--生成 MSI 合并模块-->
<generateMsm>false</generateMsm>
<!-- setup generation properties -->
<!--安装程序安装模式:是否需要管理权限-->
<!--<setupMode>installForAllUsers</setupMode>-->
<!--如果设置为true,安装程序将不会要求创建桌面图标。-->
<createDesktopIconTask>true</createDesktopIconTask>
<!--如果将其设置为true,安装程序将不会显示“选择目标位置”向导页面。-->
<disableDirPage>false</disableDirPage>
<!--如果设置为true,安装程序将不会显示安装完成向导页面。-->
<disableFinishedPage>false</disableFinishedPage>
<!--使用设置语言进行映射-->
<setupLanguages>
<!--<english>compiler:Default.isl</english>-->
<spanish>compiler:Languages\ChineseSimplified.isl</spanish>
</setupLanguages>
</winConfig>
</configuration>
</execution>
<!--<execution>
<id>bundling-for-linux</id>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
<configuration>
<platform>linux</platform>
<createTarball>true</createTarball>
<linuxConfig>
<generateDeb>true</generateDeb>
<generateRpm>true</generateRpm>
</linuxConfig>
&lt;!&ndash; <jdkPath>X:\\path\to\linux\jdk</jdkPath>&ndash;&gt;
</configuration>
</execution>
<execution>
<id>bundling-for-mac</id>
<phase>package</phase>
<goals>
<goal>package</goal>
</goals>
<configuration>
<platform>mac</platform>
<createTarball>true</createTarball>
&lt;!&ndash;<macConfig>&ndash;&gt;
&lt;!&ndash;<generateDmg>true</generateDmg>&ndash;&gt;
&lt;!&ndash;<generatePkg>true</generatePkg>&ndash;&gt;
&lt;!&ndash;</macConfig>&ndash;&gt;
&lt;!&ndash;<jdkPath>X:\\path\to\mac\jdk</jdkPath>&ndash;&gt;
</configuration>
</execution>-->
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/jcstrong/AliYunPan.git
git@gitee.com:jcstrong/AliYunPan.git
jcstrong
AliYunPan
自动备份文件到阿里云盘
master

搜索帮助