[BAEL-1951]create new module core-java-nio and adding java filechannel examples (#6899)

* create new module core-java-nio and adding filechannel

* updated readme with NIO article details

* fixed typo

* Remore unused dependencies from pom.xml

* fixed build issue

* moving into core-java-modules folder

* remove unused plugins from pom.xml

* remove junk file and update readme

* removing readme.md

* change in indentation. remove tabs to spaces
This commit is contained in:
anuraggoyal1
2019-05-22 01:54:38 +05:30
committed by ashleyfrieze
parent 4a46d484cf
commit 49304324ad
8 changed files with 205 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>core-java-nio</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>core-java-nio</name>
<packaging>jar</packaging>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-java</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-java</relativePath>
</parent>
</project>