Skip to content
This repository was archived by the owner on Jan 11, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ ENV server.max-http-header-size=16384 \
system.initialclientid=service-runner

WORKDIR /tmp
COPY --from=builder /builddir/service/build/libs/service-0.1.0-BUILD-SNAPSHOT-boot.jar ./notification-service-boot.jar
COPY --from=builder /builddir/service/build/libs/service-0.1.x-SNAPSHOT-boot.jar ./notification-service-boot.jar

CMD ["java", "-jar", "notification-service-boot.jar"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Apache Fineract CN Notifications [![Build Status](https://api.travis-ci.com/apache/fineract-cn-notifications.svg?branch=develop)](https://travis-ci.com/apache/fineract-cn-notifications) [![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/apache/fineract-cn-notifications)](https://hub.docker.com/r/apache/fineract-cn-notifications/builds)
# Apache Fineract CN Notifications [![Build Status](https://api.travis-ci.com/apache/fineract-cn-notifications.svg?branch=0.1.x)](https://travis-ci.com/apache/fineract-cn-notifications) [![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/apache/fineract-cn-notifications)](https://hub.docker.com/r/apache/fineract-cn-notifications/builds)

This microservice implements SMS and Email Notification functionality.
[Read more](https://cwiki.apache.org/confluence/display/FINERACT/Fineract+CN+Project+Structure#FineractCNProjectStructure-notifications).
Expand Down
36 changes: 18 additions & 18 deletions shared.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@
*/

group 'org.apache.fineract.cn.notification'
version '0.1.0-BUILD-SNAPSHOT'
version '0.1.x-SNAPSHOT'

ext.versions = [
fineractcnidentity : '0.1.0-BUILD-SNAPSHOT',
fineractcnoffice : '0.1.0-BUILD-SNAPSHOT',
fineractcncustomer : '0.1.0-BUILD-SNAPSHOT',
fineractcnaccounting : '0.1.0-BUILD-SNAPSHOT',
fineractcnportfolio : '0.1.0-BUILD-SNAPSHOT',
fineractcnteller : '0.1.0-BUILD-SNAPSHOT',
fineractcnpayroll : '0.1.0-BUILD-SNAPSHOT',
fineractcngroup : '0.1.0-BUILD-SNAPSHOT',
frameworkapi : '0.1.0-BUILD-SNAPSHOT',
frameworklang : '0.1.0-BUILD-SNAPSHOT',
frameworkasync : '0.1.0-BUILD-SNAPSHOT',
frameworkcassandra : '0.1.0-BUILD-SNAPSHOT',
frameworkpostgresql : '0.1.0-BUILD-SNAPSHOT',
frameworkcommand : '0.1.0-BUILD-SNAPSHOT',
frameworktest : '0.1.0-BUILD-SNAPSHOT',
frameworkanubis : '0.1.0-BUILD-SNAPSHOT',
frameworkpermittedfeignclient : '0.1.0-BUILD-SNAPSHOT',
fineractcnidentity : '0.1.x-SNAPSHOT',
fineractcnoffice : '0.1.x-SNAPSHOT',
fineractcncustomer : '0.1.x-SNAPSHOT',
fineractcnaccounting : '0.1.x-SNAPSHOT',
fineractcnportfolio : '0.1.x-SNAPSHOT',
fineractcnteller : '0.1.x-SNAPSHOT',
fineractcnpayroll : '0.1.x-SNAPSHOT',
fineractcngroup : '0.1.x-SNAPSHOT',
frameworkapi : '0.1.x-SNAPSHOT',
frameworklang : '0.1.x-SNAPSHOT',
frameworkasync : '0.1.x-SNAPSHOT',
frameworkcassandra : '0.1.x-SNAPSHOT',
frameworkpostgresql : '0.1.x-SNAPSHOT',
frameworkcommand : '0.1.x-SNAPSHOT',
frameworktest : '0.1.x-SNAPSHOT',
frameworkanubis : '0.1.x-SNAPSHOT',
frameworkpermittedfeignclient : '0.1.x-SNAPSHOT',
validator : '5.3.0.Final',
springjavamail : '1.4.1.RELEASE',
twilioapi : '7.17.+',
Expand Down