Skip to content

Commit 83b5897

Browse files
committed
#BAEL-16633 split Core Java 9 module - new Java 9 features
1 parent 4bdc333 commit 83b5897

File tree

36 files changed

+124
-24
lines changed

36 files changed

+124
-24
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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-9-jigsaw</artifactId>
5+
<version>0.2-SNAPSHOT</version>
6+
<name>core-java-9</name>
7+
8+
<parent>
9+
<groupId>com.baeldung</groupId>
10+
<artifactId>parent-modules</artifactId>
11+
<version>1.0.0-SNAPSHOT</version>
12+
<relativePath>../../</relativePath>
13+
</parent>
14+
15+
<build>
16+
<finalName>core-java-9-jigsaw</finalName>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.maven.plugins</groupId>
20+
<artifactId>maven-compiler-plugin</artifactId>
21+
<version>${maven-compiler-plugin.version}</version>
22+
<configuration>
23+
<source>${maven.compiler.source}</source>
24+
<target>${maven.compiler.target}</target>
25+
</configuration>
26+
</plugin>
27+
</plugins>
28+
</build>
29+
30+
<properties>
31+
<maven.compiler.source>1.9</maven.compiler.source>
32+
<maven.compiler.target>1.9</maven.compiler.target>
33+
</properties>
34+
35+
</project>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## Core Java 9
2+
3+
This module contains articles about core Java features that have been introduced in Java 9.
4+
5+
### Relevant Articles:
6+
7+
- [Java 9 New Features](https://www.baeldung.com/new-java-9)
8+
- [Java 9 Variable Handles Demystified](http://www.baeldung.com/java-variable-handles)
9+
- [Exploring the New HTTP Client in Java 9 and 11](http://www.baeldung.com/java-9-http-client)
10+
- [Multi-Release Jar Files](https://www.baeldung.com/java-multi-release-jar)
11+
- [Ahead of Time Compilation (AoT)](https://www.baeldung.com/ahead-of-time-compilation)
12+
- [Introduction to Java 9 StackWalking API](https://www.baeldung.com/java-9-stackwalking-api)
13+
- [Java 9 Platform Logging API](https://www.baeldung.com/java-9-logging-api)
14+
- [Java 9 Reactive Streams](https://www.baeldung.com/java-9-reactive-streams)
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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-9</artifactId>
5+
<version>0.2-SNAPSHOT</version>
6+
<name>core-java-9</name>
7+
8+
<parent>
9+
<groupId>com.baeldung</groupId>
10+
<artifactId>parent-modules</artifactId>
11+
<version>1.0.0-SNAPSHOT</version>
12+
<relativePath>../../</relativePath>
13+
</parent>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.jayway.awaitility</groupId>
18+
<artifactId>awaitility</artifactId>
19+
<version>${awaitility.version}</version>
20+
<scope>test</scope>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.assertj</groupId>
24+
<artifactId>assertj-core</artifactId>
25+
<version>${assertj.version}</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.google.guava</groupId>
30+
<artifactId>guava</artifactId>
31+
<version>${guava.version}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.junit.platform</groupId>
35+
<artifactId>junit-platform-runner</artifactId>
36+
<version>${junit.platform.version}</version>
37+
<scope>test</scope>
38+
</dependency>
39+
</dependencies>
40+
41+
<build>
42+
<finalName>core-java-9</finalName>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-compiler-plugin</artifactId>
47+
<version>${maven-compiler-plugin.version}</version>
48+
<configuration>
49+
<source>${maven.compiler.source}</source>
50+
<target>${maven.compiler.target}</target>
51+
</configuration>
52+
</plugin>
53+
</plugins>
54+
</build>
55+
56+
<pluginRepositories>
57+
<pluginRepository>
58+
<id>apache.snapshots</id>
59+
<url>http://repository.apache.org/snapshots/</url>
60+
</pluginRepository>
61+
</pluginRepositories>
62+
63+
<properties>
64+
<!-- testing -->
65+
<assertj.version>3.10.0</assertj.version>
66+
<junit.platform.version>1.2.0</junit.platform.version>
67+
<awaitility.version>1.7.0</awaitility.version>
68+
<maven.compiler.source>1.9</maven.compiler.source>
69+
<maven.compiler.target>1.9</maven.compiler.target>
70+
<guava.version>25.1-jre</guava.version>
71+
</properties>
72+
73+
</project>

0 commit comments

Comments
 (0)