Added webserver module. Moved webserver files to the webserver module.

This commit is contained in:
Clinton Alexander 2017-01-30 13:51:00 +00:00 committed by Clinton Alexander
parent 85243a6b76
commit bc9f86905c
10 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,15 @@
apply plugin: 'kotlin'
apply plugin: 'java'
apply plugin: 'net.corda.plugins.publish-utils'
description 'Corda node modules'
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
compile project(':node')
}

View File

@ -7,6 +7,7 @@ include 'core'
include 'node-schemas'
include 'node'
include 'node:capsule'
include 'node:webserver'
include 'client'
include 'experimental'
include 'experimental:sandbox'