connector-sendgrid
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.camunda.connector</groupId> <artifactId>connector-sendgrid</artifactId> <version>8.8.0-alpha4</version> </dependency>
<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>io.camunda.connector</groupId> <artifactId>connectors-parent</artifactId> <version>8.8.0-alpha4</version> <relativePath>../pom.xml</relativePath> </parent> <name>connector-sendgrid</name> <description>Camunda Cloud SendGrid Connector</description> <artifactId>connector-sendgrid</artifactId> <packaging>jar</packaging> <licenses> <license> <name>Camunda Self-Managed Free Edition license</name> <url>https://camunda.com/legal/terms/cloud-terms-and-conditions/camunda-cloud-self-managed-free-edition-terms/</url> </license> <license> <name>Camunda Self-Managed Enterprise Edition license</name> </license> </licenses> <properties> <license.inlineheader>Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under one or more contributor license agreements. Licensed under a proprietary license. See the License.txt file for more information. You may not use this file except in compliance with the proprietary license.</license.inlineheader> </properties> <dependencies> <dependency> <groupId>com.sendgrid</groupId> <artifactId>sendgrid-java</artifactId> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> </dependency> <dependency> <groupId>io.camunda.connector</groupId> <artifactId>element-template-generator-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.camunda.connector</groupId> <artifactId>element-template-generator-maven-plugin</artifactId> <version>${project.version}</version> <configuration> <connectors> <connector> <connectorClass>io.camunda.connector.sendgrid.SendGridFunction</connectorClass> <files> <file> <templateId>io.camunda.connectors.SendGrid.v2</templateId> <templateFileName>sendgrid-outbound-connector.json</templateFileName> </file> </files> <generateHybridTemplates>true</generateHybridTemplates> </connector> </connectors> </configuration> </plugin> </plugins> </build> </project>