-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
95 lines (82 loc) · 3.08 KB
/
pom.xml
File metadata and controls
95 lines (82 loc) · 3.08 KB
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
<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.readlearncode</groupId>
<artifactId>java-ee-patterns-and-architecture-introduction</artifactId>
<version>1.0</version>
<name>java-ee-patterns-and-architecture-introduction</name>
<url>www.readlearncode.com</url>
<modules>
<module>master</module>
<module>02_03_start</module>
<module>02_03_end</module>
<module>02_04_start</module>
<module>02_04_end</module>
<module>02_05_start</module>
<module>02_05_end</module>
<module>02_07_start</module>
<module>02_07_end</module>
<module>02_10_start</module>
<module>02_10_end</module>
<module>02_11_start</module>
<module>02_11_end</module>
<module>02_12_start</module>
<module>02_12_end</module>
<module>02_14_start</module>
<module>02_14_end</module>
<module>07_01_start</module>
<module>03_02_start</module>
<module>03_02_end</module>
<module>03_03_start</module>
<module>03_03_end</module>
<module>03_05_start</module>
<module>03_05_end</module>
<module>03_06_start</module>
<module>03_06_end</module>
</modules>
<packaging>pom</packaging>
<properties>
<java.version>1.8</java.version>
<javaee-api.version>8.0</javaee-api.version>
<junit.version>4.12</junit.version>
<assertj-core.version>3.6.2</assertj-core.version>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>${javaee-api.version}</version>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>bean-validation-with-java-ee</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>