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

62 lines
2.1 KiB
XML
Raw Normal View History

Add DynamoDB Plugin (#1167) * Added DynamoPlugin to integrate with DynamoDB * Connection management for DynamoPlugin * Process action from a single JSON object as input * Moved ListTables command to separate class * Add missing UI definition files * Use reflection to build request objects for AWS SDK * All DynamoDB actions are now run purely by reflection * Serialize responses to JSON * Remove some unused/commented code and some refactorings * Add non-working test with generic dynamodb container * Added working test for ListTables action * Added test for PutItem action * Add tests for get and update actions * Added comments and some refactoring * Removed unused Command class. * Added more tests for map to SDK object conversion * Add templates * Add option to set an endpoint override * Fix Dynamo plugin tests when ~/.aws is missing * Add documentation link for DynamoDB plugin * Fix validation checks * Remove debug log * Added comments on expected query structure * Fix incorrect error condition with incorrect request format * Add comment for converting action to method name * Error out if region is missing * Remove unused throws declaration * Use rich form for action configuration * Removed templates * Use PNG for logo images * Use PNG logos for all plugins * Avoid hard-coded field names * Change logo to PNG only for ElasticSearch for now * Wrap errors in AppsmithPluginException * Typo Co-authored-by: Trisha Anand <trisha@appsmith.com> * Fix changeset order number Co-authored-by: Trisha Anand <trisha@appsmith.com> * Minor refactoring and fixed error messaging Co-authored-by: Trisha Anand <trisha@appsmith.com>
2020-10-21 12:15:54 +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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.appsmith</groupId>
<artifactId>appsmith-plugins</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
Add DynamoDB Plugin (#1167) * Added DynamoPlugin to integrate with DynamoDB * Connection management for DynamoPlugin * Process action from a single JSON object as input * Moved ListTables command to separate class * Add missing UI definition files * Use reflection to build request objects for AWS SDK * All DynamoDB actions are now run purely by reflection * Serialize responses to JSON * Remove some unused/commented code and some refactorings * Add non-working test with generic dynamodb container * Added working test for ListTables action * Added test for PutItem action * Add tests for get and update actions * Added comments and some refactoring * Removed unused Command class. * Added more tests for map to SDK object conversion * Add templates * Add option to set an endpoint override * Fix Dynamo plugin tests when ~/.aws is missing * Add documentation link for DynamoDB plugin * Fix validation checks * Remove debug log * Added comments on expected query structure * Fix incorrect error condition with incorrect request format * Add comment for converting action to method name * Error out if region is missing * Remove unused throws declaration * Use rich form for action configuration * Removed templates * Use PNG for logo images * Use PNG logos for all plugins * Avoid hard-coded field names * Change logo to PNG only for ElasticSearch for now * Wrap errors in AppsmithPluginException * Typo Co-authored-by: Trisha Anand <trisha@appsmith.com> * Fix changeset order number Co-authored-by: Trisha Anand <trisha@appsmith.com> * Minor refactoring and fixed error messaging Co-authored-by: Trisha Anand <trisha@appsmith.com>
2020-10-21 12:15:54 +00:00
<groupId>com.external.plugins</groupId>
<artifactId>dynamoPlugin</artifactId>
<version>1.0-SNAPSHOT</version>
<name>dynamoPlugin</name>
<dependencies>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>dynamodb</artifactId>
<version>2.15.3</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</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>
<phase>package</phase>
Add DynamoDB Plugin (#1167) * Added DynamoPlugin to integrate with DynamoDB * Connection management for DynamoPlugin * Process action from a single JSON object as input * Moved ListTables command to separate class * Add missing UI definition files * Use reflection to build request objects for AWS SDK * All DynamoDB actions are now run purely by reflection * Serialize responses to JSON * Remove some unused/commented code and some refactorings * Add non-working test with generic dynamodb container * Added working test for ListTables action * Added test for PutItem action * Add tests for get and update actions * Added comments and some refactoring * Removed unused Command class. * Added more tests for map to SDK object conversion * Add templates * Add option to set an endpoint override * Fix Dynamo plugin tests when ~/.aws is missing * Add documentation link for DynamoDB plugin * Fix validation checks * Remove debug log * Added comments on expected query structure * Fix incorrect error condition with incorrect request format * Add comment for converting action to method name * Error out if region is missing * Remove unused throws declaration * Use rich form for action configuration * Removed templates * Use PNG for logo images * Use PNG logos for all plugins * Avoid hard-coded field names * Change logo to PNG only for ElasticSearch for now * Wrap errors in AppsmithPluginException * Typo Co-authored-by: Trisha Anand <trisha@appsmith.com> * Fix changeset order number Co-authored-by: Trisha Anand <trisha@appsmith.com> * Minor refactoring and fixed error messaging Co-authored-by: Trisha Anand <trisha@appsmith.com>
2020-10-21 12:15:54 +00:00
<configuration>
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>