ogham-email-sendgrid-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.sii.ogham</groupId>
<artifactId>ogham-email-sendgrid-common</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-common</artifactId> <name>Ogham SendGrid common implementation</name> <description> Common classes for all SendGrid implementation for Ogham </description> <dependencies> <dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-core</artifactId> </dependency> <!-- Mail --> <dependency> <groupId>com.sendgrid</groupId> <artifactId>sendgrid-java</artifactId> </dependency> <!-- Dependency convergence --> <!-- This is needed to enforce right versions in projects that use ogham --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <!-- Tests --> <dependency> <groupId>fr.sii.ogham</groupId> <artifactId>ogham-test-utils</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </exclusion> </exclusions> </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> </project>