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

Commit

Permalink
This closes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
wisebaldone committed Apr 24, 2017
1 parent 19783bc commit d35211b
Show file tree
Hide file tree
Showing 167 changed files with 316 additions and 821 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ war/WEB-INF
*.project
*.classpath
*/.settings/
.metadata/

### Gradle
.gradle
Expand All @@ -57,3 +58,6 @@ wave/config/wave.conf

### Backup files
*~

### Server running
**/*.log.*
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ software:
The nightly binaries can be downloaded from https://builds.apache.org/view/S-Z/view/Wave/job/wave-artifacts/lastSuccessfulBuild/artifact/.
The latest "dev" releases can be downloaded from: https://dist.apache.org/repos/dist/dev/incubator/wave/.
The latest officially released binaries can be downloaded from: https://dist.apache.org/repos/dist/release/incubator/wave/.
Extract the archive and execute run-server.sh for Linux/Mac or run-server.bat for Windows.

Extract the archive and execute ./bin/wave for Linux/Mac or bin\wave.bat for Windows.

The web client will be accessible by default at http://localhost:9898/.

## Setup with Vagrant
Expand Down
20 changes: 11 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,21 @@ buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.3'
}
}
plugins {
id "org.nosphere.apache.rat" version "0.2.0"
}
allprojects {
apply plugin: 'eclipse';
apply plugin: 'idea';
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'jacoco'
group = 'apache-wave'
}

tasks.withType(Tar) {
compression = Compression.BZIP2
}

//=============================================================================
// Project Level Settings
//=============================================================================
Expand Down Expand Up @@ -105,8 +106,6 @@ task createDistSourceZip(type: Zip) {
}

task createDistSourceTar(type: Tar) {
compression = Compression.GZIP
extension = 'tar.gz'
baseName = srcName
destinationDir = file('distributions')
from('./') {
Expand All @@ -130,7 +129,7 @@ createDistSource.dependsOn createDistSourceZip, createDistSourceTar, ":pst:creat
//=============================================================================
// Distribution's
//=============================================================================
task createDist() {
task createDist(type: Copy) {
doFirst {
println ''
println '--------------------------------------------------------'
Expand All @@ -139,6 +138,9 @@ task createDist() {
println '--------------------------------------------------------'
println ''
}
from('wave/build/distributions') {
}
into 'distributions'
}

createDist.dependsOn createDistSource, ":wave:createDistBin", ":pst:createDist"
createDist.dependsOn createDistSource, ":wave:assembleDist", ":pst:createDist"
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sun Feb 21 14:40:07 AEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2-all.zip
10 changes: 5 additions & 5 deletions pst/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '1.2.3'
id 'com.google.protobuf' version '0.8.0'
}
apply plugin: 'com.google.protobuf'

//=============================================================================
// Project Level Settings
Expand All @@ -46,6 +46,10 @@ jar {
}
}

tasks.withType(Tar) {
compression = Compression.BZIP2
}

//=============================================================================
// Source's
//=============================================================================
Expand Down Expand Up @@ -126,8 +130,6 @@ def srcExcludes = [
]

task createDistSourceTar(type: Tar) {
compression = Compression.GZIP
extension = 'tar.gz'
baseName = srcName
destinationDir = file('../distributions')
from('./') {
Expand Down Expand Up @@ -165,8 +167,6 @@ createDistSource.dependsOn createDistSourceTar, createDistSourceZip
def binName = this.group + "-" + this.name + "-bin"

task createDistBinTar(type: Tar) {
compression = Compression.GZIP
extension = 'tar.gz'
baseName = binName
destinationDir = file('../distributions')
from(shadowJar) {
Expand Down
338 changes: 83 additions & 255 deletions wave/build.gradle

Large diffs are not rendered by default.

85 changes: 0 additions & 85 deletions wave/dist/platforms/ubuntu/daemon-script.sh

This file was deleted.

46 changes: 0 additions & 46 deletions wave/dist/platforms/ubuntu/server-wrapper.sh

This file was deleted.

28 changes: 0 additions & 28 deletions wave/dist/run-data-migration.sh

This file was deleted.

25 changes: 0 additions & 25 deletions wave/dist/run-export.sh

This file was deleted.

25 changes: 0 additions & 25 deletions wave/dist/run-import.sh

This file was deleted.

23 changes: 0 additions & 23 deletions wave/dist/run-server.bat

This file was deleted.

Loading

0 comments on commit d35211b

Please sign in to comment.