📤👷‍♀️📥
Go to file
a.romanov 0b8b408b91
BJ-502 Add access token to digital wallet struct (#450)
* BJ-502 Add access token to digital wallet struct

* Code review fix
2019-06-20 17:34:58 +03:00
build/erlang MST-106: Payouts (#188) 2017-09-04 18:40:55 +03:00
build_utils@8dd1d30e97 HG-241: create erlang release by Jenkins (#195) 2017-08-15 16:18:09 +03:00
doc HG-30: Domain redesign (#64) 2016-10-10 16:14:58 +03:00
proto BJ-502 Add access token to digital wallet struct (#450) 2019-06-20 17:34:58 +03:00
.gitignore HG-241: create erlang release by Jenkins (#195) 2017-08-15 16:18:09 +03:00
.gitmodules BJ-49: add build_utils (#56) 2016-09-10 01:24:38 +03:00
Jenkinsfile HG-241: create erlang release by Jenkins (#195) 2017-08-15 16:18:09 +03:00
Makefile DC-66: Introduce payout terms (#283) 2018-02-26 15:14:59 +03:00
package.json FE-57: create package.json for npm-registration (#73) 2016-10-12 18:41:12 +03:00
pom.xml HG-192: Introduce multiclaims (#131) 2017-07-17 13:21:41 +03:00
README.md Revert provider fee selection by terminal, commit name fix (#445) 2019-05-22 19:07:06 +03:00
TODO.md HG-64: Expand proxy context + discard terminal descriptors (#78) 2016-10-20 13:47:12 +03:00

Damsel

Build Status

Systemwide protocol collection.

Требования к оформлению Thrift IDL файлов

  • Namespace:

    В каждом файле нужно обязательно указывать namespace для JAVA:

      namespace java com.rbkmoney.damsel.<name>
    

    Где <name> - имя, уникальное для Thrift IDL файлa в Damsel.

Java development

Собрать дамзель и инсталировать новый jar в локальный мавен репозиторий:

  • make wc_compile
  • make wc_java_install LOCAL_BUILD=true SETTINGS_XML=path_to_rbk_maven_settings

Чтобы ипользовать несколько версий дамзели в проекте используте classifier:v${commit.number}

<dependency>
    <groupId>com.rbkmoney</groupId>
    <artifactId>damsel</artifactId>
    <version>1.136-07b0898</version>
    <classifier>v136</classifier>
</dependency>