Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
More file moving.
Dieser Commit ist enthalten in:
Ursprung
4bcbfa76ef
Commit
582b98dad0
@ -2,7 +2,7 @@
|
|||||||
<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>
|
||||||
|
|
||||||
<property name="src.dir" location="src/main"/>
|
<property name="src.dir" location="src/main/java"/>
|
||||||
<property name="resources.dir" location="src/main/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"/>
|
||||||
|
131
dependency-reduced-pom.xml.releaseBackup
Normale Datei
131
dependency-reduced-pom.xml.releaseBackup
Normale Datei
@ -0,0 +1,131 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<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">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.sk89q</groupId>
|
||||||
|
<artifactId>worldedit</artifactId>
|
||||||
|
<name>WorldEdit</name>
|
||||||
|
<version>4.4.2-SNAPSHOT</version>
|
||||||
|
<description>WorldEdit allows for editing the Minecraft SMP world
|
||||||
|
en-masse, de-griefing, and fixing issues.</description>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/sk89q/worldedit.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:sk89q/worldedit.git</developerConnection>
|
||||||
|
<url>https://github.com/sk89q/worldedit</url>
|
||||||
|
</scm>
|
||||||
|
<build>
|
||||||
|
<sourceDirectory>${basedir}/src/main</sourceDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<targetPath>.</targetPath>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
<directory>${basedir}/src/main/resources/</directory>
|
||||||
|
<includes>
|
||||||
|
<include>plugin.yml</include>
|
||||||
|
</includes>
|
||||||
|
</resource>
|
||||||
|
<resource>
|
||||||
|
<targetPath>defaults/</targetPath>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
<directory>${basedir}/src/main/resources/</directory>
|
||||||
|
<includes>
|
||||||
|
<include>config.yml</include>
|
||||||
|
</includes>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>2.3.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.3.1</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<addMavenDescriptor>true</addMavenDescriptor>
|
||||||
|
<pomPropertiesFile>true</pomPropertiesFile>
|
||||||
|
<manifest>
|
||||||
|
<addClasspath>truezip.jar WorldEdit/truezip.jar js.jar
|
||||||
|
WorldEdit/js.jar</addClasspath>
|
||||||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
</manifest>
|
||||||
|
<manifestEntries>
|
||||||
|
<WorldEdit-Version>${project.version}</WorldEdit-Version>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>2.2-beta-2</version>
|
||||||
|
<configuration>
|
||||||
|
<descriptor>${basedir}/src/main/assembly/default.xml</descriptor>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>1.4</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<artifactSet>
|
||||||
|
<includes>
|
||||||
|
<include>com.sk89q:jchronic</include>
|
||||||
|
</includes>
|
||||||
|
</artifactSet>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<goals>assembly:assembly</goals>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sk89q-mvn2</id>
|
||||||
|
<url>http://mvn2.sk89q.com/repo</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bukkit-repo</id>
|
||||||
|
<url>http://repo.bukkit.org/artifactory/repo</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.sk89q</groupId>
|
||||||
|
<artifactId>dummypermscompat</artifactId>
|
||||||
|
<version>1.1</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>bukkit</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.schlichtherle</groupId>
|
||||||
|
<artifactId>truezip</artifactId>
|
||||||
|
<version>6.8.3</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>rhino</groupId>
|
||||||
|
<artifactId>js</artifactId>
|
||||||
|
<version>1.7R2</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
||||||
|
|
2
pom.xml
2
pom.xml
@ -74,7 +74,7 @@
|
|||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>${basedir}/src/main</sourceDirectory>
|
<sourceDirectory>${basedir}/src/main/java/</sourceDirectory>
|
||||||
|
|
||||||
<!-- Resources -->
|
<!-- Resources -->
|
||||||
<resources>
|
<resources>
|
||||||
|
Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden Mehr anzeigen
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren