mail-watcher-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.codingandcoding</groupId> <artifactId>mail-watcher-plugin</artifactId> <version>1.17</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>plugin</artifactId> <version>2.14</version> </parent> <developers> <developer> <name>Rackomuy</name> <email>Rackomuy@gmail.com</email> </developer> </developers> <profiles> <profile> <id>release</id> <build> <plugins> <!--Compiler--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.5</version> </plugin> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase--> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> <distributionManagement> <repository> <id>releases</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <groupId>com.github.codingandcoding</groupId> <artifactId>mail-watcher-plugin</artifactId> <version>1.17</version> <packaging>hpi</packaging> <name>Mail Watcher Plugin</name> <description>This plugin notifies configured email recipients on various events.</description> <url>https://wiki.jenkins-ci.org/display/JENKINS/Mail+Watcher+Plugin</url> <scm> <connection>scm:git:https://github.com/proxyee-down-org/pdown-core.git</connection> <developerConnection>scm:git:https://github.com/proxyee-down-org/pdown-core.git</developerConnection> <url>https://github.com/proxyee-down-org/pdown-core</url> </scm> <repositories> <repository> <id>repo.jenkins-ci.org</id> <url>https://repo.jenkins-ci.org/public/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>repo.jenkins-ci.org</id> <url>https://repo.jenkins-ci.org/public/</url> </pluginRepository> </pluginRepositories> <properties> <jenkins.version>1.609</jenkins.version> <jenkins-test-harness.version>2.15</jenkins-test-harness.version> <java.level>6</java.level> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <surefire.useFile>false</surefire.useFile> </properties> <dependencies> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>mailer</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>org.jenkins-ci.main</groupId> <artifactId>maven-plugin</artifactId> <version>2.11</version> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>jobConfigHistory</artifactId> <version>2.0</version> <optional>true</optional> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> <version>1.4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>1.4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>1.4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci</groupId> <artifactId>test-annotations</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci.main</groupId> <artifactId>jenkins-test-harness-tools</artifactId> <version>2.0</version> <scope>test</scope> </dependency> </dependencies> </project>