Skip to content
This repository has been archived by the owner on Feb 8, 2019. It is now read-only.

Commit

Permalink
Moved some files around for creating dists. Removed extensions on lic…
Browse files Browse the repository at this point in the history
…ense and notice files but kept seperated by folder location.
  • Loading branch information
wisebaldone committed Dec 14, 2015
1 parent 2dee9a5 commit 76fb8ab
Show file tree
Hide file tree
Showing 27 changed files with 33 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,10 @@ For example, to override wave\_server\_domain run:
Take a look at the reference.conf to learn about configuration and possible/default values.

The server can be started (on Linux/MacOS) by running
./run-server.sh (currently disabled please use gradle method)
./run-server.sh
Or on Windows by running
run-server.bat (currently disabled please use gradle method)
run-server.bat
Note: must be cd'ed into the root directory
Or, you can run the server from the compiled classes with Gradle:
gradle run
The web client will be accessible by default at http://localhost:9898/.
Expand Down
File renamed without changes.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ rat.doFirst {
task createDistSourceZip(type: Zip) {
baseName = "apache-wave-source"
from('./') {
into ''
into 'apache-wave-src'
}
excludes = [
'apache-wave-source.zip',
'apache-wave-source.tar',
'apache-wave-src.zip',
'apache-wave-src.tar',
'.gradle/',
'.git/',
'.vagrant/',
Expand All @@ -104,11 +104,11 @@ task createDistSourceZip(type: Zip) {
task createDistSourceTar(type: Tar) {
baseName = "apache-wave-source"
from('./') {
into ''
into 'apache-wave-src'
}
excludes = [
'apache-wave-source.zip',
'apache-wave-source.tar',
'apache-wave-src.zip',
'apache-wave-src.tar',
'.gradle/',
'.git/',
'.vagrant/',
Expand Down
24 changes: 24 additions & 0 deletions wave/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,18 @@ task createDistZip(type: Zip) {
from('war') {
into 'apache-wave/war'
}
from('../THANKS') {
into 'apache-wave'
}
from('../RELEASE-NOTES') {
into 'apache-wave'
}
from('../KEYS') {
into 'apache-wave'
}
from('../DISCLAIMER') {
into 'apache-wave'
}
}

task createDistTar(type: Tar) {
Expand All @@ -573,6 +585,18 @@ task createDistTar(type: Tar) {
from('war') {
into 'apache-wave/war'
}
from('../THANKS') {
into 'apache-wave'
}
from('../RELEASE-NOTES') {
into 'apache-wave'
}
from('../KEYS') {
into 'apache-wave'
}
from('../DISCLAIMER') {
into 'apache-wave'
}
}

createDistZip.dependsOn jar, createPropertiesFile
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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 comments on commit 76fb8ab

Please sign in to comment.