PromucFlow_constructor/app/server/appsmith-plugins/postgresPlugin/pom.xml

79 lines
2.4 KiB
XML
Raw Normal View History

<?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">
<parent>
<groupId>com.appsmith</groupId>
<artifactId>appsmith-plugins</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2019-09-25 16:20:51 +00:00
<groupId>com.external.plugins</groupId>
<artifactId>postgresPlugin</artifactId>
<version>1.0-SNAPSHOT</version>
2019-09-25 16:20:51 +00:00
<name>postgresPlugin</name>
2019-09-25 16:20:51 +00:00
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
2020-12-10 15:38:02 +00:00
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<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>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>${testcontainers.version}</version>
<scope>test</scope>
</dependency>
2019-09-25 16:20:51 +00:00
</dependencies>
2019-09-25 16:20:51 +00:00
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
2019-09-25 16:20:51 +00:00
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
2019-09-25 16:20:51 +00:00
</plugins>
</build>
</project>