score-mail
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.openscore.content</groupId> <artifactId>score-mail</artifactId> <version>0.0.10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- (c) Copyright 2014 Hewlett-Packard Development Company, L.P. All rights reserved. This program and the accompanying materials are made available under the terms of the Apache License v2.0 which accompany this distribution. The Apache License is available at http://www.apache.org/licenses/LICENSE-2.0 --> <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>io.openscore.content</groupId> <artifactId>score-mail</artifactId> <version>0.0.10</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>Mail java actions</description> <url>https://github.com/openscore/score-actions</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:https://openscore/score-actions.git</connection> <developerConnection>scm:git:git@github.com:openscore/score-actions.git</developerConnection> <url>https://github.com/openscore/score-actions.git</url> <tag>master</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <name>Maven Central staging repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <name>Maven Central snapshots repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <developers> <developer> <name>Mihai David</name> <email>mihai.david@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> <developer> <name>Adina Tusa</name> <email>adina.tusa@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> <developer> <name>Avi Moradi</name> <email>avi.moradi@hp.com</email> <organization>HP Software</organization> <organizationUrl>http://www8.hp.com/us/en/software/enterprise-software.html</organizationUrl> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>default-profile</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </build> </profile> <profile> <id>release-internal-profile</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </build> </profile> <profile> <id>release-external-profile</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</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.hp.score.sdk</groupId> <artifactId>score-content-sdk</artifactId> <version>1.10.6</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.5</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> </dependencies> </project>