TeeTime
TeeTime is a Pipe-and-Filter framework for Java.
Informations on how to use it can be found on http://teetime.sourceforge.net.
Build
To build TeeTime, you need and existing Maven installation and the JDK1.6.
Simply execute "mvn install" and you are good to go!
Install
In order to work with TeeTime, you simply need to add the framework to your own project.
TeeTime is distributed through a variety of channels to serve most needs.
Latest stable
There are two simple ways to add TeeTime to your own project.
As dependency
TeeTime is available through Maven's central repository.
If you use Maven, simply add following lines to your pom.xml
:
<dependency>
<groupId>net.sourceforge.teetime</groupId>
<artifactId>teetime</artifactId>
<version>1.1.2</version>
</dependency>
Binaries and sources
The latest TeeTime release can be downloaded directly from Sourceforge. If you also want to download the source and/or JavaDoc, you can also get a summary of available files on Sourceforge or the Central Repository.
Snapshot
TeeTime is built upon a daily basis. All these nightly builds are accessible to the public. A documentation is provided here.
Please do not forget, that this releases are not intended for daily use. These builds may be unstable.
As dependency
All snapshot builds will be deployed to Sonatype's snapshot repository.
To download these builds, add following lines to your project's pom.xml
:
<dependency>
<groupId>net.sourceforge.teetime</groupId>
<artifactId>teetime</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
If you did not add the Sonatype snapshot repository yet to your pom.xml
, add also following lines to it, as otherwise Maven will not be able to find the needed artifacts:
<repositories>
<repository>
<id>sonatype.oss.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
Binaries and sources
All nightly builds can be found on Sonatype's repository or our CI Server.