Skip to content

Commit e37ec50

Browse files
author
Nicolai Parlog
committed
Initialize project
0 parents  commit e37ec50

File tree

4 files changed

+82
-0
lines changed

4 files changed

+82
-0
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Eclipse
2+
.metadata
3+
bin/
4+
tmp/
5+
*.tmp
6+
*.bak
7+
*.swp
8+
*~.nib
9+
local.properties
10+
.settings/
11+
.loadpath
12+
.recommenders
13+
.project
14+
.classpath
15+
*.launch
16+
17+
# JetBrains
18+
.idea/
19+
*.iml
20+
*.iws
21+
/out/
22+
23+
# Maven
24+
25+
target/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 CodeFX
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Effective Java
2+
3+
This project contains examples for my [YouTube series on _Effective Java, Third Edition_](https://www.youtube.com/playlist?list=PL_-IO8LOLuNqUzvXfRCWRRJBswKEbLhgN).
4+
5+
Related links:
6+
7+
* affiliate links to _Effective Java, Third Edition_:
8+
* [InformIT](https://click.linksynergy.com/deeplink?id=kGJiVJGY2UU&mid=24808&murl=http%3A%2F%2Fwww.informit.com%2Fstore%2Feffective-java-9780134685991) (the publisher)
9+
* [Amazon USA](https://amzn.to/2QI0D0S)
10+
* [Amazon Germany](https://amzn.to/2OvsWOu)
11+
* visit [courses.codefx.org](http://courses.codefx.org) for online courses on Java

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.codefx.demo</groupId>
8+
<artifactId>effective-java</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>10</maven.compiler.source>
13+
<maven.compiler.target>10</maven.compiler.target>
14+
</properties>
15+
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
<version>3.8.0</version>
21+
</plugin>
22+
</plugins>
23+
</build>
24+
25+
</project>

0 commit comments

Comments
 (0)