Skip to content

Commit

Permalink
fix a dumb bug
Browse files Browse the repository at this point in the history
  • Loading branch information
123marvin123 committed Jan 27, 2015
1 parent c6c66f1 commit 9fc67cd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
24 changes: 18 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,28 @@
<groupId>net.gtaun.shoebill</groupId>
<artifactId>example-lvdm</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>LVDM</name>
<url>https://github.com/Shoebill/example-lvdm</url>

<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>

<repository>
<id>gtaun-public-repo</id>
<name>GTAUN Public Repository</name>
<url>http://repo.gtaun.net/content/groups/public</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>net.gtaun</groupId>
Expand All @@ -26,7 +35,7 @@
<type>jar</type>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>net.gtaun</groupId>
<artifactId>shoebill-common</artifactId>
Expand All @@ -38,23 +47,26 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.number>0</build.number>
</properties>

<build>
<defaultGoal>clean install</defaultGoal>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<compilerArgument>-parameters</compilerArgument>
<compilerArgument>-parameters</compilerArgument>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ public PlayerManager(EventManager rootEventManager)
commandManager.installCommandHandler(HandlerPriority.NORMAL);

commandManager.registerCommands(new LvdmCommands());
commandManager.registerCommands(new TestCommands());

// Example: register /test [command] ...
CommandGroup testGroup = new CommandGroup();
Expand Down

0 comments on commit 9fc67cd

Please sign in to comment.