📤👷‍♀️📥
Go to file
Roman Pushkov 698bcd5f1d
Update chargeback proto (#545)
* optional levy in reject and reopen chargeback params

* add new terms

* remove partial chargeback terms

* reorder chargeback service terms

* remove chargeback payment method selector

* fix ordering
2020-03-05 17:58:15 +03:00
build/erlang HG-494: rename application to damsel (#468) 2019-07-23 18:43:46 +03:00
build_utils@03ffefb1e0 BJ-805: add UserInfo for CM Event (#542) 2020-02-26 14:26:35 +03:00
doc HG-30: Domain redesign (#64) 2016-10-10 16:14:58 +03:00
proto Update chargeback proto (#545) 2020-03-05 17:58:15 +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 Ensure dialyzer runs on every build (#514) 2019-11-14 14:12:40 +03:00
Makefile Ensure dialyzer runs on every build (#514) 2019-11-14 14:12:40 +03:00
package.json FE-57: create package.json for npm-registration (#73) 2016-10-12 18:41:12 +03:00
pom.xml BJ-759: update claim-managment protocol (#534) 2020-01-21 18:54:17 +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>