adeptj-modules-aws-ses
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adeptj</groupId> <artifactId>adeptj-modules-aws-ses</artifactId> <version>1.0.1.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ############################################################################### # # # Copyright 2016, AdeptJ (http://www.adeptj.com) # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # # # ############################################################################### --> <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>com.adeptj</groupId> <artifactId>adeptj-modules</artifactId> <version>1.0.8.Final</version> <relativePath/> </parent> <artifactId>adeptj-modules-aws-ses</artifactId> <version>1.0.1.Final</version> <packaging>jar</packaging> <name>AdeptJ Modules :: AWS :: SES</name> <description>AdeptJ Modules :: AWS Simple Email Service</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <aws.ses.version>1.11.213</aws.ses.version> <aws.sdk.core.version>1.11.213</aws.sdk.core.version> <adeptj.aws.core.version>1.0.1.Final</adeptj.aws.core.version> </properties> <!-- Project Information --> <organization> <name>AdeptJ</name> <url>http://www.adeptj.com</url> </organization> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>rakeshk15</id> <name>Rakesh Kumar</name> <email>irakeshk@outlook.com</email> <url>https://www.linkedin.com/in/iamrakesh</url> <organization>AdeptJ</organization> <organizationUrl>http://www.adeptj.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+5:30</timezone> <properties> <picUrl>https://media.licdn.com/media/AAEAAQAAAAAAAAecAAAAJDdjMDcwZjM3LWY0OWYtNDkwYS05Njg4LWU0YWJjNWU5Mzk2Mw.jpg </picUrl> </properties> </developer> </developers> <issueManagement> <url>https://github.com/AdeptJ/adeptj-modules/issues</url> <system>GitHub Issues</system> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh-adeptj</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh-adeptj</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <url>https://github.com/AdeptJ/adeptj-modules</url> <connection>scm:git:git@github.com:AdeptJ/adeptj-modules.git</connection> <developerConnection>scm:git:git@github.com:AdeptJ/adeptj-modules.git</developerConnection> </scm> <build> <!-- Below BND plugin is required to process the OSGi Annotation--> <plugins> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <executions> <execution> <goals> <goal>bnd-process</goal> </goals> </execution> </executions> </plugin> <!-- Below Maven Jar plugin is required to process MANIFEST.MF --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-parameters</compilerArgument> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.cmpn</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.adeptj</groupId> <artifactId>adeptj-modules-jaxrs-core</artifactId> <version>1.0.6.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-core</artifactId> <version>${aws.sdk.core.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-cbor</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-ses</artifactId> <version>${aws.ses.version}</version> </dependency> <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-multipart-provider</artifactId> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-client</artifactId> </exclusion> <exclusion> <groupId>org.apache.james</groupId> <artifactId>apache-mime4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.adeptj</groupId> <artifactId>adeptj-modules-aws-core</artifactId> <version>${adeptj.aws.core.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>