Added travis
This commit is contained in:
parent
ef5fa91847
commit
254c689eb2
3
.travis.yml
Normal file
3
.travis.yml
Normal file
@ -0,0 +1,3 @@
|
||||
language: java
|
||||
sudo: false
|
||||
script: mvn clean verify
|
@ -1,6 +1,7 @@
|
||||
name: HerobrineAI
|
||||
name: ${project.name}
|
||||
main: org.jakub1221.herobrineai.HerobrineAI
|
||||
version: 3.2.2
|
||||
version: ${project.version}
|
||||
description: ${project.description}
|
||||
commands:
|
||||
hb-ai:
|
||||
description: Main command.
|
||||
|
54
pom.xml
54
pom.xml
@ -35,16 +35,56 @@
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
<version>${bukkitVersion}</version>
|
||||
<type>jar</type>
|
||||
<scope>system</scope>
|
||||
</dependency>
|
||||
<!-- Test Dependency -->
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<type>jar</type>
|
||||
<scope>test</scope>
|
||||
<groupId>org.jakub1221.customitems.CustomItems</groupId>
|
||||
<artifactId>CustomItems</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/CustomItems.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>me.ryanhamshire.GriefPrevention.GriefPrevention</groupId>
|
||||
<artifactId>GriefPrevention</artifactId>
|
||||
<version>7.2.1</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/GriefPrevention.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sacredlabyrinth.Phaed.PreciousStones.PreciousStones</groupId>
|
||||
<artifactId>PreciousStones</artifactId>
|
||||
<version>9.5.6-SNAPSHOT</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/PreciousStones.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.bekvon.bukkit.residence.Residence</groupId>
|
||||
<artifactId>Residence</artifactId>
|
||||
<version>2.6.6.2</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/Residence.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.palmergames.bukkit.towny.Towny</groupId>
|
||||
<artifactId>Towny</artifactId>
|
||||
<version>0.82.0.9</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/Towny.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sk89q.worldguard.bukkit.WorldGuardPlugin</groupId>
|
||||
<artifactId>WorldGuard</artifactId>
|
||||
<version>5.7.3</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/WorldGuard.jar</systemPath>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.massivecraft.factions.Factions</groupId>
|
||||
<artifactId>Factions</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<optional>true</optional>
|
||||
<systemPath>${project.basedir}/lib/Factions.jar</systemPath>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user