diff options
author | Sebastian Baltes <Sebastian.Baltes@uni-bayreuth.de> | 2025-05-13 21:54:23 +0200 |
---|---|---|
committer | Sebastian Baltes <Sebastian.Baltes@uni-bayreuth.de> | 2025-05-13 21:54:23 +0200 |
commit | 1f715d85e17d2bf6c8d73df23e12252b993f74ff (patch) | |
tree | 3f430f6588e91c3e47793d7cd4f9957eb5bf4619 /application/pom.xml | |
parent | 21fc676c1b5a1d026e1489e9c8fabb80e652a50c (diff) | |
download | se25-assignment03-1f715d85e17d2bf6c8d73df23e12252b993f74ff.tar.gz se25-assignment03-1f715d85e17d2bf6c8d73df23e12252b993f74ff.zip |
Diffstat (limited to 'application/pom.xml')
-rw-r--r-- | application/pom.xml | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml new file mode 100644 index 0000000..6754a87 --- /dev/null +++ b/application/pom.xml @@ -0,0 +1,80 @@ +<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.unibayreuth.se</groupId> + <artifactId>parent</artifactId> + <version>0.0.1</version> + </parent> + + <artifactId>application</artifactId> + + <properties> + <start-class>de.unibayreuth.se.campuscoffee.Application</start-class> + </properties> + + <dependencies> + <dependency> + <groupId>de.unibayreuth.se</groupId> + <artifactId>domain</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>de.unibayreuth.se</groupId> + <artifactId>api</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>de.unibayreuth.se</groupId> + <artifactId>data</artifactId> + <version>${project.version}</version> + <scope>runtime</scope> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-testcontainers</artifactId> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>postgresql</artifactId> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>junit-jupiter</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>io.rest-assured</groupId> + <artifactId>rest-assured</artifactId> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <skip>false</skip> + </configuration> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>${maven.plugin.surefire.version}</version> + </plugin> + </plugins> + </build> +</project>
\ No newline at end of file |