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
|
|
|
|
2021-12-20 10:31:08 +00:00
|
|
|
<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-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
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<java.version>11</java.version>
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
|
<plugin.id>postgres-plugin</plugin.id>
|
|
|
|
|
<plugin.class>com.external.plugins.PostgresPlugin</plugin.class>
|
|
|
|
|
<plugin.version>1.0-SNAPSHOT</plugin.version>
|
|
|
|
|
<plugin.provider>tech@appsmith.com</plugin.provider>
|
|
|
|
|
<plugin.dependencies/>
|
|
|
|
|
</properties>
|
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>
|
2022-08-06 07:05:25 +00:00
|
|
|
<version>42.4.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>
|
|
|
|
|
<version>3.4.5</version>
|
|
|
|
|
<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>
|
|
|
|
|
<version>5.3.20</version>
|
|
|
|
|
<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>
|
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>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-06-10 11:11:23 +00:00
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.2.4</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2021-12-20 10:31:08 +00:00
|
|
|
<id>shade-plugin-jar</id>
|
2020-06-10 11:11:23 +00:00
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
2021-12-20 10:31:08 +00:00
|
|
|
<configuration>
|
|
|
|
|
<minimizeJar>false</minimizeJar>
|
|
|
|
|
<transformers>
|
2022-09-29 03:24:07 +00:00
|
|
|
<transformer
|
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2021-12-20 10:31:08 +00:00
|
|
|
<manifestEntries>
|
|
|
|
|
<Plugin-Id>${plugin.id}</Plugin-Id>
|
|
|
|
|
<Plugin-Class>${plugin.class}</Plugin-Class>
|
|
|
|
|
<Plugin-Version>${plugin.version}</Plugin-Version>
|
|
|
|
|
<Plugin-Provider>${plugin.provider}</Plugin-Provider>
|
|
|
|
|
</manifestEntries>
|
|
|
|
|
</transformer>
|
|
|
|
|
</transformers>
|
|
|
|
|
</configuration>
|
2020-06-10 11:11:23 +00:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
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>
|
|
|
|
|
<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>
|
2019-09-16 11:21:57 +00:00
|
|
|
|
|
|
|
|
</project>
|