📤👷‍♀️📥
Go to file
Inal Arsanukaev cdb9559ca8
Added sequence_id to RecurrentPaymentToolEventSink (#516)
* Added sequence_id to RecurrentPaymentToolEventSink

* change required -> optional
2019-11-19 16:13:35 +03:00
build/erlang HG-494: rename application to damsel (#468) 2019-07-23 18:43:46 +03:00
build_utils@4a09386542 Ensure dialyzer runs on every build (#514) 2019-11-14 14:12:40 +03:00
doc HG-30: Domain redesign (#64) 2016-10-10 16:14:58 +03:00
proto Added sequence_id to RecurrentPaymentToolEventSink (#516) 2019-11-19 16:13:35 +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 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>