Skip to content

Commit 317665c

Browse files
committed
Use gradle
1 parent 485984a commit 317665c

File tree

9 files changed

+21
-3
lines changed

9 files changed

+21
-3
lines changed

build.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version '1.0-SNAPSHOT'
2+
3+
apply plugin: 'java'
4+
5+
sourceCompatibility = 1.8
6+
7+
repositories {
8+
mavenCentral()
9+
}
10+
11+
dependencies {
12+
testCompile group: 'junit', name: 'junit', version: '4.12'
13+
}
14+
15+
jar {
16+
manifest {
17+
attributes 'Main-Class': 'blobsaver.Main'
18+
}
19+
}

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rootProject.name = 'blobsaver'
2+

src/META-INF/MANIFEST.MF

Lines changed: 0 additions & 3 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)