Skip to content

Commit

Permalink
Added client module
Browse files Browse the repository at this point in the history
  • Loading branch information
freyacodes committed Jul 16, 2017
1 parent 4252e01 commit a12742b
Show file tree
Hide file tree
Showing 8 changed files with 77 additions and 93 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/.idea/
*.iml
1 change: 1 addition & 0 deletions LavalinkClient/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.iml
58 changes: 58 additions & 0 deletions LavalinkClient/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>Lavalink-Parent</artifactId>
<groupId>lavalink</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>Lavalink-Client</artifactId>
<version>1.0</version>

<dependencies>
<dependency>
<!-- audio player for discord -->
<groupId>com.sedmelluq</groupId>
<artifactId>lavaplayer</artifactId>
<version>1.2.39</version>
</dependency>
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.3.4</version>
</dependency>
<dependency>
<!-- logging framework -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20170516</version>
</dependency>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>3.2.0_226</version>
</dependency>
</dependencies>

<repositories>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>


</project>
10 changes: 10 additions & 0 deletions LavalinkClient/src/main/java/lavalink/client/Lavalink.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package lavalink.client;

public class Lavalink {

private final String host;

public Lavalink(String host) {
this.host = host;
}
}
6 changes: 0 additions & 6 deletions LavalinkServer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@
<packaging>pom</packaging>
<version>1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<!-- audio player for discord -->
Expand Down
87 changes: 0 additions & 87 deletions LavalinkServer/target/classes/logback.xml

This file was deleted.

7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
<version>1.0</version>
<modules>
<module>LavalinkServer</module>
<module>LavalinkClient</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

</project>

0 comments on commit a12742b

Please sign in to comment.