11<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2- xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3- <modelVersion >4.0.0</modelVersion >
4- <groupId >effective-java-examples</groupId >
5- <artifactId >effective-java-examples</artifactId >
6- <version >1.0</version >
7- <name >effective-java-examples</name >
8- <description >Source code to the book "Effective Java Second Edition" created by Joshua Bloch</description >
9- <url >http://java.sun.com/docs/books/effective/index.html</url >
10- <organization >
11- <name >Joshua Bloch</name >
12- <url >http://java.sun.com/docs/books/effective/index.html</url >
13- </organization >
14- <dependencies >
15- <dependency >
16- <groupId >junit</groupId >
17- <artifactId >junit</artifactId >
18- <version >3.8.1</version >
19- <scope >test</scope >
20- </dependency >
21- </dependencies >
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >effective-java-examples</groupId >
5+ <artifactId >effective-java-examples</artifactId >
6+ <version >1.0</version >
7+ <name >effective-java-examples</name >
8+ <description >Source code to the book "Effective Java Second Edition" created by Joshua Bloch</description >
9+ <url >http://java.sun.com/docs/books/effective/index.html</url >
10+ <organization >
11+ <name >Joshua Bloch</name >
12+ <url >http://java.sun.com/docs/books/effective/index.html</url >
13+ </organization >
14+ <dependencies >
15+ <dependency >
16+ <groupId >junit</groupId >
17+ <artifactId >junit</artifactId >
18+ <version >3.8.1</version >
19+ <scope >test</scope >
20+ </dependency >
21+ </dependencies >
22+ <build >
23+ <plugins >
24+ <plugin >
25+ <artifactId >maven-compiler-plugin</artifactId >
26+ <configuration >
27+ <source >1.7</source >
28+ <target >1.7</target >
29+ </configuration >
30+ </plugin >
31+ </plugins >
32+ </build >
2233</project >
0 commit comments