2021-07-06 13:10:19 +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"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
2021-07-06 13:10:19 +00:00
|
|
|
<groupId>com.external.plugins</groupId>
|
|
|
|
|
<artifactId>arangodbPlugin</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<name>arangodbPlugin</name>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.arangodb</groupId>
|
|
|
|
|
<artifactId>arangodb-java-driver</artifactId>
|
|
|
|
|
<version>6.12.3</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
2021-11-19 04:15:24 +00:00
|
|
|
<version>4.5.13</version>
|
2021-07-06 13:10:19 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Test Dependencies -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.goodforgod</groupId>
|
|
|
|
|
<artifactId>arangodb-testcontainer</artifactId>
|
2022-07-19 04:53:27 +00:00
|
|
|
<version>2.0.0</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
2022-09-29 03:24:07 +00:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
|
</exclusion>
|
2022-07-19 04:53:27 +00:00
|
|
|
</exclusions>
|
2021-07-06 13:10:19 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<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>
|
2021-07-06 13:10:19 +00:00
|
|
|
<configuration>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|