Skip to content

Commit 0dfecf0

Browse files
authored
Merge pull request eugenp#8451 from Maiklins/BAEL-19882
BAEL-19882
2 parents 28cc4b3 + a11301b commit 0dfecf0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+79
-0
lines changed
Lines changed: 10 additions & 0 deletions
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+
<artifactId>core-kotlin-lang-oop-2</artifactId>
7+
<name>core-kotlin-lang-oop-2</name>
8+
<packaging>jar</packaging>
9+
10+
<parent>
11+
<groupId>com.baeldung.core-kotlin-modules</groupId>
12+
<artifactId>core-kotlin-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>org.assertj</groupId>
19+
<artifactId>assertj-core</artifactId>
20+
<version>${assertj.version}</version>
21+
<scope>test</scope>
22+
</dependency>
23+
</dependencies>
24+
25+
</project>

core-kotlin/src/main/kotlin/com/baeldung/generic/Reified.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/generic/Reified.kt

File renamed without changes.

core-kotlin/src/main/kotlin/com/baeldung/kotlin/delegates/Database.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/Database.kt

File renamed without changes.

core-kotlin/src/main/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegate.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegate.kt

File renamed without changes.

core-kotlin/src/main/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegation.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegation.kt

File renamed without changes.

core-kotlin/src/main/kotlin/com/baeldung/kotlin/delegates/User.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/User.kt

File renamed without changes.

core-kotlin/src/test/kotlin/com/baeldung/kotlin/GenericsTest.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/GenericsTest.kt

File renamed without changes.

core-kotlin/src/test/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegatesTest.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegatesTest.kt

File renamed without changes.

core-kotlin/src/test/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegationTest.kt renamed to core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegationTest.kt

File renamed without changes.

0 commit comments

Comments
 (0)