<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.bushe</groupId>
    <artifactId>eventbus</artifactId>
    <name>EventBus</name>
    <packaging>jar</packaging>
    <description>A simple but powerful publish-subscribe API that is based on class semantics and/or string (topic) matching.</description>
    <version>1.4</version>
    <url>http://www.eventbus.org</url>
    <scm>
        <url>https://eventbus.dev.java.net/source/browse/eventbus/</url>
        <connection>scm:cvs:pserver:guest:@cvs.dev.java.net:/cvs:eventbus</connection>
        <tag>HEAD</tag>
    </scm>
    <ciManagement>
        <system>Hudson</system>
        <url>http://www.eventbus.org/hudson</url>
    </ciManagement>
    <issueManagement>
      <system>Bugzilla</system>
      <url>https://eventbus.dev.java.net/servlets/ProjectIssues</url>
    </issueManagement>
	  <mailingLists>
	    <mailingList>
	      <name>User List</name>
	      <post>users@eventbus.dev.java.net</post>
	      <archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=users</archive>
	    </mailingList>
	    <mailingList>
	      <name>Issues List</name>
	      <post>issues@eventbus.dev.java.net</post>
	      <archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=issues</archive>
	    </mailingList>
	    <mailingList>
	      <name>Announce List</name>
	      <post>announce@eventbus.dev.java.net</post>
	      <archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=announce</archive>
	    </mailingList>
	    <mailingList>
	      <name>Developer List</name>
	      <post>dev@eventbus.dev.java.net</post>
	      <archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=dev</archive>
	    </mailingList>
	    <mailingList>
	      <name>CVS List</name>
	      <post>cvs@eventbus.dev.java.net</post>
	      <archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=cvs</archive>
	    </mailingList>
	  </mailingLists>
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>
    <organization>
        <name>Bushe Enterprises, Inc.</name>
        <url>http://www.bushe.com/eventbus</url>
    </organization>
    <developers>
        <developer>
            <id>MichaelBushe</id>
            <name>Michael Bushe</name>
            <email>Michael@Bushe.com</email>
            <url>http://www.bushe.com</url>
            <organization>Bushe Enterprises, Inc.</organization>
            <organizationUrl>http://www.bushe.com</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>-5</timezone>
        </developer>
    </developers>
    <build>
        <sourceDirectory>src</sourceDirectory>
        <testSourceDirectory>test/src</testSourceDirectory>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <!-- run the maven source plugin to create a sources jar during the verify phase-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!-- run the maven javadoc plugin to create a javadocs jar during the verify phase-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <configuration>
                    <overview>${basedir}/src/org/bushe/swing/event/overview.html</overview>
                    <author>Michael Bushe, my-first-name@my-last-name.com</author>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <!-- Works with, but does not require: log4j, commons logging, commons-logging-adapters-1.1.jar, commons-logging-api-1.1.jar, jdic.jar
               TODO: Maven has a special setting for this, like "recommended not required"-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <!-- This repo is synchronized with the Central Maven Repository.-->
</project>