412 lines
No EOL
12 KiB
XML
412 lines
No EOL
12 KiB
XML
<?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.alexander-logistics</groupId>
|
|
<artifactId>office-alexander-logistics</artifactId>
|
|
<version>1.3.5</version>
|
|
<packaging>pom</packaging>
|
|
<name>Imixs Office Workflow - Custom Build</name>
|
|
|
|
<modules>
|
|
<module>office-alexander-logistics-app</module>
|
|
<module>office-alexander-logistics-testclient</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<java.source>11</java.source>
|
|
<java.target>11</java.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<!-- Build Time -->
|
|
<org.imixs.build.timestamp>${maven.build.timestamp}</org.imixs.build.timestamp>
|
|
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
|
|
|
|
<!-- Dependency Versions -->
|
|
<jakarta.version>10.0.0</jakarta.version>
|
|
<org.imixs.office.version>5.0.5-SNAPSHOT</org.imixs.office.version>
|
|
<org.imixs.workflow.version>6.0.9</org.imixs.workflow.version>
|
|
<org.imixs.marty.version>5.0.0</org.imixs.marty.version>
|
|
<org.imixs.archive.version>3.1.3-SNAPSHOT</org.imixs.archive.version>
|
|
<org.imixs.adapters.version>3.0.3</org.imixs.adapters.version>
|
|
<org.imixs.melman.version>2.1.1-SNAPSHOT</org.imixs.melman.version>
|
|
<org.imixs.data.version>1.0.2-SNAPSHOT</org.imixs.data.version>
|
|
<org.imixs.e-invoice.version>1.0.3-SNAPSHOT</org.imixs.e-invoice.version>
|
|
<microprofile.version>6.0</microprofile.version>
|
|
<net.sf.saxon.version>9.9.1-4</net.sf.saxon.version>
|
|
<apache.pdfbox.version>2.0.26</apache.pdfbox.version>
|
|
<!-- -->
|
|
<org.imixs.ai.version>1.1.1</org.imixs.ai.version>
|
|
<custom.webResources>src/main/webapp</custom.webResources>
|
|
|
|
<!-- test dependencies -->
|
|
<junit.jupiter.version>5.9.2</junit.jupiter.version>
|
|
<mockito.version>5.8.0</mockito.version>
|
|
|
|
<!-- Environment Settings -->
|
|
<imixs-office.contextroot>/</imixs-office.contextroot>
|
|
<imixs-office.realm>imixsrealm</imixs-office.realm>
|
|
<imixs-office.jta-data-source>jdbc/office</imixs-office.jta-data-source>
|
|
<imixs-office.IndexDir>lucene/office-index</imixs-office.IndexDir>
|
|
<imixs-office.applicationname>office-alexander-logistics</imixs-office.applicationname>
|
|
<imixs-mail-res-ref-name>java:/mail/org.imixs.workflow.mail</imixs-mail-res-ref-name>
|
|
|
|
|
|
<!-- Wildfly unpack war -->
|
|
<custom.unpackTypes>war</custom.unpackTypes>
|
|
|
|
<!-- jndi Mail res-ref name -->
|
|
<imixs-mail-res-ref-name>java:/mail/org.imixs.workflow.mail</imixs-mail-res-ref-name>
|
|
|
|
<org.imixs.kubernetes.registry>registry.tikal.imixs.com</org.imixs.kubernetes.registry>
|
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
<!-- Sonatype Snapshot repository -->
|
|
<repository>
|
|
<id>sonatype-snaptshots</id>
|
|
<name>Sonatype Snapshot repository</name>
|
|
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>docker</id>
|
|
<!-- build latest - see ear module for details -->
|
|
</profile>
|
|
<profile>
|
|
<id>debug</id>
|
|
<!-- build latest - see ear module for details -->
|
|
</profile>
|
|
<profile>
|
|
<id>kubernetes</id>
|
|
<!-- build and push to rep - see ear module for details -->
|
|
</profile>
|
|
</profiles>
|
|
|
|
|
|
<build>
|
|
<resources>
|
|
<!-- enable resource filtering for multi language version -->
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<!-- use JDK settings for compiling -->
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>${java.source}</source>
|
|
<target>${java.target}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Testing JUnit 5 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!-- Imixs Code Formatter and Checkstyle
|
|
<plugin>
|
|
<groupId>net.revelc.code.formatter</groupId>
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
<version>2.26.0</version>
|
|
<configuration>
|
|
<configFile>
|
|
https://raw.githubusercontent.com/imixs/imixs-workflow/refs/heads/master/imixs-code-style.xml</configFile>
|
|
<lineEnding>LF</lineEnding>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>format</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<configLocation>
|
|
https://raw.githubusercontent.com/imixs/imixs-workflow/master/imixs-checkstyle-8.44.xml</configLocation>
|
|
<failOnViolation>true</failOnViolation>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
-->
|
|
|
|
</plugins>
|
|
<finalName>office-alexander-logistics</finalName>
|
|
</build>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- Imixs Workflow -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-workflow-core</artifactId>
|
|
<version>${org.imixs.workflow.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-workflow-engine</artifactId>
|
|
<version>${org.imixs.workflow.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-workflow-faces</artifactId>
|
|
<version>${org.imixs.workflow.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-workflow-jax-rs</artifactId>
|
|
<version>${org.imixs.workflow.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-workflow-index-lucene</artifactId>
|
|
<version>${org.imixs.workflow.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Marty -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-marty</artifactId>
|
|
<version>${org.imixs.marty.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Office Workflow -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-office-workflow-app</artifactId>
|
|
<version>${org.imixs.office.version}</version>
|
|
<type>war</type>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-office-workflow-util</artifactId>
|
|
<version>${org.imixs.office.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- SEPA Adapter -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-adapters-sepa</artifactId>
|
|
<version>${org.imixs.adapters.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- DATEV Adapter -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-adapters-datev</artifactId>
|
|
<version>${org.imixs.adapters.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- QR Code -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-adapters-qrcode</artifactId>
|
|
<version>${org.imixs.adapters.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- POI Adapter -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-adapters-poi</artifactId>
|
|
<version>${org.imixs.adapters.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Imixs-Archive API -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-archive-api</artifactId>
|
|
<version>${org.imixs.archive.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- Imixs AI -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-ai-workflow</artifactId>
|
|
<version>${org.imixs.ai.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- Imixs Data -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-data-groups</artifactId>
|
|
<version>${org.imixs.data.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-data-views</artifactId>
|
|
<version>${org.imixs.data.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-data-documents</artifactId>
|
|
<version>${org.imixs.data.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-data-importer</artifactId>
|
|
<version>${org.imixs.data.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- Melman Version Management hinzufügen -->
|
|
<dependency>
|
|
<groupId>org.imixs.workflow</groupId>
|
|
<artifactId>imixs-melman</artifactId>
|
|
<version>${org.imixs.melman.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- xsl 2.0 support for Reporting / Chart Diagrams -->
|
|
<dependency>
|
|
<groupId>net.sf.saxon</groupId>
|
|
<artifactId>Saxon-HE</artifactId>
|
|
<version>${net.sf.saxon.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<dependencies>
|
|
<!-- Jakarta EE -->
|
|
<dependency>
|
|
<groupId>jakarta.platform</groupId>
|
|
<artifactId>jakarta.jakartaee-api</artifactId>
|
|
<version>${jakarta.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- Microprofile -->
|
|
<dependency>
|
|
<groupId>org.eclipse.microprofile</groupId>
|
|
<artifactId>microprofile</artifactId>
|
|
<version>${microprofile.version}</version>
|
|
<type>pom</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Testing -->
|
|
|
|
<!-- JUnit 5 Dependencies -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- Mockito Dependencies -->
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>${mockito.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
<version>${mockito.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- Test dependencies -->
|
|
<dependency>
|
|
<groupId>org.eclipse.parsson</groupId>
|
|
<artifactId>jakarta.json</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- JSON-B Implementation for Tests -->
|
|
<dependency>
|
|
<groupId>org.eclipse</groupId>
|
|
<artifactId>yasson</artifactId>
|
|
<version>3.0.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>jakarta.json</artifactId>
|
|
<version>2.0.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- HTTP Client -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
<version>5.2.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</project> |