1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
3
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >com.gazbert</groupId >
6
6
<artifactId >java-design-patterns-cookbook</artifactId >
7
7
<packaging >jar</packaging >
8
8
<version >1.0-SNAPSHOT</version >
9
9
<name >Java Design Patterns Cookbook</name >
10
- <url >http://maven.apache.org</url >
11
-
10
+ <description >A cookbook of Design Patterns written in Java.</description >
11
+ <url >http://github.com/gazbert/java-design-patterns</url >
12
+ <inceptionYear >2014</inceptionYear >
13
+
14
+ <licenses >
15
+ <license >
16
+ <name >MIT</name >
17
+ <url >http://opensource.org/licenses/MIT</url >
18
+ </license >
19
+ </licenses >
20
+
21
+ <developers >
22
+ <developer >
23
+ <id >gazbert</id >
24
+ <name >Gareth Jon Lynch</name >
25
+ <url >http://github.com/gazbert/</url >
26
+ <roles >
27
+ <role >architect</role >
28
+ <role >developer</role >
29
+ </roles >
30
+ <timezone >Europe/London</timezone >
31
+ </developer >
32
+ </developers >
33
+
12
34
<dependencies >
13
35
<dependency >
14
36
<groupId >junit</groupId >
15
37
<artifactId >junit</artifactId >
16
- <version >4.8.2 </version >
38
+ <version >4.12 </version >
17
39
<scope >test</scope >
18
- </dependency >
19
-
40
+ </dependency >
20
41
</dependencies >
21
-
42
+
22
43
<build >
23
44
<defaultGoal >clean assembly:assembly</defaultGoal >
24
45
<plugins >
25
-
46
+
26
47
<plugin >
27
48
<artifactId >maven-compiler-plugin</artifactId >
28
49
<version >3.1</version >
29
50
<configuration >
30
- <source >1.7 </source >
31
- <target >1.7 </target >
51
+ <source >1.8 </source >
52
+ <target >1.8 </target >
32
53
</configuration >
33
54
</plugin >
34
-
55
+
35
56
<plugin >
36
57
<artifactId >maven-assembly-plugin</artifactId >
37
58
<version >2.4</version >
43
64
</plugin >
44
65
45
66
<plugin >
46
- <groupId >org.apache.maven.plugins</groupId >
47
- <artifactId >maven-javadoc-plugin</artifactId >
48
- <executions >
49
- <execution >
50
- <id >attach-javadocs</id >
51
- <goals >
52
- <goal >jar</goal >
53
- </goals >
54
- </execution >
55
- </executions >
67
+ <groupId >org.apache.maven.plugins</groupId >
68
+ <artifactId >maven-javadoc-plugin</artifactId >
69
+ <configuration >
70
+ <additionalparam >-Xdoclint:none</additionalparam >
71
+ </configuration >
72
+ <executions >
73
+ <execution >
74
+ <id >attach-javadocs</id >
75
+ <goals >
76
+ <goal >jar</goal >
77
+ </goals >
78
+ </execution >
79
+ </executions >
56
80
</plugin >
57
81
58
82
</plugins >
59
83
</build >
60
-
84
+
61
85
</project >
0 commit comments