File tree Expand file tree Collapse file tree
src/test/java/com/baeldung/memlayout Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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:
Original file line number Diff line number Diff line change 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 >
File renamed without changes.
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments