Skip to content

Commit 77d193e

Browse files
author
Markus Hanses
committed
Source Level set to 1.7
IntelliJ files ignored.
1 parent 8c56e6f commit 77d193e

2 files changed

Lines changed: 34 additions & 21 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ target/
22
bin/
33
.project
44
.settings/
5-
.classpath
5+
.classpath
6+
.idea
7+
*.iml

pom.xml

Lines changed: 31 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,33 @@
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

Comments
 (0)