mirror of
https://github.com/IRS-Public/direct-file.git
synced 2025-08-17 10:10:53 +00:00
285 lines
11 KiB
XML
285 lines
11 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>gov.irs.directfile.boot</groupId>
|
||
|
<artifactId>irs-spring-boot-starter-parent</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<relativePath>../boms/irs-spring-boot-starter-parent</relativePath>
|
||
|
</parent>
|
||
|
<groupId>gov.irs.directfile</groupId>
|
||
|
<artifactId>directfile-api</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
<name>Direct File API</name>
|
||
|
<description>backend application for direct file</description>
|
||
|
<properties>
|
||
|
<!-- overrides for properties defined in irs-spring-boot-starter-parent -->
|
||
|
<config-folder.path>${project.basedir}/../config</config-folder.path>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>gov.irs.directfile</groupId>
|
||
|
<artifactId>data-models</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.xml.bind</groupId>
|
||
|
<artifactId>jaxb-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.pdfbox</groupId>
|
||
|
<artifactId>pdfbox</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-validation</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-actuator</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.wiremock</groupId>
|
||
|
<artifactId>wiremock-jetty12</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>gov.irs.factgraph</groupId>
|
||
|
<artifactId>fact-graph_3</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.h2database</groupId>
|
||
|
<artifactId>h2</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.liquibase</groupId>
|
||
|
<artifactId>liquibase-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.modelmapper</groupId>
|
||
|
<artifactId>modelmapper</artifactId>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.modelmapper/modelmapper-module-record -->
|
||
|
<dependency>
|
||
|
<groupId>org.modelmapper</groupId>
|
||
|
<artifactId>modelmapper-module-record</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hibernate.orm</groupId>
|
||
|
<artifactId>hibernate-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-annotations</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-core</artifactId>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security</groupId>
|
||
|
<artifactId>spring-security-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.bouncycastle</groupId>
|
||
|
<artifactId>bcpkix-jdk18on</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>kms</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>sns</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>sqs</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>s3</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.awssdk</groupId>
|
||
|
<artifactId>sts</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>software.amazon.encryption.s3</groupId>
|
||
|
<artifactId>amazon-s3-encryption-client-java</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.amazonaws</groupId>
|
||
|
<artifactId>amazon-sqs-java-messaging-lib</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.logstash.logback</groupId>
|
||
|
<artifactId>logstash-logback-encoder</artifactId>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-compress</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.spotbugs</groupId>
|
||
|
<artifactId>spotbugs-annotations</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.xml.ws</groupId>
|
||
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.xml.bind</groupId>
|
||
|
<artifactId>jaxb-impl</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.sun.xml.ws</groupId>
|
||
|
<artifactId>jaxws-rt</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.nimbusds</groupId>
|
||
|
<artifactId>nimbus-jose-jwt</artifactId>
|
||
|
<version>9.37.3</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.retry</groupId>
|
||
|
<artifactId>spring-retry</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>okhttp</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>mockwebserver</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<argLine>-XX:+EnableDynamicAgentLoading ${argLine}</argLine>
|
||
|
<excludedEnvironmentVariables>
|
||
|
<!-- exclude active profiles so tests work from cli even if this var is set -->
|
||
|
<excludedEnvironmentVariable>SPRING_PROFILES_ACTIVE</excludedEnvironmentVariable>
|
||
|
</excludedEnvironmentVariables>
|
||
|
<excludes>
|
||
|
<!-- exclude end-to-end tests from `test` lifecycle phase -->
|
||
|
<exclude>**/*EndToEndTest</exclude>
|
||
|
<!-- exclude scenario tests from `test` lifecycle phase. These tests take a significant
|
||
|
amount of time to run, so we parallelize the running of these tests in CI. -->
|
||
|
<exclude>gov.irs.directfile.api.loaders.service.FactGraphServiceScenarioTest.java</exclude>
|
||
|
</excludes>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>test</goal>
|
||
|
</goals>
|
||
|
<!-- include end-to-end tests separately in the `integration-test` lifecycle phase -->
|
||
|
<phase>integration-test</phase>
|
||
|
<configuration>
|
||
|
<excludes>
|
||
|
<exclude>none</exclude>
|
||
|
</excludes>
|
||
|
<includes>
|
||
|
<include>**/*EndToEndTest</include>
|
||
|
</includes>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<profiles>
|
||
|
<profile>development</profile>
|
||
|
<profile>debug</profile>
|
||
|
</profiles>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|