-
Notifications
You must be signed in to change notification settings - Fork 4
/
pom.xml
59 lines (42 loc) · 1.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<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>
<!-- Dear students, please *do not* change the following metadata. Thanks! -->
<artifactId>lab-kickstart</artifactId>
<version>5.2.0-SNAPSHOT</version>
<name>Software Engineering Lab - Kickstart</name>
<description>Template project for the ST lab</description>
<url>https://github.com/st-tu-dresden/kickstart</url>
<parent>
<groupId>de.tudresden.inf.st.lab</groupId>
<artifactId>st-lab-parent</artifactId>
<version>5.0.0</version>
<relativePath />
</parent>
<properties>
<java.version>21</java.version>
<sonar.host.url>${env.STLAB_SONAR_HOST_URL}</sonar.host.url>
<sonar.token>${env.STLAB_SONAR_LOGIN}</sonar.token>
<argLine>-Xmx1G</argLine>
</properties>
<dependencies>
<!--
Additional project dependencies go here.
BUT PLEASE NOTE!
The parent pom that is referenced above already includes most libraries
necessary for the lab: Spring, Salespoint, Hibernate, JUnit, etc.
You can list the current dependencies and their versions using the
`mvn dependency:list` command.
Use Maven Central for package search (https://search.maven.org/).
-->
</dependencies>
<repositories>
<repository>
<id>salespointframework</id>
<url>https://www.st.inf.tu-dresden.de/SalesPoint/repository</url>
</repository>
</repositories>
<scm>
<url>https://github.com/st-tu-dresden/kickstart</url>
</scm>
</project>