Skip to content

Commit baa8c72

Browse files
committed
Move the Memory Layout Codebase to a new Module
1 parent abad488 commit baa8c72

4 files changed

Lines changed: 49 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Core Java JVM Cookbooks and Examples
2+
3+
This module contains articles about working with the Java Virtual Machine (JVM).
4+
5+
### Relevant Articles:
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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-java-jvm-2</artifactId>
7+
<version>0.1.0-SNAPSHOT</version>
8+
<name>core-java-jvm-2</name>
9+
<packaging>jar</packaging>
10+
11+
<parent>
12+
<groupId>com.baeldung.core-java-modules</groupId>
13+
<artifactId>core-java-modules</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<relativePath>../</relativePath>
16+
</parent>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>junit</groupId>
21+
<artifactId>junit</artifactId>
22+
<version>${junit.version}</version>
23+
<scope>test</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.assertj</groupId>
27+
<artifactId>assertj-core</artifactId>
28+
<version>${assertj.version}</version>
29+
<scope>test</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.openjdk.jol</groupId>
33+
<artifactId>jol-core</artifactId>
34+
<version>${jol-core.version}</version>
35+
</dependency>
36+
</dependencies>
37+
38+
<properties>
39+
<assertj.version>3.6.1</assertj.version>
40+
<jol-core.version>0.10</jol-core.version>
41+
</properties>
42+
43+
</project>

core-java-modules/core-java-jvm/src/test/java/com/baeldung/memlayout/MemoryLayoutUnitTest.java renamed to core-java-modules/core-java-jvm-2/src/test/java/com/baeldung/memlayout/MemoryLayoutUnitTest.java

File renamed without changes.

core-java-modules/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<module>core-java-jndi</module>
8181
<!-- <module>core-java-jpms</module> --> <!-- We haven't upgraded to java 10. Fixing in BAEL-10841 -->
8282
<module>core-java-jvm</module>
83+
<module>core-java-jvm-2</module>
8384

8485
<module>core-java-lambdas</module>
8586
<module>core-java-lang</module>

0 commit comments

Comments
 (0)