Skip to content

Commit

Permalink
Dependency updates + version bump for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
gazbert committed Mar 24, 2018
1 parent c5cc553 commit 15b1a7e
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.2/apache-maven-3.5.2-bin.zip
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.3/apache-maven-3.5.3-bin.zip
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ and evaluate the bot, Docker is the way to go.
1. Install [Docker](https://docs.docker.com/engine/installation/) on the machine you want to run the bot.
1. Fetch the BX-bot image from [Docker Hub](https://hub.docker.com/r/gazbert/bxbot/): `docker pull gazbert/bxbot:x.x.x` -
replace `x.x.x` with the [Release](https://github.com/gazbert/bxbot/releases) version of the bot you want to run, e.g.
`docker pull gazbert/bxbot:0.8.6`
`docker pull gazbert/bxbot:0.8.7`
1. Run the Docker container: `docker container run --name bxbot-x.x.x -it gazbert/bxbot:x.x.x bash`
1. Change into the bot's directory: `cd bxbot*`
1. Configure the bot as required - see the main _[Configuration](#configuration-2)_ section. The bot's default
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
}

plugins {
id 'com.gradle.build-scan' version '1.11'
id 'com.gradle.build-scan' version '1.12.1'
}

buildScan {
Expand Down Expand Up @@ -43,10 +43,10 @@ ext.libraries = [
force = true
},
spring_tx: dependencies.create("org.springframework:spring-tx:" + ext.versions.springTxVersion),
google_guava: dependencies.create("com.google.guava:guava:24.0-jre"),
google_guava: dependencies.create("com.google.guava:guava:24.1-jre"),
google_gson: dependencies.create("com.google.code.gson:gson:2.8.2"),
javax_mail_api: dependencies.create("javax.mail:javax.mail-api:1.6.0"),
javax_mail_sun: dependencies.create("com.sun.mail:javax.mail:1.6.0"),
javax_mail_api: dependencies.create("javax.mail:javax.mail-api:1.6.1"),
javax_mail_sun: dependencies.create("com.sun.mail:javax.mail:1.6.1"),

junit: dependencies.create("junit:junit:4.12"),
powermock_junit: dependencies.create("org.powermock:powermock-module-junit4:1.7.3"),
Expand All @@ -66,7 +66,7 @@ allprojects {
apply plugin: 'maven'

group = 'com.gazbert.bxbot'
version = '0.8.7-SNAPSHOT'
version = '0.8.7'
}

subprojects {
Expand Down Expand Up @@ -196,6 +196,6 @@ task buildTarGzipDist(type: Tar, dependsOn: build) {
}

task wrapper(type: Wrapper) {
gradleVersion = '4.5'
gradleVersion = '4.6'
}
}
2 changes: 1 addition & 1 deletion bxbot-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<properties>
<start-class>com.gazbert.bxbot.BXBot</start-class>
Expand Down
2 changes: 1 addition & 1 deletion bxbot-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-domain-objects/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion bxbot-exchange-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-exchanges/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<profiles>
<profile>
Expand Down
2 changes: 1 addition & 1 deletion bxbot-repository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-rest-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-strategies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-strategy-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-trading-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>
<!--
Expand Down
2 changes: 1 addition & 1 deletion bxbot-xml-datastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
</parent>
<dependencies>

Expand Down
2 changes: 1 addition & 1 deletion bxbot.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ REM log4j2 config file location
SET log4j2_config=.\config\log4j2.xml

REM The BX-bot 'fat' jar (Spring Boot app containing all the dependencies)
SET bxbot_jar=bxbot-app-0.8.7-SNAPSHOT.jar
SET bxbot_jar=bxbot-app-0.8.7.jar

REM PID file for checking if bot is running
SET pid_file=.\.bxbot.pid
Expand Down
2 changes: 1 addition & 1 deletion bxbot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lib_dir=./libs
log4j2_config=./config/log4j2.xml

# The BX-bot 'fat' jar (Spring Boot app containing all the dependencies)
bxbot_jar=bxbot-app-0.8.7-SNAPSHOT.jar
bxbot_jar=bxbot-app-0.8.7.jar

# PID file for checking if bot is running
pid_file=./.bxbot.pid
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Feb 04 15:08:27 GMT 2018
#Sat Mar 24 17:42:52 GMT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.gazbert.bxbot</groupId>
<artifactId>bxbot-parent</artifactId>
<packaging>pom</packaging>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7</version>
<name>BX-bot Parent</name>
<description>Parent POM for building the bot</description>
<url>https://github.com/gazbert/bxbot</url>
Expand Down Expand Up @@ -173,18 +173,18 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>24.0-jre</version>
<version>24.1-jre</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
<scope>compile</scope>
</dependency>

Expand Down Expand Up @@ -322,7 +322,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.5.9.RELEASE</version>
<version>1.5.10.RELEASE</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 15b1a7e

Please sign in to comment.