echo-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.code.echo-maven-plugin</groupId>
<artifactId>echo-plugin</artifactId>
<version>1.0.0</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<!-- Basics -->
<groupId>com.google.code.echo-maven-plugin</groupId>
<artifactId>echo-plugin</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>Echo plugin parent</name>
<description>Maven plugin that outputs text during a maven build.</description>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<modules>
<module>echo</module>
<module>maven-plugin</module>
</modules>
<properties>
<compileSource>1.6</compileSource>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.reflection-utils</groupId>
<artifactId>reflection-utils</artifactId>
<version>0.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Build -->
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.google.code.sortpom</groupId>
<artifactId>maven-sortpom-plugin</artifactId>
<version>2.3.0</version>
<configuration>
<createBackupFile>false</createBackupFile>
<predefinedSortOrder>custom_1</predefinedSortOrder>
<lineSeparator>\n</lineSeparator>
<encoding>${project.build.sourceEncoding}</encoding>
<sortProperties>true</sortProperties>
<keepBlankLines>true</keepBlankLines>
</configuration>
<executions>
<execution>
<goals>
<goal>sort</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${compileSource}</source>
<target>${compileSource}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</build>
<!-- Misc -->
<url>http://code.google.com/p/echo-maven-plugin/</url>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>New BSD License</name>
<url>http://en.wikipedia.org/wiki/BSD_licenses</url>
<distribution>repo</distribution>
<comments>Whatever</comments>
</license>
</licenses>
<developers>
<developer>
<id>bjorn.ekryd</id>
<name>Björn Ekryd</name>
<email>bjorn.ekryd(at)gmail(dot)com</email>
<url>http://www.linkedin.com/in/bjornekryd</url>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:https://code.google.com/p/echo-maven-plugin/</connection>
<developerConnection>scm:git:https://code.google.com/p/echo-maven-plugin/</developerConnection>
<tag>echo-plugin-1.0.0</tag>
<url>http://code.google.com/p/echo-maven-plugin/source/browse/</url>
</scm>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/echo-maven-plugin/issues/list</url>
</issueManagement>
<!-- Profiles -->
<profiles>
<profile>
<id>distribution</id>
<activation>
<property>
<name>!dev</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<show>package</show>
<minmemory>128m</minmemory>
<maxmemory>512</maxmemory>
<breakiterator>true</breakiterator>
<quiet>true</quiet>
<source>${compileSource}</source>
<verbose>false</verbose>
<linksource>true</linksource>
<links>
<!-- JSE -->
<link>http://download.oracle.com/javase/6/docs/api/</link>
<!-- Libraries -->
<link>http://maven.apache.org/ref/3.1.1/maven-plugin-api/apidocs/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>