| <project> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.apache.continuum.examples.tailoutput</groupId> |
| <artifactId>tail-output</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| |
| <name>Continuum Tail Output Project</name> |
| <url>http://continuum.apache.org</url> |
| |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>sleep-for-a-while</id> |
| <phase>process-classes</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <tasks> |
| <echo>Sleeping...</echo> |
| <sleep seconds="6" /> |
| <echo>Woke Up.</echo> |
| <sleep seconds="6" /> |
| </tasks> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <scm> |
| <connection>scm:svn:${svn.base.url}/trunk/tail-output</connection> |
| <developerConnection>scm:svn:${svn.base.url}/trunk/tail-output</developerConnection> |
| </scm> |
| |
| </project> |