167 lines
No EOL
6.3 KiB
XML
167 lines
No EOL
6.3 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>
|
|
|
|
<parent>
|
|
<groupId>de.accso</groupId>
|
|
<artifactId>flexinale-distributed</artifactId>
|
|
<version>2024.3.0</version>
|
|
<relativePath>../pom.xml</relativePath> <!-- lookup parent from repository -->
|
|
</parent>
|
|
|
|
<artifactId>flexinale-distributed-backoffice</artifactId>
|
|
<version>2024.3.0</version>
|
|
<name>Flexinale Distributed Backoffice</name>
|
|
<description>Flexinale - FLEX case-study "film festival", distributed services, backoffice</description>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
<version>${micrometer.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${org-postgres.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>${apache-poi.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${apache-poi.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.accso</groupId>
|
|
<artifactId>flexinale-distributed-common</artifactId>
|
|
<version>2024.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.accso</groupId>
|
|
<artifactId>flexinale-distributed-common</artifactId>
|
|
<version>2024.3.0</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.accso</groupId>
|
|
<artifactId>flexinale-distributed-security</artifactId>
|
|
<scope>runtime</scope>
|
|
<version>2024.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.accso</groupId>
|
|
<artifactId>flexinale-distributed-security_api_contract</artifactId>
|
|
<version>2024.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.accso</groupId>
|
|
<artifactId>flexinale-distributed-backoffice_api_contract</artifactId>
|
|
<version>2024.3.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<!-- name extension of spring boot fat jar-->
|
|
<configuration>
|
|
<classifier>spring-boot-fat-jar</classifier>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>build-info</goal>
|
|
</goals>
|
|
<configuration>
|
|
<additionalProperties>
|
|
<flexinale.implementation>Distributed</flexinale.implementation>
|
|
<flexinale.app>Backoffice</flexinale.app>
|
|
</additionalProperties>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.github.spotbugs</groupId>
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
<version>${spotbugs-maven-plugin.version}</version>
|
|
<configuration>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.h3xstream.findsecbugs</groupId>
|
|
<artifactId>findsecbugs-plugin</artifactId>
|
|
<version>${findsecbugs-maven-plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
<excludeFilterFile>SpotbugsExcludeFilter.xml</excludeFilterFile>
|
|
</configuration>
|
|
<dependencies>
|
|
<!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs -->
|
|
<dependency>
|
|
<groupId>com.github.spotbugs</groupId>
|
|
<artifactId>spotbugs</artifactId>
|
|
<version>${spotbugs.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |