-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
73 lines (63 loc) · 2.38 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?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>
<parent>
<groupId>in.virit.sb</groupId>
<artifactId>viritin-addon-project-parent</artifactId>
<version>0.0.5</version>
<relativePath />
</parent>
<groupId>in.virit</groupId>
<artifactId>emit-reading-api</artifactId>
<name>Emit Reading API for Vaadin</name>
<version>0.0.6-SNAPSHOT</version>
<packaging>jar</packaging>
<inceptionYear>2024</inceptionYear>
<description>Java/Vaadin API for Emit sport timing gear gear</description>
<url>https://github.com/viritin/emit-reading-api/</url>
<organization>
<name>Viritin</name>
</organization>
<developers>
<developer>
<name>Matti Tahvonen</name>
</developer>
</developers>
<scm>
<url>https://github.com/viritin/emit-reading-api</url>
<connection>scm:git:git://github.com/viritin/emit-reading-api.git</connection>
<developerConnection>scm:git:ssh://[email protected]:/viritin/emit-reading-api.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/viritin/emit-reading-api/issues</url>
</issueManagement>
<licenses>
<license>
<name>GPL-v3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<dependencies>
<!-- Essential Spring & Vaadin deps coming in via parent -->
<dependency>
<groupId>org.parttio</groupId>
<artifactId>velocity-component</artifactId>
<version>0.0.3</version>
</dependency>
<dependency>
<groupId>in.virit</groupId>
<artifactId>viritin</artifactId>
<version>2.8.22</version>
<scope>test</scope>
</dependency>
<!-- Devtools is cool, especially if you don't have JRebel -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>