Permalink
Please sign in to comment.
Showing
with
57 additions
and 0 deletions.
- +28 −0 JavaWebServer/build.gradle
- +29 −0 PieOSXClient/build.gradle
| @@ -0,0 +1,28 @@ | ||
| +apply plugin: 'java' | ||
| +apply plugin: 'application' | ||
| + | ||
| +mainClassName = 'Server' | ||
| + | ||
| +repositories { | ||
| + mavenCentral() | ||
| +} | ||
| + | ||
| +dependencies { | ||
| + compile 'org.json:json:20160212' | ||
| +} | ||
| + | ||
| +sourceCompatibility = 1.8 | ||
| +targetCompatibility = 1.8 | ||
| + | ||
| +jar { | ||
| + baseName = 'server' | ||
| + version = '0.1.0' | ||
| +} | ||
| + | ||
| +sourceSets { | ||
| + main { | ||
| + java { | ||
| + srcDir 'src' | ||
| + } | ||
| + } | ||
| +} |
| @@ -0,0 +1,29 @@ | ||
| +apply plugin: 'java' | ||
| +apply plugin: 'application' | ||
| + | ||
| +mainClassName = 'PieOSXClient' | ||
| + | ||
| +repositories { | ||
| + mavenCentral() | ||
| +} | ||
| + | ||
| +dependencies { | ||
| + compile 'org.json:json:20160212' | ||
| + compile 'org.xerial:sqlite-jdbc:3.8.11.2' | ||
| +} | ||
| + | ||
| +sourceCompatibility = 1.8 | ||
| +targetCompatibility = 1.8 | ||
| + | ||
| +jar { | ||
| + baseName = 'osx_client' | ||
| + version = '0.1.0' | ||
| +} | ||
| + | ||
| +sourceSets { | ||
| + main { | ||
| + java { | ||
| + srcDir 'src' | ||
| + } | ||
| + } | ||
| +} |
0 comments on commit
0fc0bfb