Download EventDispatcher
The current version of EventDispatcher is 0.11.0
Downloading the binary distribution
- EventDispatcher-0.11.0-bin.tar.gz
- EventDispatcher-0.11.0-bin.tar.bz2
- EventDispatcher-0.11.0-bin.zip
- EventDispatcher-0.11.0.jar
Using our Maven repository
You can integrate EventDispatcher directly from our Maven repository. All you need to do is to add it as a dependency in your pom.xml:
<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>
<groupId>....</groupId>
<artifactId>YourProject</artifactId>
<version>0.11.0</version>
<packaging>jar</packaging>
<repositories>
<repository>
<id>schst</id>
<url>http://mvn.java.schst.net/repository</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.schst</groupId>
<artifactId>EventDispatcher</artifactId>
<version>0.11.0</version>
</dependency>
</dependencies>
<build>
...
</build>
</project>
Compiling EventDispatcher from source
You can get the latest sources from our subversion repository:
$ svn checkout http://java.schst.net/svn/EventDispatcher/trunk EventDispatcher
Compiling EventDispatcher with Maven
The preferred way to compile EventDispatcher is with Maven:
$ svn checkout http://java.schst.net/svn/EventDispatcher/trunk EventDispatcher $ cd EventDispatcher $ mvn install
Compiling EventDispatcher with Ant
EventDispatcher also comes with an ant script that allows you to build a ready-to-use JAR file. You only need to execute the following steps:
$ svn checkout http://java.schst.net/svn/EventDispatcher/trunk EventDispatcher $ cd EventDispatcher $ ant all
You may need to copy build.properties.sample to build.properties and adjust some values to set the name of your compiler.
Attachments
- EventDispatcher-0.11.0-bin.tar.bz2 (18.6 kB) -
EventDispatcher? 0.11.0 as tar.bz2
, added by schst on 02/28/06 23:15:16. - EventDispatcher-0.11.0-bin.tar.gz (18.8 kB) - added by schst on 02/28/06 23:20:33.
- EventDispatcher-0.11.0.jar (10.1 kB) - added by schst on 02/28/06 23:20:59.
- EventDispatcher-0.11.0-bin.zip (18.0 kB) - added by schst on 02/28/06 23:21:10.
