forked from viritin/flow-viritin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
131 lines (116 loc) · 4.36 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?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.7</version>
<relativePath />
</parent>
<groupId>in.virit</groupId>
<artifactId>viritin</artifactId>
<version>2.10.5-SNAPSHOT-rjm</version>
<name>Flow Viritin</name>
<packaging>jar</packaging>
<description>General purpose helpers for Vaadin Flow users.</description>
<properties>
<vaadin.version>24.5.3</vaadin.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<organization>
<name>Viritin</name>
</organization>
<url>https://github.com/viritin/flow-viritin</url>
<developers>
<developer>
<name>Matti Tahvonen</name>
</developer>
</developers>
<scm>
<url>https://github.com/viritin/flow-viritin</url>
<connection>scm:git:git://github.com/viritin/flow-viritin.git</connection>
<developerConnection>scm:git:ssh://git@github.com:/viritin/flow-viritin.git</developerConnection>
<tag>viritin-2.10.2</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/viritin/flow-viritin/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<!-- Enable if needed, faster starts/restarts without
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>copilot</artifactId>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
<scope>test</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>8.0.1.Final</version>
<scope>test</scope>
</dependency>
<!-- Markdown support for RichText, this IntelliJ teams library is faster and better than the original unmaintained Google library that was used before, can be safely excluded if Markdown usage not needed. -->
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark</artifactId>
<version>0.64.8</version>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<version>3.0.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.glassfish.expressly</groupId>
<artifactId>expressly</artifactId>
<version>5.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<scope>test</scope>
</dependency>
<!--Nullability annotations-->
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<version>2.12.2</version>
</plugin>
</plugins>
</build>
</project>