1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-08 21:50:45 +02:00

Move even further away from ant

This commit is contained in:
md_5
2012-03-14 17:59:49 +11:00
parent f9668be20e
commit 06068212c9
4 changed files with 16 additions and 14 deletions

3
.gitignore vendored
View File

@@ -30,4 +30,5 @@ manifest.mf
*.iws
.idea/
EssentialsRelease/
EssentialsRelease/
jars/

View File

@@ -15,7 +15,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.2.3-R0.2-SNAPSHOT</version>
<version>${bukkitversion}</version>
</dependency>
</dependencies>
</project>

View File

@@ -11,16 +11,5 @@
</fileset>
<flattenmapper/>
</copy>
<move file="jars/Essentials-3.0-SNAPSHOT.jar" tofile="jars/Essentials.jar"/>
<move file="jars/EssentialsAntiCheat-3.0-SNAPSHOT.jar" tofile="jars/EssentialsAntiCheat.jar"/>
<move file="jars/EssentialsChat-3.0-SNAPSHOT.jar" tofile="jars/EssentialsChat.jar"/>
<move file="jars/EssentialsProtect-3.0-SNAPSHOT.jar" tofile="jars/EssentialsProtect.jar"/>
<move file="jars/EssentialsGeoIP-3.0-SNAPSHOT.jar" tofile="jars/EssentialsGeoIP.jar"/>
<move file="jars/EssentialsGroupManager-3.0-SNAPSHOT.jar" tofile="jars/EssentialsGroupManager.jar"/>
<move file="jars/EssentialsGroupBridge-3.0-SNAPSHOT.jar" tofile="jars/EssentialsGroupBridge.jar"/>
<move file="jars/EssentialsXMPP-3.0-SNAPSHOT.jar" tofile="jars/EssentialsXMPP.jar"/>
<move file="jars/Essentials2Compat-3.0-SNAPSHOT.jar" tofile="jars/Essentials2Compat.jar"/>
<move file="jars/EssentialsSigns-3.0-SNAPSHOT.jar" tofile="jars/EssentialsSigns.jar"/>
<move file="jars/EssentialsUpdate-3.0-SNAPSHOT.jar" tofile="jars/EssentialsUpdate.jar"/>
</target>
</project>

14
pom.xml
View File

@@ -35,7 +35,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.2.3-R0.2-SNAPSHOT</version>
<version>${bukkitversion}</version>
</dependency>
</dependencies>
@@ -50,10 +50,22 @@
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<finalName>${project.artifactId}</finalName>
<outputDirectory>../jars</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bukkitversion>1.2.3-R0.3-SNAPSHOT</bukkitversion>
<org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>true</org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>
<org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>2</org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>
<org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>2</org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>