Skip to content

Commit

Permalink
initial grade support added.
Browse files Browse the repository at this point in the history
  • Loading branch information
subwiz committed Apr 7, 2016
1 parent b9717a7 commit a26d270
Show file tree
Hide file tree
Showing 8 changed files with 127 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
Expand Up @@ -4,5 +4,8 @@
/restclient-cli/target/
/restclient-jfx/target/
/target/
/build/
**/build/
.idea
*.iml
*.iml
.gradle
10 changes: 10 additions & 0 deletions build.gradle
@@ -0,0 +1,10 @@
plugins {
id 'net.researchgate.release' version '2.3.0'
}

apply plugin: 'java'

repositories {
mavenLocal()
mavenCentral()
}
1 change: 1 addition & 0 deletions gradle.properties
@@ -0,0 +1 @@
version = 3.5.1-SNAPSHOT
25 changes: 25 additions & 0 deletions restclient-cli/build.gradle
@@ -0,0 +1,25 @@
apply plugin: 'java'
apply plugin: 'application'

// Application plugin config:
mainClassName = 'org.wiztools.restclient.cli.CliMain'
applicationName = 'frsh'
applicationDefaultJvmArgs = ['-Xms128m', '-Xmx512m']

allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'
}
}

repositories {
mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
}

dependencies {
compile project(':restclient-lib'),
'com.google.code.cli-parser:cli:7'
testCompile 'junit:junit:4.+'
}
34 changes: 34 additions & 0 deletions restclient-lib/build.gradle
@@ -0,0 +1,34 @@
apply plugin: 'java'

allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'
}
}

repositories {
mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
}

dependencies {
compile project(':restclient-server'),
'com.google.inject:guice:4.0',
'com.mycila.guice.extensions:mycila-guice-jsr250:3.6.ga',
'junit:junit:4.+',
'org.codehaus.jackson:jackson-mapper-asl:1.9.13',
'org.apache.httpcomponents:httpclient:4.5',
'org.apache.httpcomponents:httpmime:4.5',
'org.codehaus.groovy:groovy-all:2.4.4',
'net.htmlparser.jericho:jericho-html:3.3',
'org.wiztools:app-update:0.2.0'
compile('xom:xom:1.2.5') {
exclude group: 'xerces', module: 'xmlParserAPIs'
exclude group: 'xerces', module: 'xercesImpl'
exclude group: 'xalan', module: 'xalan'
exclude group: 'jaxen', module: 'jaxen'
}
testCompile 'junit:junit:4.+',
'com.google.code.gson:gson:2.3.1'
}
19 changes: 19 additions & 0 deletions restclient-server/build.gradle
@@ -0,0 +1,19 @@
apply plugin: 'java'

allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'
}
}

repositories {
mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
}

dependencies {
compile 'org.wiztools:commons-lib:0.4.2',
'org.eclipse.jetty:jetty-servlet:9.3.2.v20150730'
testCompile 'junit:junit:4.+'
}
29 changes: 29 additions & 0 deletions restclient-ui/build.gradle
@@ -0,0 +1,29 @@
apply plugin: 'java'
apply plugin: 'application'

// Application plugin config:
mainClassName = 'org.wiztools.restclient.ui.Main'
applicationName = 'frsh'
applicationDefaultJvmArgs = ['-Xms128m', '-Xmx512m']

allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'
}
}

repositories {
mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
}

dependencies {
compile project(':restclient-lib'),
'org.wiztools:filechooser-abstraction:0.1.0',
'com.jidesoft:jide-oss:3.6.10',
'org.swinglabs.swingx:swingx-autocomplete:1.6.5-1',
'com.fifesoft:rsyntaxtextarea:2.5.7',
'org.simplericity.macify:macify:1.6'
testCompile 'junit:junit:4.+'
}
5 changes: 5 additions & 0 deletions settings.gradle
@@ -0,0 +1,5 @@
include 'restclient-server'
include 'restclient-lib'
include 'restclient-ui'
include 'restclient-cli'
// include 'restclient-jfx'

0 comments on commit a26d270

Please sign in to comment.