Skip to content

Commit

Permalink
update README; update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
gcnyin committed Sep 13, 2020
1 parent 1e515fe commit 388258e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# raw-nio

Raw Java NIO practice

## Requirements

- Java 11
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {
}

java {
sourceCompatibility = JavaVersion.VERSION_14
targetCompatibility = JavaVersion.VERSION_14
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

repositories {
Expand All @@ -22,11 +22,11 @@ dependencies {
}

application {
mainClassName = 'com.github.gcnyin.rawnio.echodemo.EchoServerApp'
mainClassName = 'com.github.gcnyin.rawnio.echodemo.EchoServer'
}

jar {
manifest {
attributes("Main-Class": "com.github.gcnyin.rawnio.echodemo.EchoServerApp")
attributes("Main-Class": "com.github.gcnyin.rawnio.echodemo.EchoServer")
}
}

0 comments on commit 388258e

Please sign in to comment.