Skip to content

Commit

Permalink
16#: Support eventuate starters and eventuate BOM.
Browse files Browse the repository at this point in the history
  • Loading branch information
dartartem committed Jul 24, 2020
1 parent a436b6c commit 9a6acde
Show file tree
Hide file tree
Showing 3 changed files with 302 additions and 17 deletions.
2 changes: 1 addition & 1 deletion download-and-build-example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DESCRIPTION="description=Demo"
PACKAGE="packageName=com.example.demo"
PACKAGING="packaging=jar"
JAVA_VERSION="javaVersion=1.8"
DEPS="dependencies=eventuatelocal,eventuatelocaltestsupport,eventuatetrambasicmessaging,eventuatetramdomainevents,eventuatetramcommands,eventuatetramkafka,eventuatetramactivemq,eventuatetramrabbitmqmq,eventuatetramredis,eventuatetramtestingsupport,eventuatetramsagaorchestrator,eventuatetramsagaparticipant,eventuatetramsagatestingsupport"
DEPS="dependencies=eventuatelocal,eventuatelocaltestsupport,eventuatetrambasicmessaging,eventuatetrambasicmessagingstarter,eventuatetramdomainevents,eventuatetramdomaineventsstarter,eventuatetramcommands,eventuatetramcommandsstarter,eventuatetramkafka,eventuatetramactivemq,eventuatetramrabbitmqmq,eventuatetramredis,eventuatetramtestingsupport,eventuatetramsagaorchestrator,eventuatetramsagaorchestratorstarter,eventuatetramsagaparticipant,eventuatetramsagaparticipantstarter,eventuatetramsagatestingsupport,eventuatelocalbom,eventuatelocaltestsupportbom,eventuatetrambasicmessagingbom,eventuatetrambasicmessagingstarterbom,eventuatetramdomaineventsbom,eventuatetramdomaineventsstarterbom,eventuatetramcommandsbom,eventuatetramcommandsstarterbom,eventuatetramkafkabom,eventuatetramactivemqbom,eventuatetramrabbitmqmqbom,eventuatetramredisbom,eventuatetramtestingsupportbom,eventuatetramsagaorchestratorbom,eventuatetramsagaorchestratorstarterbom,eventuatetramsagaparticipantbom,eventuatetramsagaparticipantstarterbom,eventuatetramsagatestingsupportbom"
OUTPUT=demo.zip

CURL_ARGS_COMMON="$URL -d $LANG -d $BOOT_VERSION -d $BASE_DIR -d $GROUP_ID -d $ARTIFACT_ID -d $NAME -d $DESCRIPTION -d $PACKAGE -d $PACKAGING -d $JAVA_VERSION -d $DEPS"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ public class CustomRepositories {
MavenRepository
.withIdAndUrl("jcenter", "https://jcenter.bintray.com/")
.name("jcenter")
.build());
.build(),
MavenRepository
.withIdAndUrl("snapshots", "https://snapshots.repositories.eventuate.io/repository")
.name("snapshots")
.build());

}
Loading

0 comments on commit 9a6acde

Please sign in to comment.