<?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>org.fross</groupId>
<artifactId>dirsize</artifactId>
<version>2.0.0</version>
<name>dirsize</name>
<developers>
<developer>
<name>Michael Fross</name>
<email>michael@fross.org</email>
<url>https://fross.org</url>
</developer>
</developers>
<organization>
<name>Sinister Igloo Softworks</name>
<url>fross.org</url>
</organization>
<inceptionYear>2011</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<!-- Build single executable "Fat Jar" with all dependencies added -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>org.fross.${project.name}.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
<!-- Copy the jar with dependencies output to one simply called the <ProjectName>.jar -->
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>copy-file</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<sourceFile>${basedir}/target/${project.artifactId}-${project.version}-jar-with-dependencies.jar</sourceFile>
<destinationFile>${basedir}/target/${project.artifactId}.jar</destinationFile>
</configuration>
</execution>
</executions>
</plugin>
<!-- Set a pom variable to the version numbers of the defined dependencies -->
<!-- https://gitlab.com/josh-cain/dependencyversion-maven-plugin -->
<!-- Example: The library dependency version reference is ${org.fross:library:jar.version} -->
<plugin>
<groupId>io.reformanda.semper</groupId>
<artifactId>dependencyversion-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>set-all</id>
<goals>
<goal>set-version</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Update snapcraft.yaml file to set the program and library version -->
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>snap/snapcraft.yaml</file>
<replacements>
<replacement>
<token>version:.*</token>
<value>version: '${project.version}'</value>
</replacement>
<replacement>
<token>source-tag:.*</token>
<value>source-tag: 'v${org.fross:library:jar.version}'</value>
</replacement>
</replacements>
</configuration>
</plugin>
</plugins>
</build>
<!-- Define my custom Github repository where Library lives -->
<repositories>
<repository>
<id>github</id>
<name>GitHub frossm Library Package</name>
<url>https://maven.pkg.github.com/frossm/library</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<dependencies>
<!-- https://mvnrepository.com/artifact/gnu.getopt/java-getopt -->
<dependency>
<groupId>gnu.getopt</groupId>
<artifactId>java-getopt</artifactId>
<version>1.0.13</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.fusesource.jansi/jansi -->
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
<version>1.18</version>
</dependency>
<dependency>
<groupId>org.fross</groupId>
<artifactId>library</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
</project>