ervu-secret/config-data-executor/pom.xml

115 lines
3.9 KiB
XML
Raw Normal View History

2024-09-25 08:57:25 +03: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">
2024-09-27 14:07:04 +03:00
<modelVersion>4.0.0</modelVersion>
2024-09-27 14:19:50 +03:00
<parent>
<groupId>ervu_secret</groupId>
<artifactId>ervu_secret</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2024-09-27 14:07:04 +03:00
<groupId>org.micord</groupId>
2024-09-27 14:19:50 +03:00
<artifactId>config-data-executor</artifactId>
<packaging>war</packaging>
2024-09-27 14:07:04 +03:00
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
</dependencies>
</dependencyManagement>
2024-09-25 08:57:25 +03:00
<dependencies>
2024-09-27 14:07:04 +03:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
2024-09-27 14:19:50 +03:00
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
2024-09-27 14:07:04 +03:00
</dependency>
<dependency>
2024-09-27 14:19:50 +03:00
<groupId>com.atomikos</groupId>
<artifactId>transactions-jta</artifactId>
2024-09-27 14:07:04 +03:00
</dependency>
<dependency>
2024-09-27 14:19:50 +03:00
<groupId>com.atomikos</groupId>
<artifactId>transactions-jdbc</artifactId>
2024-09-27 14:07:04 +03:00
</dependency>
<dependency>
2024-09-27 14:19:50 +03:00
<groupId>javax.transaction</groupId>
<artifactId>javax.transaction-api</artifactId>
2024-09-27 14:07:04 +03:00
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
2024-09-27 14:19:50 +03:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
2024-09-27 14:07:04 +03:00
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>arangodb-java-driver</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
</dependency>
<dependency>
2024-09-27 14:19:50 +03:00
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
2024-09-27 14:07:04 +03:00
</dependency>
2024-09-25 08:57:25 +03:00
</dependencies>
2024-09-27 14:07:04 +03:00
<repositories>
<repository>
<id>maven_central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
</repositories>
2024-09-27 14:19:50 +03:00
<build>
<finalName>${artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.7.18</version>
<configuration>
<mainClass>org.micord.Main</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>