online-banking-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.adorsys.psd2.sandbox</groupId> <artifactId>online-banking-app</artifactId> <version>5.14</version> </dependency>
<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>de.adorsys.psd2.sandbox</groupId> <artifactId>online-banking</artifactId> <version>5.14</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>online-banking-app</artifactId> <name>online-banking-app</name> <properties> <ruleset.basedir>../..</ruleset.basedir> <ci.build.number>​</ci.build.number> </properties> <dependencies> <!-- project dependencies --> <dependency> <groupId>de.adorsys.psd2.sandbox</groupId> <artifactId>oba-rest-server</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>de.adorsys.psd2.sandbox</groupId> <artifactId>oba-service-impl</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>de.adorsys.psd2.sandbox</groupId> <artifactId>xs2a-cms-starter</artifactId> <version>${project.version}</version> </dependency> <!-- spring dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-websocket</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-messaging</artifactId> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-messaging</artifactId> </dependency> <!-- Sprinfox and swagger UI --> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> </dependency> <!-- Other dependencies --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <!-- logging dependencies --> <!-- test dependencies --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot-dependencies.version}</version> <configuration> <mainClass>de.adorsys.ledgers.oba.app.LedgersXs2aObaApplication</mainClass> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> <execution> <id>build-info</id> <goals> <goal>build-info</goal> </goals> <configuration> <additionalProperties> <java.version>${java.version}</java.version> <build.number>${ci.build.number}</build.number> </additionalProperties> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>