Skip to content

Commit

Permalink
Restructure with gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
smbarbour committed Sep 11, 2016
1 parent 85baf52 commit f5082ca
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.gradle/
build/

18 changes: 18 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apply plugin: 'java'

repositories {
mavenCentral()
}

dependencies {
compile 'com.google.code.gson:gson:2.2.4'
compile group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.2'
}

jar {
archiveName = 'CMPDL.jar'
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
manifest {
attributes "Main-Class": 'vazkii.cmpdl.CMPDL'
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f5082ca

Please sign in to comment.