Updated pom.xml with correct versions.

Disabled pushing for release.
Fixed checkout URL in pom.xml.
Added local checkout for pom.xml.
Added assembly:assembly to preparation goal of release.
Fixed path issues with build.
Removed release config.
This commit is contained in:
sk89q 2011-04-30 20:08:14 -07:00
parent ae30001ceb
commit deef660620
5 changed files with 9 additions and 10 deletions

View File

@ -3,7 +3,7 @@
en-masse, de-griefing, and fixing issues.</description> en-masse, de-griefing, and fixing issues.</description>
<property name="src.dir" location="src/main"/> <property name="src.dir" location="src/main"/>
<property name="resources.dir" location="src/resources"/> <property name="resources.dir" location="src/main/resources"/>
<property name="build.dir" location="build"/> <property name="build.dir" location="build"/>
<property name="dist.dir" location="dist"/> <property name="dist.dir" location="dist"/>
<property name="release.dir" location="release"/> <property name="release.dir" location="release"/>

17
pom.xml
View File

@ -1,11 +1,10 @@
<!-- Maven build file for WorldEdit Copyright (c) 2011 sk89q <http://www.sk89q.com> <!-- Maven build file for WorldEdit Copyright (c) 2011 sk89q <http://www.sk89q.com>
WorldEdit is available under the GNU General Public License v3 --> WorldEdit is available under the GNU General Public License v3 -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.sk89q</groupId> <groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId> <artifactId>worldedit</artifactId>
<version>4.4.0-SNAPSHOT</version> <version>4.4.1-SNAPSHOT</version>
<name>WorldEdit</name> <name>WorldEdit</name>
<description>WorldEdit allows for editing the Minecraft SMP world <description>WorldEdit allows for editing the Minecraft SMP world
en-masse, de-griefing, and fixing issues.</description> en-masse, de-griefing, and fixing issues.</description>
@ -77,19 +76,19 @@
<!-- Resources --> <!-- Resources -->
<resources> <resources>
<resource> <resource>
<targetPath></targetPath> <targetPath>.</targetPath>
<filtering>true</filtering> <filtering>true</filtering>
<directory>${basedir}</directory> <directory>${basedir}/src/main/resources/</directory>
<includes> <includes>
<include>src/resources/plugin.yml</include> <include>plugin.yml</include>
</includes> </includes>
</resource> </resource>
<resource> <resource>
<targetPath>defaults/</targetPath> <targetPath>defaults/</targetPath>
<filtering>true</filtering> <filtering>true</filtering>
<directory>${basedir}</directory> <directory>${basedir}/src/main/resources/</directory>
<includes> <includes>
<include>src/resources/config.yml</include> <include>config.yml</include>
</includes> </includes>
</resource> </resource>
</resources> </resources>
@ -132,7 +131,7 @@
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-2</version> <version>2.2-beta-2</version>
<configuration> <configuration>
<descriptor>${basedir}/src/assembly/default.xml</descriptor> <descriptor>${basedir}/src/main/assembly/default.xml</descriptor>
</configuration> </configuration>
</plugin> </plugin>