summaryrefslogtreecommitdiff
path: root/application/pom.xml
diff options
context:
space:
mode:
authorSebastian Baltes <Sebastian.Baltes@uni-bayreuth.de>2025-05-13 21:54:23 +0200
committerSebastian Baltes <Sebastian.Baltes@uni-bayreuth.de>2025-05-13 21:54:23 +0200
commit1f715d85e17d2bf6c8d73df23e12252b993f74ff (patch)
tree3f430f6588e91c3e47793d7cd4f9957eb5bf4619 /application/pom.xml
parent21fc676c1b5a1d026e1489e9c8fabb80e652a50c (diff)
downloadse25-assignment03-1f715d85e17d2bf6c8d73df23e12252b993f74ff.tar.gz
se25-assignment03-1f715d85e17d2bf6c8d73df23e12252b993f74ff.zip
Add code or third assignmentHEADmain
Diffstat (limited to 'application/pom.xml')
-rw-r--r--application/pom.xml80
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