Skip to content

Commit 9b6a3a0

Browse files
cdjolemaibin
authored andcommitted
New module core-java-jvm added (eugenp#6539)
1 parent dc72b8b commit 9b6a3a0

File tree

6 files changed

+48
-1
lines changed

6 files changed

+48
-1
lines changed

core-java-jvm/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
=========
2+
3+
## Core Java JVM Cookbooks and Examples
4+
5+
### Relevant Articles:
6+
- [Method Inlining in the JVM](http://www.baeldung.com/method-inlining-in-the-jvm/)

core-java-jvm/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
<groupId>com.baeldung</groupId>
5+
<artifactId>core-java-jvm</artifactId>
6+
<version>0.1.0-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<name>core-java-jvm</name>
9+
10+
<parent>
11+
<groupId>com.baeldung</groupId>
12+
<artifactId>parent-modules</artifactId>
13+
<version>1.0.0-SNAPSHOT</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>junit</groupId>
19+
<artifactId>junit</artifactId>
20+
<version>${junit.version}</version>
21+
<scope>test</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>org.apache.commons</groupId>
25+
<artifactId>commons-lang3</artifactId>
26+
<version>${commons-lang3.version}</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.assertj</groupId>
30+
<artifactId>assertj-core</artifactId>
31+
<version>${assertj.version}</version>
32+
<scope>test</scope>
33+
</dependency>
34+
</dependencies>
35+
36+
<properties>
37+
<commons-lang3.version>3.5</commons-lang3.version>
38+
<assertj.version>3.6.1</assertj.version>
39+
</properties>
40+
</project>

core-java/src/main/java/com/baeldung/inlining/ConsecutiveNumbersSum.java renamed to core-java-jvm/src/main/java/com/baeldung/inlining/ConsecutiveNumbersSum.java

File renamed without changes.

core-java/src/main/java/com/baeldung/inlining/InliningExample.java renamed to core-java-jvm/src/main/java/com/baeldung/inlining/InliningExample.java

File renamed without changes.

core-java/src/test/java/com/baeldung/inlining/ConsecutiveNumbersSumUnitTest.java renamed to core-java-jvm/src/test/java/com/baeldung/inlining/ConsecutiveNumbersSumUnitTest.java

File renamed without changes.

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,8 @@
393393
<module>core-java-networking</module>
394394
<module>core-java-perf</module>
395395
<module>core-java-sun</module>
396-
<module>core-java</module>
396+
<module>core-java</module>
397+
<module>core-java-jvm</module>
397398
<module>core-scala</module>
398399
<module>couchbase</module>
399400
<module>custom-pmd</module>

0 commit comments

Comments
 (0)