2024-02-10 10:35:02 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<relativePath>./../../pom.xml</relativePath>
|
|
|
|
<groupId>org.nanoboot.utils</groupId>
|
|
|
|
<artifactId>time-calc</artifactId>
|
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>time-calc-app</artifactId>
|
|
|
|
|
|
|
|
<name>time-calc-app</name>
|
|
|
|
<description>time-calc-app</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>org.nanoboot.utils.timecalc.app.Main</mainClass>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Build-Date>${timestamp}</Build-Date>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
<!-- <descriptorRefs>-->
|
|
|
|
<!-- <descriptorRef>jar-with-dependencies</descriptorRef>-->
|
|
|
|
<!-- </descriptorRefs>-->
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>./src/main/resources/install.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-02-25 09:11:07 +00:00
|
|
|
<dependencies>
|
2024-03-10 15:06:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
<version>1.5.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
2024-02-25 09:11:07 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.rjeschke</groupId>
|
|
|
|
<artifactId>txtmark</artifactId>
|
|
|
|
<version>0.13</version>
|
|
|
|
</dependency>
|
2024-03-09 11:49:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.41.2.1</version>
|
|
|
|
</dependency>
|
2024-04-23 19:00:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.formdev</groupId>
|
|
|
|
<artifactId>flatlaf</artifactId>
|
|
|
|
<version>3.4.1</version>
|
|
|
|
</dependency>
|
2024-02-25 09:11:07 +00:00
|
|
|
</dependencies>
|
2024-02-10 10:35:02 +00:00
|
|
|
|
2024-02-04 16:08:27 +00:00
|
|
|
</project>
|