mirror of
https://github.com/asofold/CompatNoCheatPlus.git
synced 2025-01-09 19:38:03 +01:00
Dumb convert to maven.
This commit is contained in:
parent
5355e7aa61
commit
305d3f7692
2
CompatNoCheatPlus/.gitignore
vendored
2
CompatNoCheatPlus/.gitignore
vendored
@ -2,3 +2,5 @@
|
|||||||
/.classpath
|
/.classpath
|
||||||
/.project
|
/.project
|
||||||
/jar_desc.jardesc
|
/jar_desc.jardesc
|
||||||
|
/lib-maven
|
||||||
|
/target
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: CompatNoCheatPlus
|
name: CompatNoCheatPlus
|
||||||
main: me.asofold.bpl.cncp.CompatNoCheatPlus
|
main: me.asofold.bpl.cncp.CompatNoCheatPlus
|
||||||
version: 6.2.6
|
version: ${project.version}
|
||||||
loadbefore:
|
loadbefore:
|
||||||
- NoCheatPlus
|
- NoCheatPlus
|
||||||
softdepend:
|
softdepend:
|
||||||
|
107
CompatNoCheatPlus/pom.xml
Normal file
107
CompatNoCheatPlus/pom.xml
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
<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">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>CompatNoCheatPlus</groupId>
|
||||||
|
<artifactId>CompatNoCheatPlus</artifactId>
|
||||||
|
<version>6.2.7</version>
|
||||||
|
<name>CompatNoCheatPlus</name>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Source code -->
|
||||||
|
<scm>
|
||||||
|
<developerConnection>scm:git:git@github.com:asofold/${project.name}.git</developerConnection>
|
||||||
|
<connection>scm:git:git://github.com/asofold/${project.name}.git</connection>
|
||||||
|
<url>https://github.com/asofold/${project.name}</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<!-- Repositories -->
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>bukkit</id>
|
||||||
|
<name>Bukkit</name>
|
||||||
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<!-- Dependencies -->
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bukkit</groupId>
|
||||||
|
<artifactId>craftbukkit</artifactId>
|
||||||
|
<version>1.3.1-R2.0</version>
|
||||||
|
<type>jar</type>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.gmail.nossr50</groupId>
|
||||||
|
<artifactId>mcMMO</artifactId>
|
||||||
|
<version>todo</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${basedir}/lib-maven/mcMMO.jar</systemPath>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>fr.neatmonster.nocheatplus</groupId>
|
||||||
|
<artifactId>NoCheatPlus</artifactId>
|
||||||
|
<version>todo</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${basedir}/lib-maven/NoCheatPlus.jar</systemPath>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.citizensnpcs</groupId>
|
||||||
|
<artifactId>citizens</artifactId>
|
||||||
|
<version>todo</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${basedir}/lib-maven/citizens.jar</systemPath>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<!-- Building -->
|
||||||
|
<build>
|
||||||
|
<defaultGoal>clean package</defaultGoal>
|
||||||
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<targetPath>.</targetPath>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
<directory>${basedir}</directory>
|
||||||
|
<includes>
|
||||||
|
<include>plugin.yml</include>
|
||||||
|
</includes>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>2.5.1</version>
|
||||||
|
<configuration>
|
||||||
|
<source>1.6</source>
|
||||||
|
<target>1.6</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
|
<configuration>
|
||||||
|
<finalName>cncp</finalName>
|
||||||
|
<archive>
|
||||||
|
<addMavenDescriptor>false</addMavenDescriptor>
|
||||||
|
<pomPropertiesFile>false</pomPropertiesFile>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
|
||||||
|
<addDefaultImplementationEntries>false</addDefaultImplementationEntries>
|
||||||
|
</manifest>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Properties -->
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
</properties>
|
||||||
|
</project>
|
Loading…
Reference in New Issue
Block a user