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 /domain/pom.xml | |
parent | 21fc676c1b5a1d026e1489e9c8fabb80e652a50c (diff) | |
download | se25-assignment03-main.tar.gz se25-assignment03-main.zip |
Diffstat (limited to 'domain/pom.xml')
-rw-r--r-- | domain/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/domain/pom.xml b/domain/pom.xml new file mode 100644 index 0000000..209c91c --- /dev/null +++ b/domain/pom.xml @@ -0,0 +1,22 @@ +<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>domain</artifactId> + + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>${maven.plugin.surefire.version}</version> + </plugin> + </plugins> + </build> + +</project>
\ No newline at end of file |