send-grid-service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.wizzdi</groupId> <artifactId>send-grid-service</artifactId> <version>1.0.3</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.wizzdi</groupId> <artifactId>send-grid-service</artifactId> <name>${project.artifactId}</name> <version>1.0.3</version> <description>FlexiCore service plugin , adds SendGrid support</description> <url>https://wizzdi.com</url> <developers> <developer> <id>asafbennatan</id> <name>Asaf Ben Natan</name> <email>asaf@wizzdi.com</email> <url>https://www.wizzdi.com</url> <organization>Wizzdi</organization> <organizationUrl>https://www.wizzdi.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Israel</timezone> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://wizzdi/sendgrid-service.git</connection> <developerConnection>scm:git:git@github.com:wizzdi/sendgrid-service.git</developerConnection> <tag>send-grid-service-1.0.3</tag> <url>https://github.com/wizzdi/sendgrid-service</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <createDependencyReducedPom>true</createDependencyReducedPom> <dependencyReducedPomLocation>${java.io.tmpdir}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <transformers> <transformer> <resource>META-INF/cxf/bus-extensions.txt</resource> </transformer> <transformer> <manifestEntries> <Plugin-Id>${artifactId}</Plugin-Id> <Plugin-Version>${version}</Plugin-Version> <Plugin-Dependencies>product-service@>=${product-service.version}</Plugin-Dependencies> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.5</version> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> </dependency> </dependencies> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <javadocExecutable>C:\Program Files\AdoptOpenJDK\jdk-8.0.212.03-hotspot\bin\javadoc.exe</javadocExecutable> <javadocVersion>1.8.0</javadocVersion> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.wizzdi</groupId> <artifactId>product-service</artifactId> <version>3.4.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>organization-model</artifactId> <version>2.1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>product-model</artifactId> <version>2.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>send-grid-model</artifactId> <version>1.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.batch</groupId> <artifactId>spring-batch-core</artifactId> <version>4.2.2.RELEASE</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>micrometer-core</artifactId> <groupId>io.micrometer</groupId> </exclusion> <exclusion> <artifactId>javax.batch-api</artifactId> <groupId>javax.batch</groupId> </exclusion> <exclusion> <artifactId>jettison</artifactId> <groupId>org.codehaus.jettison</groupId> </exclusion> <exclusion> <artifactId>spring-batch-infrastructure</artifactId> <groupId>org.springframework.batch</groupId> </exclusion> <exclusion> <artifactId>spring-aop</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-context</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-tx</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-jaxrs2</artifactId> <version>2.0.8</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>classgraph</artifactId> <groupId>io.github.classgraph</groupId> </exclusion> <exclusion> <artifactId>javassist</artifactId> <groupId>org.javassist</groupId> </exclusion> <exclusion> <artifactId>swagger-models</artifactId> <groupId>io.swagger.core.v3</groupId> </exclusion> <exclusion> <artifactId>swagger-annotations</artifactId> <groupId>io.swagger.core.v3</groupId> </exclusion> <exclusion> <artifactId>swagger-integration</artifactId> <groupId>io.swagger.core.v3</groupId> </exclusion> <exclusion> <artifactId>jackson-jaxrs-json-provider</artifactId> <groupId>com.fasterxml.jackson.jaxrs</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.11.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.11.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>jackson-annotations</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>org.eclipse.persistence.jpa</artifactId> <version>2.7.7</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>jakarta.persistence</artifactId> <groupId>org.eclipse.persistence</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.persistence.asm</artifactId> <groupId>org.eclipse.persistence</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.persistence.antlr</artifactId> <groupId>org.eclipse.persistence</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.persistence.jpa.jpql</artifactId> <groupId>org.eclipse.persistence</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.persistence.core</artifactId> <groupId>org.eclipse.persistence</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>2.3.0.RELEASE</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>spring-boot-starter</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot-actuator-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>micrometer-core</artifactId> <groupId>io.micrometer</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>8.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>javax.mail</artifactId> <groupId>com.sun.mail</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.wizzdi</groupId> <artifactId>flexicore-api</artifactId> <version>4.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.pf4j</groupId> <artifactId>pf4j-spring</artifactId> <version>0.6.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>pf4j</artifactId> <groupId>org.pf4j</groupId> </exclusion> <exclusion> <artifactId>slf4j-log4j12</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>commons-lang</artifactId> <groupId>commons-lang</groupId> </exclusion> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-context</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.3.0.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <flexicore-api.version>4.2.2</flexicore-api.version> <maven.compiler.source>1.8</maven.compiler.source> <version.compiler.plugin>3.3</version.compiler.plugin> <version.jackson>2.11.0</version.jackson> <version.eclipselink>2.7.7</version.eclipselink> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.surefire.plugin>2.16</version.surefire.plugin> <mavenVersion>3.3.3</mavenVersion> <product-service.version>3.4.0</product-service.version> <pf4j-spring.version>0.6.0</pf4j-spring.version> <swagger.version>2.0.8</swagger.version> </properties> </project>