|
Revision 41, 2.0 kB
(checked in by schst, 2 years ago)
|
Huge BC break: event listeners may now throw exceptions. This means, that nearly every method of EventDispatcher? might throw an exception
|
| Line | |
|---|
| 1 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 2 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|---|
| 3 |
|
|---|
| 4 |
<modelVersion>4.0.0</modelVersion> |
|---|
| 5 |
|
|---|
| 6 |
<groupId>net.schst</groupId> |
|---|
| 7 |
<artifactId>EventDispatcher</artifactId> |
|---|
| 8 |
<version>0.12.0</version> |
|---|
| 9 |
<packaging>jar</packaging> |
|---|
| 10 |
|
|---|
| 11 |
<repositories> |
|---|
| 12 |
<repository> |
|---|
| 13 |
<id>schst</id> |
|---|
| 14 |
<url>http://mvn.java.schst.net/repository</url> |
|---|
| 15 |
</repository> |
|---|
| 16 |
</repositories> |
|---|
| 17 |
|
|---|
| 18 |
<dependencies> |
|---|
| 19 |
<dependency> |
|---|
| 20 |
<groupId>junit</groupId> |
|---|
| 21 |
<artifactId>junit</artifactId> |
|---|
| 22 |
<version>3.8.1</version> |
|---|
| 23 |
<scope>test</scope> |
|---|
| 24 |
</dependency> |
|---|
| 25 |
</dependencies> |
|---|
| 26 |
|
|---|
| 27 |
<build> |
|---|
| 28 |
<defaultGoal>package</defaultGoal> |
|---|
| 29 |
<plugins> |
|---|
| 30 |
<plugin> |
|---|
| 31 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 32 |
<artifactId>maven-compiler-plugin</artifactId> |
|---|
| 33 |
<configuration> |
|---|
| 34 |
<source>1.5</source> |
|---|
| 35 |
<target>1.5</target> |
|---|
| 36 |
<encoding>iso8859-1</encoding> |
|---|
| 37 |
</configuration> |
|---|
| 38 |
</plugin> |
|---|
| 39 |
<plugin> |
|---|
| 40 |
<artifactId>maven-assembly-plugin</artifactId> |
|---|
| 41 |
<configuration> |
|---|
| 42 |
<descriptor>src/main/assembly/bin.xml</descriptor> |
|---|
| 43 |
</configuration> |
|---|
| 44 |
</plugin> |
|---|
| 45 |
<plugin> |
|---|
| 46 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 47 |
<artifactId>maven-clover-plugin</artifactId> |
|---|
| 48 |
<configuration> |
|---|
| 49 |
<jdk>1.5</jdk> |
|---|
| 50 |
<licenseFile>/home/schst/clover.license</licenseFile> |
|---|
| 51 |
</configuration> |
|---|
| 52 |
</plugin> |
|---|
| 53 |
</plugins> |
|---|
| 54 |
<extensions> |
|---|
| 55 |
<extension> |
|---|
| 56 |
<groupId>org.apache.maven.wagon</groupId> |
|---|
| 57 |
<artifactId>wagon-ftp</artifactId> |
|---|
| 58 |
<version>1.0-alpha-3</version> |
|---|
| 59 |
</extension> |
|---|
| 60 |
</extensions> |
|---|
| 61 |
</build> |
|---|
| 62 |
<distributionManagement> |
|---|
| 63 |
<repository> |
|---|
| 64 |
<id>schst</id> |
|---|
| 65 |
<url>ftp://mvn.java.schst.net/repository</url> |
|---|
| 66 |
</repository> |
|---|
| 67 |
<snapshotRepository> |
|---|
| 68 |
<id>schst</id> |
|---|
| 69 |
<url>ftp://mvn.java.schst.net/repository</url> |
|---|
| 70 |
</snapshotRepository> |
|---|
| 71 |
</distributionManagement> |
|---|
| 72 |
</project> |
|---|