|
Revision 53, 1.4 kB
(checked in by schst, 3 years ago)
|
Adjusted version
|
| 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>XJConf</artifactId> |
|---|
| 8 |
<version>0.10.1</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 |
<build> |
|---|
| 19 |
<defaultGoal>package</defaultGoal> |
|---|
| 20 |
<plugins> |
|---|
| 21 |
<plugin> |
|---|
| 22 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 23 |
<artifactId>maven-compiler-plugin</artifactId> |
|---|
| 24 |
<configuration> |
|---|
| 25 |
<source>1.5</source> |
|---|
| 26 |
<target>1.5</target> |
|---|
| 27 |
<encoding>iso8859-1</encoding> |
|---|
| 28 |
</configuration> |
|---|
| 29 |
</plugin> |
|---|
| 30 |
</plugins> |
|---|
| 31 |
<extensions> |
|---|
| 32 |
<extension> |
|---|
| 33 |
<groupId>org.apache.maven.wagon</groupId> |
|---|
| 34 |
<artifactId>wagon-ftp</artifactId> |
|---|
| 35 |
<version>1.0-alpha-3</version> |
|---|
| 36 |
</extension> |
|---|
| 37 |
</extensions> |
|---|
| 38 |
</build> |
|---|
| 39 |
<distributionManagement> |
|---|
| 40 |
<repository> |
|---|
| 41 |
<id>schst</id> |
|---|
| 42 |
<url>ftp://mvn.java.schst.net/repository</url> |
|---|
| 43 |
</repository> |
|---|
| 44 |
<snapshotRepository> |
|---|
| 45 |
<id>schst</id> |
|---|
| 46 |
<url>ftp://mvn.java.schst.net/repository</url> |
|---|
| 47 |
</snapshotRepository> |
|---|
| 48 |
</distributionManagement> |
|---|
| 49 |
</project> |
|---|