2022-04-30 20:12:32 -04:00
|
|
|
<?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"
|
2022-05-02 16:15:01 -04:00
|
|
|
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>
|
2022-04-30 20:12:32 -04:00
|
|
|
|
2022-05-02 16:15:01 -04:00
|
|
|
<groupId>tech.bitgoblin</groupId>
|
2022-07-17 13:32:58 -04:00
|
|
|
<artifactId>dragoon</artifactId>
|
2023-01-25 01:02:10 -05:00
|
|
|
<version>0.3.4</version>
|
2022-04-30 20:12:32 -04:00
|
|
|
|
2022-05-02 16:15:01 -04:00
|
|
|
<name>Dragoon</name>
|
|
|
|
<url>https://www.bitgoblin.tech</url>
|
2022-07-17 13:32:58 -04:00
|
|
|
<description>Automated video transcoder service.</description>
|
|
|
|
<inceptionYear>2022</inceptionYear>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>Bit Goblin</name>
|
|
|
|
<url>https://www.bitgoblin.tech</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>gballantine</id>
|
|
|
|
<name>Gregory Ballantine</name>
|
|
|
|
<email>gballantine@bitgoblin.tech</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>BSD</name>
|
|
|
|
<url>https://opensource.org/licenses/BSD-2-Clause</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
<comments>Simplified BSD license.</comments>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2022-04-30 20:12:32 -04:00
|
|
|
|
2022-05-02 16:15:01 -04:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-08-30 00:08:18 -04:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2022-05-02 16:15:01 -04:00
|
|
|
</properties>
|
2022-04-30 20:12:32 -04:00
|
|
|
|
2022-05-02 16:15:01 -04:00
|
|
|
<dependencies>
|
2022-07-17 14:04:48 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
<version>1.3.1</version>
|
|
|
|
</dependency>
|
2022-05-02 16:15:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.tomlj</groupId>
|
|
|
|
<artifactId>tomlj</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
2022-05-06 02:58:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
2023-01-25 10:14:50 -05:00
|
|
|
<version>2.19.0</version>
|
2022-05-06 02:58:50 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2023-01-25 10:14:50 -05:00
|
|
|
<version>2.19.0</version>
|
2022-05-06 02:58:50 -04:00
|
|
|
</dependency>
|
2022-05-02 16:15:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2022-04-30 20:12:32 -04:00
|
|
|
|
2022-05-02 16:15:01 -04:00
|
|
|
<build>
|
2022-07-17 13:32:58 -04:00
|
|
|
<plugins>
|
|
|
|
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.22.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<!-- DO NOT include log4j.properties file in your Jar -->
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/log4j.properties</exclude>
|
|
|
|
</excludes>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<!-- Jar file entry point -->
|
|
|
|
<mainClass>tech.bitgoblin.App</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>tech.bitgoblin.App</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.aerse.maven</groupId>
|
|
|
|
<artifactId>deb-maven-plugin</artifactId>
|
|
|
|
<version>1.16</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>package</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>package</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<unixUserId>dragoon</unixUserId>
|
|
|
|
<unixGroupId>dragoon</unixGroupId>
|
|
|
|
<debBaseDir>${project.basedir}/src/build/deb</debBaseDir>
|
|
|
|
<installDir>/opt</installDir>
|
|
|
|
<osDependencies>
|
2022-08-30 00:08:18 -04:00
|
|
|
<openjdk-17-jre></openjdk-17-jre>
|
2022-07-17 13:32:58 -04:00
|
|
|
<ffmpeg></ffmpeg>
|
|
|
|
</osDependencies>
|
|
|
|
<javaServiceWrapper>false</javaServiceWrapper>
|
|
|
|
<generateVersion>false</generateVersion>
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<source>${basedir}/src/build/deb</source>
|
|
|
|
<target>/</target>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<source>${basedir}/target/dragoon-${project.version}-jar-with-dependencies.jar</source>
|
|
|
|
<target>/opt/dragoon/dragoon.jar</target>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>rpm-maven-plugin</artifactId>
|
|
|
|
<version>2.2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>generate-rpm</id>
|
|
|
|
<goals>
|
|
|
|
<goal>rpm</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<license>BSD 2-Clause</license>
|
|
|
|
<group>Applications/Multimedia</group>
|
|
|
|
<icon>src/main/resources/icon.gif</icon>
|
|
|
|
<packager>Bit Goblin</packager>
|
|
|
|
<prefix>/opt</prefix>
|
|
|
|
<changelogFile>${project.basedir}/src/build/changelog.txt</changelogFile>
|
|
|
|
<targetOs>linux</targetOs>
|
|
|
|
<mappings>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/dragoon</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<username>dragoon</username>
|
|
|
|
<groupname>dragoon</groupname>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/opt/dragoon/dragoon.jar</directory>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<username>dragoon</username>
|
|
|
|
<groupname>dragoon</groupname>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${basedir}/target/dragoon-${project.version}-jar-with-dependencies.jar</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/etc/dragoon</directory>
|
|
|
|
<configuration>true</configuration>
|
|
|
|
<filemode>755</filemode>
|
|
|
|
<username>dragoon</username>
|
|
|
|
<groupname>dragoon</groupname>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/src/build/deb/etc/dragoon</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
<mapping>
|
|
|
|
<directory>/etc/systemd/system/dragoon.service</directory>
|
|
|
|
<filemode>644</filemode>
|
|
|
|
<username>root</username>
|
|
|
|
<groupname>root</groupname>
|
|
|
|
<sources>
|
|
|
|
<source>
|
|
|
|
<location>${project.basedir}/src/build/deb/etc/systemd/system/dragoon.service</location>
|
|
|
|
</source>
|
|
|
|
</sources>
|
|
|
|
</mapping>
|
|
|
|
</mappings>
|
|
|
|
<requires>
|
2022-08-30 00:08:18 -04:00
|
|
|
<require>java-17-openjdk</require>
|
2022-07-17 13:32:58 -04:00
|
|
|
<require>ffmpeg</require>
|
|
|
|
</requires>
|
|
|
|
<preinstallScriptlet>
|
|
|
|
<script>echo "installing ${project.name} now"</script>
|
|
|
|
</preinstallScriptlet>
|
|
|
|
<postinstallScriptlet>
|
|
|
|
<scriptFile>src/build/scripts/postinstall.sh</scriptFile>
|
|
|
|
<fileEncoding>utf-8</fileEncoding>
|
|
|
|
<filter>true</filter>
|
|
|
|
</postinstallScriptlet>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
</plugin>
|
|
|
|
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>3.7.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2022-05-02 16:15:01 -04:00
|
|
|
</build>
|
2022-04-30 20:12:32 -04:00
|
|
|
</project>
|