2023-04-06 18:58:04 +01: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" 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>com.unicenta</groupId>
|
|
|
|
|
<artifactId>unicentaopos</artifactId>
|
2026-06-15 16:57:51 +01:00
|
|
|
<version>5.5.0</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-08-24 11:34:51 +01:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2024-09-07 13:56:23 +01:00
|
|
|
<derby.version>10.14.2.0</derby.version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
2024-05-20 17:03:58 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
</dependency>
|
2023-04-06 18:58:04 +01:00
|
|
|
<!-- sqlite-jdbc -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
|
<version>3.7.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- javafx dependencies for all platforms -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-base</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-graphics</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-media</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-swing</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-web</artifactId>
|
|
|
|
|
<version>11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
|
|
<version>2.7.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.6</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<version>1.2.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
|
<artifactId>jcommon</artifactId>
|
|
|
|
|
<version>1.0.24</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
<version>1.0.19</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>3.3.0-v_771</version>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
<version>1.9.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-digester</groupId>
|
|
|
|
|
<artifactId>commons-digester</artifactId>
|
|
|
|
|
<version>2.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.lowagie</groupId>
|
|
|
|
|
<artifactId>itext</artifactId>
|
|
|
|
|
<version>2.1.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi</artifactId>
|
2025-03-28 11:16:28 +00:00
|
|
|
<version>3.17</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</dependency>
|
2025-03-28 11:16:28 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>3.17</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.barcode4j</groupId>
|
|
|
|
|
<artifactId>barcode4j</artifactId>
|
|
|
|
|
<version>2.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>1.10</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
|
<artifactId>velocity</artifactId>
|
|
|
|
|
<version>1.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>oro</groupId>
|
|
|
|
|
<artifactId>oro</artifactId>
|
|
|
|
|
<version>2.0.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
<version>3.2.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.beanshell</groupId>
|
|
|
|
|
<artifactId>bsh</artifactId>
|
|
|
|
|
<version>2.0b4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bidib.jbidib.org.qbang.rxtx</groupId>
|
|
|
|
|
<artifactId>rxtxcomm</artifactId>
|
|
|
|
|
<version>2.2</version>
|
|
|
|
|
</dependency>
|
2023-06-27 16:35:29 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fazecast</groupId>
|
|
|
|
|
<artifactId>jSerialComm</artifactId>
|
|
|
|
|
<version>2.9.3</version>
|
|
|
|
|
</dependency>
|
2023-04-06 18:58:04 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jpos</groupId>
|
|
|
|
|
<artifactId>jpos</artifactId>
|
2024-01-27 14:44:13 +00:00
|
|
|
<version>2.1.9</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-nop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.swinglabs.swingx</groupId>
|
|
|
|
|
<artifactId>swingx-all</artifactId>
|
|
|
|
|
<version>1.6.5-1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>axis</groupId>
|
|
|
|
|
<artifactId>axis</artifactId>
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
|
|
<artifactId>axis-jaxrpc</artifactId>
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.soap</groupId>
|
|
|
|
|
<artifactId>saaj-api</artifactId>
|
|
|
|
|
<version>1.3.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>axis</groupId>
|
|
|
|
|
<artifactId>axis-wsdl4j</artifactId>
|
|
|
|
|
<version>1.5.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-discovery</groupId>
|
|
|
|
|
<artifactId>commons-discovery</artifactId>
|
|
|
|
|
<version>0.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.swinglabs</groupId>
|
|
|
|
|
<artifactId>swing-layout</artifactId>
|
|
|
|
|
<version>1.0.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.javacsv</groupId>
|
|
|
|
|
<artifactId>javacsv</artifactId>
|
|
|
|
|
<version>2.0</version>
|
|
|
|
|
</dependency>
|
2023-06-06 18:54:23 +01:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.netbeans.external/AbsoluteLayout -->
|
2023-04-06 18:58:04 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.netbeans.external</groupId>
|
|
|
|
|
<artifactId>AbsoluteLayout</artifactId>
|
2023-06-11 12:40:56 +01:00
|
|
|
<version>RELEASE82</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.javapos</groupId>
|
|
|
|
|
<artifactId>jpos</artifactId>
|
|
|
|
|
<version>1.13</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>5.1.39</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
|
<artifactId>derby</artifactId>
|
2024-04-27 14:31:45 +01:00
|
|
|
<version>${derby.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
|
<artifactId>derbytools</artifactId>
|
|
|
|
|
<version>${derby.version}</version>
|
|
|
|
|
</dependency>
|
2026-06-15 16:48:30 +01:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.apache.derby</groupId>-->
|
|
|
|
|
<!-- <artifactId>derbyshared</artifactId>-->
|
|
|
|
|
<!-- <version>${derby.version}</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
2023-04-06 18:58:04 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
|
<version>1.0.b2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Batik Dependencies now wrapped included in apache xmlgraphics fop -->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
|
<artifactId>fop</artifactId>
|
2024-04-26 16:37:16 +01:00
|
|
|
<version>2.3</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports</artifactId>
|
2024-04-26 16:39:21 +01:00
|
|
|
<version>6.12.2</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.lowagie</groupId>
|
|
|
|
|
<artifactId>itext</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
|
|
|
|
<version>6.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ar.com.fdvs</groupId>
|
|
|
|
|
<artifactId>DynamicJasper-core-fonts</artifactId>
|
|
|
|
|
<version>2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.jdt.core.compiler</groupId>
|
|
|
|
|
<artifactId>ecj</artifactId>
|
|
|
|
|
<version>4.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Commercial version -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
<version>2.9.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Flat LAF -->
|
|
|
|
|
<!-- flatlaf - Swing LaF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.formdev</groupId>
|
|
|
|
|
<artifactId>flatlaf-intellij-themes</artifactId>
|
|
|
|
|
<version>2.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- flatlaf - Swing LaF -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.formdev</groupId>
|
|
|
|
|
<artifactId>flatlaf</artifactId>
|
|
|
|
|
<version>1.6.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Flat Look and Feel addon for SwingX -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.formdev</groupId>
|
|
|
|
|
<artifactId>flatlaf-swingx</artifactId>
|
|
|
|
|
<version>1.6.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
|
<version>0.9.12</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/de.sciss/weblaf -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.sciss</groupId>
|
|
|
|
|
<artifactId>weblaf</artifactId>
|
|
|
|
|
<version>1.2.9</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-nop</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
2024-04-27 14:54:00 +01:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
|
</exclusion>
|
2023-04-06 18:58:04 +01:00
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2024-04-27 14:54:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
|
<version>1.4.11</version>
|
|
|
|
|
</dependency>
|
2023-04-06 18:58:04 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.unicenta</groupId>
|
|
|
|
|
<artifactId>unicenta-plugins</artifactId>
|
2026-06-15 16:48:30 +01:00
|
|
|
<version>1.3.2-SNAPSHOT</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.gluonhq</groupId>
|
|
|
|
|
<artifactId>charm-glisten</artifactId>
|
|
|
|
|
<version>6.2.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
|
<version>1.0.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dalsemi.onewire</groupId>
|
|
|
|
|
<artifactId>OneWireAPI</artifactId>
|
|
|
|
|
<version>0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 4.2.2 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.usb4java</groupId>
|
|
|
|
|
<artifactId>usb4java</artifactId>
|
|
|
|
|
<version>1.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.usb</groupId>
|
|
|
|
|
<artifactId>usb-api</artifactId>
|
|
|
|
|
<version>1.0.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jdatepicker</groupId>
|
|
|
|
|
<artifactId>jdatepicker</artifactId>
|
|
|
|
|
<version>1.3.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.sleepycat/je -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sleepycat</groupId>
|
|
|
|
|
<artifactId>je</artifactId>
|
|
|
|
|
<version>5.0.73</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.pushingpixels</groupId>
|
|
|
|
|
<artifactId>trident</artifactId>
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.pushingpixels</groupId>
|
|
|
|
|
<artifactId>substance</artifactId>
|
|
|
|
|
<version>7.1.00</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
2024-04-26 16:50:57 +01:00
|
|
|
<version>42.2.28</version>
|
2023-04-06 18:58:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.sciss</groupId>
|
|
|
|
|
<artifactId>weblaf-ui</artifactId>
|
|
|
|
|
<version>2.1.3</version>
|
|
|
|
|
<type>jar</type>
|
|
|
|
|
</dependency>
|
2024-01-27 14:44:13 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.8.9</version>
|
|
|
|
|
</dependency>
|
2023-04-06 18:58:04 +01:00
|
|
|
<!-- https://mvnrepository.com/artifact/junit/junit -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.12</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-inline</artifactId>
|
|
|
|
|
<version>4.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
|
|
|
<version>4.2.0</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<version>2.10</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>3.2.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
|
|
|
<mainClass>com.unicenta.pos.forms.StartPOS</mainClass>
|
|
|
|
|
</manifest>
|
|
|
|
|
<manifestEntries>
|
|
|
|
|
<Implementation-Title>unicenta-pos</Implementation-Title>
|
|
|
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
|
<Implementation-Vendor-Id>com.unicenta</Implementation-Vendor-Id>
|
|
|
|
|
<Implementation-Vendor>unicenta.com</Implementation-Vendor>
|
|
|
|
|
</manifestEntries>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<version>2.7</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-resources</id>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/lib/Windows</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/Windows</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/lib/Linux</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/Linux</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/lib/Mac_OS_X</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/Mac_OS_X</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/</targetPath>
|
|
|
|
|
<directory>${basedir}/src/scripts</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/Bonus</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/Bonus</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/Configs</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/Configs</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/Templates</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/Templates</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/images</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target</targetPath>
|
|
|
|
|
<directory>${basedir}/src/other/license</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/reports/com</targetPath>
|
|
|
|
|
<directory>${basedir}/src/main/resources/com</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>${basedir}/target/locales</targetPath>
|
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>com/**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>2.3.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
|
<debug>true</debug>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<extensions>
|
|
|
|
|
<extension>
|
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
|
<artifactId>wagon-ftp</artifactId>
|
|
|
|
|
<version>2.10</version>
|
|
|
|
|
</extension>
|
|
|
|
|
</extensions>
|
|
|
|
|
<finalName>unicentaopos</finalName>
|
|
|
|
|
</build>
|
|
|
|
|
<repositories>
|
2023-11-13 14:05:00 +00:00
|
|
|
<repository>
|
|
|
|
|
<id>central</id>
|
|
|
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
</repository>
|
2023-04-06 18:58:04 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>charm-glisten</id>
|
|
|
|
|
<name>charm-glisten Repository</name>
|
|
|
|
|
<url>https://nexus.gluonhq.com/nexus/content/repositories/releases/</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
2023-11-13 14:05:00 +00:00
|
|
|
<id>flatlaf</id>
|
|
|
|
|
<name>flatlaf</name>
|
|
|
|
|
<url>https://dev.webswing.org/public/nexus/repository/webswing-3rd-parties//</url>
|
2023-04-06 18:58:04 +01:00
|
|
|
</repository>
|
|
|
|
|
<repository>
|
2023-11-13 14:05:00 +00:00
|
|
|
<id>unicenta-repo</id>
|
|
|
|
|
<url>https://repo.unicenta.org/maven2/</url>
|
2023-04-06 18:58:04 +01:00
|
|
|
<layout>default</layout>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>unicenta-repo</id>
|
|
|
|
|
<url>ftp://repo.unicenta.org/</url>
|
|
|
|
|
<uniqueVersion>false</uniqueVersion>
|
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
<name>unicenta-opos</name>
|
|
|
|
|
</project>
|