Skip to content

Commit

Permalink
Bootstrap command line client (gstamatelat#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
gstamatelat committed Aug 12, 2018
1 parent cc33c32 commit e9e3f8c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
21 changes: 21 additions & 0 deletions client/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
plugins {
id 'java'
}

sourceCompatibility = 1.8

repositories {
jcenter()
}

sourceSets {
main {
java {
srcDirs = ['src']
}
}
}

dependencies {
compile rootProject
}
5 changes: 5 additions & 0 deletions client/src/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
public class Main {
public static void main(String[] args) {
System.out.println("Random sampling client");
}
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = 'random-sampling'
include 'demo-java', 'demo-scala'
include 'demo-java', 'demo-scala', 'client'

0 comments on commit e9e3f8c

Please sign in to comment.