Skip to content

Commit

Permalink
Changed version to 1.0.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
gawi committed Jul 15, 2019
1 parent 8250ffe commit 9562673
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 14 deletions.
26 changes: 13 additions & 13 deletions build-instructions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## How to build Rivr

The build tool used in Rivr is [Gradle](https://www.gradle.org/). This distribution requires Gradle 4.10.2 (or more recent). To build, simply do
The build tool used in Rivr is [Gradle](https://www.gradle.org/). This distribution requires Gradle 5.5.1 (or more recent). To build, simply do

gradle build

Expand All @@ -13,18 +13,18 @@ Gradle will download the required build dependencies from Maven Central:

After a successful build, The resulting jar file can be found here:

* rivr-core/build/libs/rivr-core-1.0.10.jar
* rivr-voicexml/build/libs/rivr-voicexml-1.0.10.jar
* rivr-core/build/libs/rivr-core-1.0.11.jar
* rivr-voicexml/build/libs/rivr-voicexml-1.0.11.jar

The javadoc jar files:

* rivr-core/build/libs/rivr-core-1.0.10-javadoc.jar
* rivr-voicexml/build/libs/rivr-voicexml-1.0.10-javadoc.jar
* rivr-core/build/libs/rivr-core-1.0.11-javadoc.jar
* rivr-voicexml/build/libs/rivr-voicexml-1.0.11-javadoc.jar

The source jar files:

* rivr-core/build/libs/rivr-core-1.0.10-sources.jar
* rivr-voicexml/build/libs/rivr-voicexml-1.0.10-sources.jar
* rivr-core/build/libs/rivr-core-1.0.11-sources.jar
* rivr-voicexml/build/libs/rivr-voicexml-1.0.11-sources.jar


### Gradle wrapper
Expand Down Expand Up @@ -64,7 +64,7 @@ The Rivr subprojects (rivr-core, rivr-voicexml, rivr-voicexml-dialogue-runner) c

```groovy
dependencies {
compile 'com.nuecho:rivr-voicexml:1.0.10'
compile 'com.nuecho:rivr-voicexml:1.0.11'
}
```

Expand All @@ -74,14 +74,14 @@ dependencies {
<dependency>
<groupId>com.nuecho</groupId>
<artifactId>rivr-voicexml</artifactId>
<version>1.0.10</version>
<version>1.0.11</version>
</dependency>
```

### With Ivy

```xml
<dependency org="com.nuecho" name="rivr-voicexml" rev="1.0.10"/>
<dependency org="com.nuecho" name="rivr-voicexml" rev="1.0.11"/>
```

### Without dependency manager (Ant)
Expand All @@ -95,8 +95,8 @@ Obtain and add to your compilation classpath the following jar files:

In your runtime classpath (i.e. your WEB-INF/lib), you should have:

* rivr-voicexml-1.0.10.jar
* rivr-core-1.0.10.jar
* rivr-voicexml-1.0.11.jar
* rivr-core-1.0.11.jar
* commons-fileupload-1.2.1.jar
* javax.json-api-1.0.jar
* slf4j-api-1.7.5.jar
Expand All @@ -115,7 +115,7 @@ apply plugin: 'war' // Must be a webapp project
configurations { dialogueRunner }
dependencies {
dialogueRunner 'com.nuecho:rivr-voicexml-dialogue-runner:1.0.10@war'
dialogueRunner 'com.nuecho:rivr-voicexml-dialogue-runner:1.0.11@war'
}
repositories { mavenCentral() }
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = "com.nuecho"
version = "1.0.10"
version = "1.0.11"

// Configure the java projects release.

Expand Down
39 changes: 39 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Rivr change log

## Version 1.0.11:

### Rivr core

#### Changed

* Now using Gradle 5.5.1 (for building Rivr itself)
* Various Javadoc changes.

#### Added

* (nothing)

#### Removed

* (nothing)

#### Fixed

* DialogueServlet: Parameter `com.nuecho.rivr.core.webappServerSessionTrackingEnabled` can now be set to `false`.

### Rivr VoiceXML

#### Changed

* (nothing)

#### Added

* (nothing)

#### Removed

* (nothing)

#### Fixed

* (nothing)

## Version 1.0.10:

### Rivr core
Expand Down

0 comments on commit 9562673

Please sign in to comment.