timemachine-scheduler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bitbucket.timemachine</groupId> <artifactId>timemachine-scheduler</artifactId> <version>1.2.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <name>TimeMachine Scheduler</name> <parent> <groupId>org.bitbucket.timemachine</groupId> <artifactId>timemachine-parent</artifactId> <version>1.2.2</version> </parent> <artifactId>timemachine-scheduler</artifactId> <packaging>jar</packaging> <dependencies> <!-- Apache Commons lib --> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> </dependency> <!-- We set groovy engine as optional run time. --> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.0.0</version> <scope>runtime</scope> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <!-- Package up tests-jar --> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> <configuration> <includes> <include>**/integration/**/*</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>