Skip to content

Commit

Permalink
Add build.gradle since we are switching to gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan19 committed Dec 24, 2018
1 parent afc8e69 commit cb269f5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
plugins {
id 'application'
}


apply plugin: 'java'
apply plugin: 'maven'

group = 'main'
version = '4.0.1'

description = "A bot for the Facets tabletop RPG"


sourceCompatibility = 1.8
targetCompatibility = 1.8



repositories {

maven { url "https://jitpack.io" }
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'org.codehaus.mojo', name: 'exec-maven-plugin', version:'1.6.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.9.6'
compile group: 'org.javacord', name: 'javacord', version:'3.0.0'
compile group: 'com.google.api-client', name: 'google-api-client', version:'1.23.0'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version:'1.23.0'
compile group: 'com.google.apis', name: 'google-api-services-sheets', version:'v4-rev539-1.23.0'
compile group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version:'1.06'
compile group: 'org.junit.platform', name: 'junit-platform-commons', version:'1.3.0'
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
compile group: 'de.btobastian.sdcf4j', name: 'sdcf4j-core', version:'v1.0.10'
compile group: 'de.btobastian.sdcf4j', name: 'sdcf4j-javacord', version:'v1.0.10'
compile group: 'com.vdurmont', name: 'emoji-java', version:'4.0.0'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version:'5.0.3'
}

mainClassName = 'discord.TwoDee'

0 comments on commit cb269f5

Please sign in to comment.