2019-09-16 11:21:57 +00: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"
|
2019-09-25 16:20:51 +00:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-09-16 11:21:57 +00:00
|
|
|
|
2023-07-06 19:13:11 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2021-12-20 10:31:08 +00:00
|
|
|
<parent>
|
|
|
|
|
<groupId>com.appsmith</groupId>
|
|
|
|
|
<artifactId>appsmith-plugins</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
2019-09-25 16:20:51 +00:00
|
|
|
<groupId>com.external.plugins</groupId>
|
|
|
|
|
<artifactId>postgresPlugin</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
2019-09-25 16:20:51 +00:00
|
|
|
<name>postgresPlugin</name>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
2019-09-25 16:20:51 +00:00
|
|
|
<dependencies>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
2020-06-09 12:12:27 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
2024-02-28 05:02:58 +00:00
|
|
|
<!-- Overriding version to get fix for CVE-2024-1597. Remove once spring-boot is at least at 3.1.9 or 3.2.3 -->
|
|
|
|
|
<version>42.6.1</version>
|
2020-06-10 11:11:23 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-10 15:38:02 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2022-10-27 08:37:37 +00:00
|
|
|
<version>5.0.1</version>
|
2020-12-10 15:38:02 +00:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-09-09 15:59:47 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-06-10 11:11:23 +00:00
|
|
|
<!-- Test Dependencies -->
|
2020-06-09 12:12:27 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
2022-09-29 03:24:07 +00:00
|
|
|
<version>${testcontainers.version}</version>
|
2020-06-09 12:12:27 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-04-16 16:04:24 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-07-19 04:53:27 +00:00
|
|
|
|
2019-09-25 16:20:51 +00:00
|
|
|
</dependencies>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
2019-09-25 16:20:51 +00:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2020-06-10 11:11:23 +00:00
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2019-09-25 16:20:51 +00:00
|
|
|
</plugin>
|
2020-07-24 04:19:17 +00:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
</goals>
|
2023-07-06 19:13:11 +00:00
|
|
|
<phase>package</phase>
|
2020-07-24 04:19:17 +00:00
|
|
|
<configuration>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2019-09-25 16:20:51 +00:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
|
|
|
|
</project>
|