11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<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" >
44 <modelVersion >4.0.0</modelVersion >
55 <groupId >com.gazbert</groupId >
66 <artifactId >java-design-patterns-cookbook</artifactId >
77 <packaging >jar</packaging >
88 <version >1.0-SNAPSHOT</version >
99 <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+
1234 <dependencies >
1335 <dependency >
1436 <groupId >junit</groupId >
1537 <artifactId >junit</artifactId >
16- <version >4.8.2 </version >
38+ <version >4.12 </version >
1739 <scope >test</scope >
18- </dependency >
19-
40+ </dependency >
2041 </dependencies >
21-
42+
2243 <build >
2344 <defaultGoal >clean assembly:assembly</defaultGoal >
2445 <plugins >
25-
46+
2647 <plugin >
2748 <artifactId >maven-compiler-plugin</artifactId >
2849 <version >3.1</version >
2950 <configuration >
30- <source >1.7 </source >
31- <target >1.7 </target >
51+ <source >1.8 </source >
52+ <target >1.8 </target >
3253 </configuration >
3354 </plugin >
34-
55+
3556 <plugin >
3657 <artifactId >maven-assembly-plugin</artifactId >
3758 <version >2.4</version >
4364 </plugin >
4465
4566 <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 >
5680 </plugin >
5781
5882 </plugins >
5983 </build >
60-
84+
6185</project >
0 commit comments