Skip to content

Commit

Permalink
feat: adding process app and integration app
Browse files Browse the repository at this point in the history
  • Loading branch information
Hafflgav committed Aug 21, 2024
1 parent ba2f244 commit dcd4502
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
20 changes: 20 additions & 0 deletions connector-workshop/kyc-process-app/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>io.miragon.consulting</groupId>
<artifactId>connector-workshop</artifactId>
<version>1.0.0</version>
</parent>

<artifactId>kyc-process-app</artifactId>

<properties>
<maven.compiler.source>19</maven.compiler.source>
<maven.compiler.target>19</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
20 changes: 20 additions & 0 deletions connector-workshop/notifiy-customer-integration/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>io.miragon.consulting</groupId>
<artifactId>connector-workshop</artifactId>
<version>1.0.0</version>
</parent>

<artifactId>notifiy-customer-integration</artifactId>

<properties>
<maven.compiler.source>19</maven.compiler.source>
<maven.compiler.target>19</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
5 changes: 5 additions & 0 deletions connector-workshop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
</parent>

<artifactId>connector-workshop</artifactId>
<packaging>pom</packaging>
<modules>
<module>kyc-process-app</module>
<module>notifiy-customer-integration</module>
</modules>

<properties>
<maven.compiler.source>19</maven.compiler.source>
Expand Down

0 comments on commit dcd4502

Please sign in to comment.