Repository as part of a university project from the Software Engineering course. A simple self-made bug/issuetracker for personal or grouped usage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
902 B

<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>de.denisthiessen.issuetracker</groupId>
<artifactId>issuetracker</artifactId>
<name>Basic Issue Tracker project created for the SE course</name>
<version>1.0.3-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<java.version>8</java.version>
<vaadin.version>14.8.1</vaadin.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.8</version>
</parent>
<modules>
<module>domain</module>
<module>plugin</module>
<module>adapter</module>
<module>application</module>
</modules>
</project>