|
Revision 75, 1.9 kB
(checked in by daniel, 2 months ago)
|
set new version number
|
| Line | |
|---|
| 1 |
<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"> |
|---|
| 2 |
|
|---|
| 3 |
<modelVersion>4.0.0</modelVersion> |
|---|
| 4 |
|
|---|
| 5 |
<groupId>net.schst</groupId> |
|---|
| 6 |
<artifactId>XJConf</artifactId> |
|---|
| 7 |
<version>0.10.7</version> |
|---|
| 8 |
<packaging>jar</packaging> |
|---|
| 9 |
|
|---|
| 10 |
<repositories> |
|---|
| 11 |
<repository> |
|---|
| 12 |
<id>schst</id> |
|---|
| 13 |
<url>http://mvn.java.schst.net/repository</url> |
|---|
| 14 |
</repository> |
|---|
| 15 |
</repositories> |
|---|
| 16 |
|
|---|
| 17 |
<dependencies> |
|---|
| 18 |
<dependency> |
|---|
| 19 |
<groupId>junit</groupId> |
|---|
| 20 |
<artifactId>junit</artifactId> |
|---|
| 21 |
<version>3.8.1</version> |
|---|
| 22 |
<scope>test</scope> |
|---|
| 23 |
</dependency> |
|---|
| 24 |
</dependencies> |
|---|
| 25 |
|
|---|
| 26 |
<build> |
|---|
| 27 |
<defaultGoal>package</defaultGoal> |
|---|
| 28 |
<plugins> |
|---|
| 29 |
<plugin> |
|---|
| 30 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 31 |
<artifactId>maven-compiler-plugin</artifactId> |
|---|
| 32 |
<configuration> |
|---|
| 33 |
<source>1.5</source> |
|---|
| 34 |
<target>1.5</target> |
|---|
| 35 |
<encoding>iso8859-1</encoding> |
|---|
| 36 |
</configuration> |
|---|
| 37 |
</plugin> |
|---|
| 38 |
<plugin> |
|---|
| 39 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 40 |
<artifactId>maven-clover-plugin</artifactId> |
|---|
| 41 |
<configuration> |
|---|
| 42 |
<jdk>1.5</jdk> |
|---|
| 43 |
<licenseFile>/home/schst/clover.license</licenseFile> |
|---|
| 44 |
</configuration> |
|---|
| 45 |
</plugin> |
|---|
| 46 |
</plugins> |
|---|
| 47 |
<extensions> |
|---|
| 48 |
<extension> |
|---|
| 49 |
<groupId>org.apache.maven.wagon</groupId> |
|---|
| 50 |
<artifactId>wagon-ftp</artifactId> |
|---|
| 51 |
<version>1.0-alpha-3</version> |
|---|
| 52 |
</extension> |
|---|
| 53 |
</extensions> |
|---|
| 54 |
</build> |
|---|
| 55 |
<distributionManagement> |
|---|
| 56 |
<repository> |
|---|
| 57 |
<id>billy</id> |
|---|
| 58 |
<url>scpexe://devel.schlund.de/home/billy/public_html/repository</url> |
|---|
| 59 |
</repository> |
|---|
| 60 |
<snapshotRepository> |
|---|
| 61 |
<id>billy</id> |
|---|
| 62 |
<url>scpexe://devel.schlund.de/home/billy/public_html/repository</url> |
|---|
| 63 |
</snapshotRepository> |
|---|
| 64 |
</distributionManagement> |
|---|
| 65 |
</project> |
|---|