ogham-email-sendgrid-v2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-email-sendgrid-v2</artifactId> <version>3.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> <parent> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-parent</artifactId> <version>3.0.0</version> </parent> <artifactId>ogham-email-sendgrid-v2</artifactId> <name>Ogham SendGrid v2 implementation</name> <description> SendGrid implementation for Ogham </description> <properties> <sendgrid-java.version>${sendgrid-java-v2.version}</sendgrid-java.version> <httpcore.version>4.3.2</httpcore.version> <httpclient.version>4.3.4</httpclient.version> <httpmime.version>4.3.4</httpmime.version> <wiremock.version>2.23.2</wiremock.version> </properties> <dependencies> <dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-email-sendgrid-common</artifactId> </dependency> <!-- Tests --> <dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-test-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-template-freemarker</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-template-thymeleaf</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- FIXME: remove this when JUnit 5 is fully supported by PIT and Spock --> <build> <pluginManagement> <plugins> <plugin> <groupId>eu.stamp-project</groupId> <artifactId>pitmp-maven-plugin</artifactId> <dependencies> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-junit5-plugin</artifactId> <version>${pitest-junit5-plugin.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <dependencies> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-junit5-plugin</artifactId> <version>${pitest-junit5-plugin.version}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> </project>