-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
98 changed files
with
2,838 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
stream-compositions/cursors/transaction-cursor/src/test/resources/application.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
spring: | ||
cloud: | ||
config: | ||
enabled: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
109 changes: 109 additions & 0 deletions
109
stream-compositions/events/legal-entity-ingress/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<artifactId>events</artifactId> | ||
<groupId>com.backbase.stream.compositions</groupId> | ||
<version>4.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>com.backbase.stream.compositions.events</groupId> | ||
<artifactId>legal-entity-ingress</artifactId> | ||
|
||
<name>Stream :: Compositions :: Events :: Legal Entity</name> | ||
|
||
<properties> | ||
<findMainClass.skip>true</findMainClass.skip> | ||
<spring-boot.repackage.skip>true</spring-boot.repackage.skip> | ||
<sonar.skip>true</sonar.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.backbase.buildingblocks</groupId> | ||
<artifactId>events</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-lang</groupId> | ||
<artifactId>commons-lang</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<finalName>${project.artifactId}</finalName> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.backbase.codegen</groupId> | ||
<artifactId>jsonschema-events-maven-plugin</artifactId> | ||
<version>${ssdk.version}</version> | ||
<executions> | ||
<execution> | ||
<id>generate-ingress-events</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>events-generation</goal> | ||
</goals> | ||
<configuration> | ||
<packageVersion>1</packageVersion> | ||
<useJavaTime>true</useJavaTime> | ||
<outputFile>${project.basedir}/target/generated-sources/jsonschema-events</outputFile> | ||
<inputFile>${project.basedir}/src/main/resources/events/ingress</inputFile> | ||
<!-- The packageName should not contain com.backbase as that is already the default value of the basePackageName --> | ||
<packageName>stream.compositions.events.ingress</packageName> | ||
</configuration> | ||
</execution> | ||
<!-- <execution>--> | ||
<!-- <id>generate-egress-events</id>--> | ||
<!-- <goals>--> | ||
<!-- <goal>events-generation</goal>--> | ||
<!-- </goals>--> | ||
<!-- <phase>generate-sources</phase>--> | ||
<!-- <configuration>--> | ||
<!-- <packageVersion>1</packageVersion>--> | ||
<!-- <useJavaTime>true</useJavaTime>--> | ||
<!-- <outputFile>${project.basedir}/target/generated-sources/jsonschema-events</outputFile>--> | ||
<!-- <inputFile>${project.basedir}/src/main/resources/events/egress</inputFile>--> | ||
<!-- <!– The packageName should not contain com.backbase as that is already the default value of the basePackageName –>--> | ||
<!-- <packageName>stream.compositions.events.egress</packageName>--> | ||
<!-- </configuration>--> | ||
<!-- </execution>--> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>add-source</id> | ||
<goals> | ||
<goal>add-source</goal> | ||
</goals> | ||
<phase>generate-sources</phase> | ||
<configuration> | ||
<sources> | ||
<source>${project.build.directory}/generated-sources/annotations</source> | ||
<source>${project.build.directory}/generated-sources/jsonschema-events</source> | ||
</sources> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>add-resource</id> | ||
<goals> | ||
<goal>add-resource</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<resources> | ||
<resource> | ||
<directory>${project.build.directory}/generated-resources</directory> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.