This repository has been archived by the owner on Jun 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
180 lines (164 loc) · 6.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?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>com.github.naoghuman</groupId>
<artifactId>lib-validation</artifactId>
<version>0.3.0-SNAPSHOT</version> <!-- -SNAPSHOT -->
<packaging>jar</packaging>
<description>`Lib-Validation` is a library for `easy` validating in a [JavaFX] & [Maven] application during the integration from [Bean Validation 2.0] (JSR 380).
Plz see for more informations: https://github.com/Naoghuman/lib-validation</description>
<name>Lib-Validation</name>
<inceptionYear>2018</inceptionYear>
<url>https://github.com/Naoghuman/lib-validation.git</url>
<developers>
<developer>
<email>peter.rogge@yahoo.de</email>
<id>Naoghuman</id>
<name>Peter Rogge</name>
<timezone>+1</timezone>
<url>https://github.com/Naoghuman/lib-validation.git</url>
</developer>
</developers>
<licenses>
<license>
<name>The GNU General Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.en.html</url>
<distribution>repo</distribution>
<comments>The GNU General Public License is a free, copyleft license for software and other kinds of works.</comments>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://github.com:Naoghuman/lib-validation.git</connection>
<developerConnection>scm:git:ssh://git@github.com:Naoghuman/lib-validation.git</developerConnection>
<url>https://github.com/Naoghuman/lib-validation.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<!-- for RELEASE
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<!-- for RELEASE
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
-->
</plugin>
<!-- for RELEASE
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
-->
</plugins>
<resources>
<!--
Hint: Add here the suffixes from the files with should be in the
jar included.
-->
<!--<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>-->
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
<dependencies>
<!--
Per the JSR 380 specification, the validation-api dependency contains the
standard validation APIs which can be used with the following dependencies.
Hint:
A quick note here is that hibernate-validator is entirely separate from the
persistence aspects of Hibernate and by adding it as a dependency, we’re not
adding these persistence aspects into the project.
-->
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.7.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
<version>6.0.7.Final</version>
</dependency>
<!--
JSR 380 provides support for variable interpolation, allowing expressions
inside the violation messages.
To parse these expressions, we must add a dependency on both the expression
language API and an implementation of that API. GlassFish provides this
reference implementation:
-->
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>javax.el</artifactId>
<version>2.2.6</version>
</dependency>
<!--
Test dependencies.
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>