forked from michaelbushe/EventBus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
144 lines (144 loc) · 5.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<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>[email protected]</post>
<archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=users</archive>
</mailingList>
<mailingList>
<name>Issues List</name>
<post>[email protected]</post>
<archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=issues</archive>
</mailingList>
<mailingList>
<name>Announce List</name>
<post>[email protected]</post>
<archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=announce</archive>
</mailingList>
<mailingList>
<name>Developer List</name>
<post>[email protected]</post>
<archive>https://eventbus.dev.java.net/servlets/SummarizeList?listName=dev</archive>
</mailingList>
<mailingList>
<name>CVS List</name>
<post>[email protected]</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>[email protected]</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, [email protected]</author>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<templateDirectory>src/site</templateDirectory>
<template>site.vm</template>
</configuration>
</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>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
</dependencies>
<!-- This repo is synchronized with the Central Maven Repository.-->
</project>