#2 Added logic to have a player for each guild

This commit is contained in:
Isaac Parenteau
2019-10-06 00:20:58 -05:00
parent 950d20b137
commit 7c5f4c6c72
9 changed files with 401 additions and 137 deletions

34
pom.xml
View File

@ -6,12 +6,23 @@
<artifactId>eight-track</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Eight Track</name>
<inceptionYear>2019</inceptionYear>
<organization>
<name>Locusworks</name>
<url>https://www.locusworks.net</url>
</organization>
<scm>
<url>git@gitea.locusworks.net:Locusworks/eight-track.git</url>
</scm>
<properties>
<log4j.version>2.11.2</log4j.version>
<slf4j.version>1.7.26</slf4j.version>
<nexus.repo>http://nexus.locusworks.net</nexus.repo>
<dep.check.version>5.2.2</dep.check.version>
<license-maven-plugin.version>3.0</license-maven-plugin.version>
</properties>
<build>
@ -84,6 +95,29 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<quiet>false</quiet>
<header>${basedir}/licenses/LICENSE.template</header>
<strictCheck>true</strictCheck>
<useDefaultExcludes>true</useDefaultExcludes>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
<dependencies>
<!-- this dependency allows ${license.git.copyrightLastYear} in the
license template -->
<dependency>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin-git</artifactId>
<version>${license-maven-plugin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>