Download EventDispatcher

The current version of EventDispatcher is 0.11.0

Downloading the binary distribution

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