|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <!-- The simplest way to build a service with service-sdk-starter-core |
| 6 | + is to use it as a parent in your project’s POM file, and alternative If you |
| 7 | + don’t want to use service-sdk-starter-core as your project’s parent, you |
| 8 | + can declare it as a dependency instead, see pom-as-dependency.xml --> |
| 9 | + <parent> |
| 10 | + <artifactId>service-sdk-starter-core</artifactId> |
| 11 | + <groupId>com.backbase.buildingblocks</groupId> |
| 12 | + <version>14.0.0</version> |
| 13 | + <relativePath /> |
| 14 | + </parent> |
| 15 | + |
| 16 | + <groupId>com.backbase.example</groupId> |
| 17 | + <artifactId>example-service</artifactId> |
| 18 | + <version>1.0.0-SNAPSHOT</version> |
| 19 | + <packaging>war</packaging> |
| 20 | + <name>Backbase :: Digital Banking Services :: example-service</name> |
| 21 | + |
| 22 | + <properties> |
| 23 | + <java.version>11</java.version> |
| 24 | + </properties> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <!-- tag::persistence-dependencies[] --> |
| 28 | + <!--Added for persistence --> |
| 29 | + <dependency> |
| 30 | + <groupId>com.backbase.buildingblocks</groupId> |
| 31 | + <artifactId>persistence</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>com.backbase.buildingblocks</groupId> |
| 35 | + <artifactId>service-sdk-starter-mapping</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-cache</artifactId> |
| 40 | + </dependency> |
| 41 | + <!-- Required for Local testing --> |
| 42 | + <dependency> |
| 43 | + <groupId>com.h2database</groupId> |
| 44 | + <artifactId>h2</artifactId> |
| 45 | + <version>1.4.200</version> |
| 46 | + <scope>runtime</scope> |
| 47 | + </dependency> |
| 48 | + <!-- Required for MySql --> |
| 49 | + <dependency> |
| 50 | + <groupId>mysql</groupId> |
| 51 | + <artifactId>mysql-connector-java</artifactId> |
| 52 | + <scope>runtime</scope> |
| 53 | + </dependency> |
| 54 | + <!-- end::persistence-dependencies[] --> |
| 55 | + |
| 56 | + <dependency> |
| 57 | + <groupId>com.backbase.buildingblocks</groupId> |
| 58 | + <artifactId>service-sdk-starter-test</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <!-- Add dependencies for your services, e.g. BB raml specifications, integration clients --> |
| 63 | + |
| 64 | + <!-- Uncomment the following dependencies if DBS inter-service communication is needed --> |
| 65 | + <!-- |
| 66 | + <dependency> |
| 67 | + <groupId>com.backbase.buildingblocks</groupId> |
| 68 | + <artifactId>communication</artifactId> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>com.backbase.buildingblocks</groupId> |
| 72 | + <artifactId>auth-security</artifactId> |
| 73 | + </dependency> |
| 74 | + --> |
| 75 | + </dependencies> |
| 76 | + |
| 77 | +</project> |
0 commit comments