Skip to content

Commit 98f7d3a

Browse files
shubhi22maibin
authored andcommitted
BAEL-3404 Creating new OOP module (eugenp#8152)
1 parent 7bdfb9f commit 98f7d3a

File tree

3 files changed

+64
-1
lines changed

3 files changed

+64
-1
lines changed

core-java-modules/core-java-lang-oop-3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ This module contains articles about Object-oriented programming (OOP) in Java
1515
- [Java Interfaces](https://www.baeldung.com/java-interfaces)
1616
- [Static and Dynamic Binding in Java](https://www.baeldung.com/java-static-dynamic-binding)
1717
- [Methods in Java](https://www.baeldung.com/java-methods)
18-
- [[<-- Prev]](/core-java-modules/core-java-lang-oop-2)
18+
- [[<-- Prev]](/core-java-modules/core-java-lang-oop-2) [[More -->]](/core-java-modules/core-java-lang-oop-4)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Core Java Lang OOP (Part 4)
2+
3+
This module contains articles about Object-oriented programming (OOP) in Java
4+
5+
### Relevant Articles:
6+
- [[<-- Prev]](/core-java-modules/core-java-lang-oop-3)
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<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+
<artifactId>core-java-lang-oop-4</artifactId>
5+
<version>0.1.0-SNAPSHOT</version>
6+
<name>core-java-lang-oop-4</name>
7+
<packaging>jar</packaging>
8+
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-java</artifactId>
12+
<version>0.0.1-SNAPSHOT</version>
13+
<relativePath>../../parent-java</relativePath>
14+
</parent>
15+
16+
<dependencies>
17+
<!-- logging -->
18+
<dependency>
19+
<groupId>log4j</groupId>
20+
<artifactId>log4j</artifactId>
21+
<version>${log4j.version}</version>
22+
</dependency>
23+
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
24+
<groupId>org.slf4j</groupId>
25+
<artifactId>log4j-over-slf4j</artifactId>
26+
<version>${org.slf4j.version}</version>
27+
</dependency>
28+
<!-- test scoped -->
29+
<dependency>
30+
<groupId>org.assertj</groupId>
31+
<artifactId>assertj-core</artifactId>
32+
<version>${assertj-core.version}</version>
33+
<scope>test</scope>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.h2database</groupId>
37+
<artifactId>h2</artifactId>
38+
<version>${h2.version}</version>
39+
<scope>test</scope>
40+
</dependency>
41+
</dependencies>
42+
43+
<build>
44+
<finalName>core-java-lang-oop-4</finalName>
45+
<resources>
46+
<resource>
47+
<directory>src/main/resources</directory>
48+
<filtering>true</filtering>
49+
</resource>
50+
</resources>
51+
</build>
52+
53+
<properties>
54+
<assertj-core.version>3.10.0</assertj-core.version>
55+
</properties>
56+
57+
</project>

0 commit comments

Comments
 (0)