mail-thymeleaf-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.brix.camunda.connector</groupId> <artifactId>mail-thymeleaf-connector</artifactId> <version>1.0.0</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> <groupId>ch.brix.camunda.connector</groupId> <artifactId>mail-thymeleaf-connector</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>mail-thymeleaf-connector</name> <description>Send mails using Thymeleaf</description> <url>https://github.com/brix-ag/mail-thymeleaf-connector</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Christian Mächler</name> <email>christian.maechler@brix.ch</email> <organization>brix IT solutions</organization> <organizationUrl>https://www.brix.ch</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/brix-ag/mail-thymeleaf-connector.git</connection> <developerConnection>scm:git:ssh://github.com:brix-ag/mail-thymeleaf-connector.git</developerConnection> <url>https://github.com/brix-ag/mail-thymeleaf-connector</url> </scm> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <plugin.version.maven-exec-plugin>3.1.1</plugin.version.maven-exec-plugin> <version.connectors>8.4.3</version.connectors> <version.spring-boot>3.2.2</version.spring-boot> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> <scope>provided</scope> </dependency> <dependency> <groupId>ch.brix.camunda.connector</groupId> <artifactId>connector-utils</artifactId> <version>1.4.0</version> </dependency> <dependency> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> <version>${version.spring-boot}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>${version.spring-boot}</version> </dependency> <dependency> <groupId>io.camunda.connector</groupId> <artifactId>spring-boot-starter-camunda-connectors</artifactId> <version>${version.connectors}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.camunda.connector</groupId> <artifactId>connector-core</artifactId> <version>${version.connectors}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.camunda.connector</groupId> <artifactId>connector-validation</artifactId> <version>${version.connectors}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${plugin.version.maven-exec-plugin}</version> <executions> <execution> <id>generate-template</id> <phase>prepare-package</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>ch.brix.camunda.connector.util.templateGenerator.TemplateGenerator</mainClass> <arguments> <argument>ch.brix.camunda.connector.mailThymeleaf.Request</argument> <argument>element-templates/mail-thymeleaf-connector.json</argument> </arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>