2019-11-04 00:32:24 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-06-10 14:10:50 -04:00
|
|
|
<!--
|
|
|
|
~ Auto-CreamAPI
|
|
|
|
~ Copyright (C) 2020 Jeddunk
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
|
|
|
|
~ License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
~ version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
~ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License along with this program. If not, see
|
|
|
|
~ <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
2019-11-04 00:32:24 -05:00
|
|
|
<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>xyz.jeddunk</groupId>
|
|
|
|
<artifactId>auto-cream-api</artifactId>
|
2020-10-14 07:43:29 -04:00
|
|
|
<version>1.2.0</version>
|
2019-11-04 00:32:24 -05:00
|
|
|
|
|
|
|
<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>
|
2020-09-27 11:48:13 -04:00
|
|
|
<dist>${project.basedir}/dist</dist>
|
2019-11-04 00:32:24 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2020-10-14 08:32:19 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>dist</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-11-04 00:32:24 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2020-09-27 11:48:13 -04:00
|
|
|
<version>2.2.2</version>
|
2019-11-04 00:32:24 -05:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2020-09-27 11:48:13 -04:00
|
|
|
<mainClass>xyz.jeddunk.autocreamapi.Main</mainClass>
|
2019-11-04 00:32:24 -05:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-09-27 11:48:13 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.coderplus.maven.plugins</groupId>
|
|
|
|
<artifactId>copy-rename-maven-plugin</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>install-copy</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<overWrite>true</overWrite>
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<sourceFile>${project.build.directory}/${project.artifactId}-${project.version}-jar-with-dependencies.jar</sourceFile>
|
|
|
|
<destinationFile>${dist}/${project.artifactId}.jar</destinationFile>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<sourceFile>${project.basedir}/README.md</sourceFile>
|
|
|
|
<destinationFile>${dist}/README.md</destinationFile>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<sourceFile>${project.basedir}/steam_api.dll</sourceFile>
|
|
|
|
<destinationFile>${dist}/steam_api.dll</destinationFile>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<sourceFile>${project.basedir}/steam_api.dll</sourceFile>
|
|
|
|
<destinationFile>${dist}/steam_api64.dll</destinationFile>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<sourceFile>${project.basedir}/version.txt</sourceFile>
|
|
|
|
<destinationFile>${dist}/version.txt</destinationFile>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>install-zip</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<zip destfile="${project.basedir}/${project.artifactId}-${project.version}.zip" basedir="${dist}"/>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-11-04 00:32:24 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-11-14 22:16:00 -05:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>bintray-jerady-maven</id>
|
|
|
|
<name>bintray</name>
|
|
|
|
<url>https://dl.bintray.com/jerady/maven</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<id>bintray-jerady-maven</id>
|
|
|
|
<name>bintray-plugins</name>
|
|
|
|
<url>https://dl.bintray.com/jerady/maven</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2019-11-04 00:32:24 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jfoenix</groupId>
|
|
|
|
<artifactId>jfoenix</artifactId>
|
|
|
|
<version>8.0.8</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-configuration2</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
<version>1.9.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.jensd</groupId>
|
|
|
|
<artifactId>fontawesomefx-commons</artifactId>
|
|
|
|
<version>8.15</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.jensd</groupId>
|
|
|
|
<artifactId>fontawesomefx-fontawesome</artifactId>
|
|
|
|
<version>4.7.0-5</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-11-14 22:16:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.8.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>1.12.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.konghq</groupId>
|
|
|
|
<artifactId>unirest-java</artifactId>
|
|
|
|
<version>3.1.02</version>
|
|
|
|
</dependency>
|
2020-08-23 08:58:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.xdrop</groupId>
|
|
|
|
<artifactId>fuzzywuzzy</artifactId>
|
|
|
|
<version>1.3.1</version>
|
|
|
|
</dependency>
|
2020-09-27 11:48:13 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.coderplus.maven.plugins</groupId>
|
|
|
|
<artifactId>copy-rename-maven-plugin</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
</dependency>
|
2020-10-14 07:43:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.2.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fusesource.jansi</groupId>
|
|
|
|
<artifactId>jansi</artifactId>
|
|
|
|
<version>1.18</version>
|
|
|
|
</dependency>
|
2019-11-04 00:32:24 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|