You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ju...@apache.org on 2019/10/20 18:27:55 UTC

[fineract-cn-office] branch 0.1.x updated: stabilisation version

This is an automated email from the ASF dual-hosted git repository.

juhan pushed a commit to branch 0.1.x
in repository https://gitbox.apache.org/repos/asf/fineract-cn-office.git


The following commit(s) were added to refs/heads/0.1.x by this push:
     new 1fdd60d  stabilisation version
     new cc65a63  Merge pull request #16 from aasaru/0.1.x
1fdd60d is described below

commit 1fdd60d859061d915a8b3ee27aece316454fda88
Author: Juhan Aasaru <Ju...@nortal.com>
AuthorDate: Sat Oct 19 20:52:05 2019 +0300

    stabilisation version
---
 Dockerfile           |  2 +-
 README.md            |  2 +-
 service/build.gradle |  2 +-
 shared.gradle        | 18 +++++++++---------
 4 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 05b9612..461aef1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -31,6 +31,6 @@ ENV server.max-http-header-size=16384 \
     server.port=$office_port
 
 WORKDIR /tmp
-COPY --from=builder /builddir/service/build/libs/service-0.1.0-BUILD-SNAPSHOT-boot.jar ./office-service-boot.jar
+COPY --from=builder /builddir/service/build/libs/service-0.1.x-SNAPSHOT-boot.jar ./office-service-boot.jar
 
 CMD ["java", "-jar", "office-service-boot.jar"]
diff --git a/README.md b/README.md
index 560ffde..f68348a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Apache Fineract CN Office Management [![Build Status](https://api.travis-ci.com/apache/fineract-cn-office.svg?branch=develop)](https://travis-ci.com/apache/fineract-cn-office)  [![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/apache/fineract-cn-office)](https://hub.docker.com/r/apache/fineract-cn-office/builds)
+# Apache Fineract CN Office Management [![Build Status](https://api.travis-ci.com/apache/fineract-cn-office.svg?branch=0.1.x)](https://travis-ci.com/apache/fineract-cn-office)  [![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/apache/fineract-cn-office)](https://hub.docker.com/r/apache/fineract-cn-office/builds)
 
 This service manages an organization and its employees.
 [Read more](https://cwiki.apache.org/confluence/display/FINERACT/Fineract+CN+Project+Structure#FineractCNProjectStructure-office).
diff --git a/service/build.gradle b/service/build.gradle
index bfd04a5..a248b9a 100644
--- a/service/build.gradle
+++ b/service/build.gradle
@@ -54,7 +54,7 @@ dependencies {
             [group: 'org.apache.fineract.cn', name: 'lang', version: versions.frameworklang],
             [group: 'org.apache.fineract.cn', name: 'async', version: versions.frameworkasync],
             [group: 'org.apache.fineract.cn', name: 'cassandra', version: versions.frameworkcassandra],
-            [group: 'org.apache.fineract.cn', name: 'postgresql', version:'0.1.0-BUILD-SNAPSHOT'],
+            [group: 'org.apache.fineract.cn', name: 'postgresql', version:'0.1.x-SNAPSHOT'],
             [group: 'org.apache.fineract.cn', name: 'command', version: versions.frameworkcommand],
             [group: 'io.netty', name: 'netty-all', version: '4.1.39.Final'],
             [group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.39.Final']
diff --git a/shared.gradle b/shared.gradle
index 1d2f623..c586e13 100644
--- a/shared.gradle
+++ b/shared.gradle
@@ -16,16 +16,16 @@
  */
 
 group 'org.apache.fineract.cn.office'
-version '0.1.0-BUILD-SNAPSHOT'
+version '0.1.x-SNAPSHOT'
 
 ext.versions = [
-        frameworkapi      : '0.1.0-BUILD-SNAPSHOT',
-        frameworklang     : '0.1.0-BUILD-SNAPSHOT',
-        frameworkasync    : '0.1.0-BUILD-SNAPSHOT',
-        frameworkcassandra: '0.1.0-BUILD-SNAPSHOT',
-        frameworkcommand  : '0.1.0-BUILD-SNAPSHOT',
-        frameworktest     : '0.1.0-BUILD-SNAPSHOT',
-        frameworkanubis   : '0.1.0-BUILD-SNAPSHOT',
+        frameworkapi      : '0.1.x-SNAPSHOT',
+        frameworklang     : '0.1.x-SNAPSHOT',
+        frameworkasync    : '0.1.x-SNAPSHOT',
+        frameworkcassandra: '0.1.x-SNAPSHOT',
+        frameworkcommand  : '0.1.x-SNAPSHOT',
+        frameworktest     : '0.1.x-SNAPSHOT',
+        frameworkanubis   : '0.1.x-SNAPSHOT',
         validator         : '5.3.0.Final',
 ]
 
@@ -60,7 +60,7 @@ ext['spring-data-releasetrain.version'] = 'Gosling-SR2A'
 dependencies {
     compile(
             [group: 'com.google.code.findbugs', name: 'jsr305'],
-            [group: 'org.apache.fineract.cn', name: 'postgresql', version: '0.1.0-BUILD-SNAPSHOT'],
+            [group: 'org.apache.fineract.cn', name: 'postgresql', version: '0.1.x-SNAPSHOT'],
             [group: 'postgresql', name: 'postgresql', version: '9.0-801.jdbc4']
     )