forked from mrmcpowned/beamplaysbrainfuck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (28 loc) · 809 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
group 'com.mrmc.beam.brainfuck'
version '1.0-SNAPSHOT'
apply plugin: 'java'
version = '1.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
task fatJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'Beam Plays Brainfuck',
'Implementation-Version': version,
'Main-Class': 'BotLoader'
}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
repositories {
mavenCentral()
maven {
name = "beam"
url = "https://maven.beam.pro/content/repositories/snapshots"
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "pro.beam:api:2.0.0-SNAPSHOT"
compile "pro.beam:interactive:1.5.1-SNAPSHOT"
}