Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java 11 #569

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ com.spotify.dbeam.options.JdbcExportPipelineOptions:

#### Input Avro schema file

If provided an input Avro schema file, dbeam will read input schema file and use some of the
If provided an input Avro schema file, dbeam will read input schema file and use some
properties when an output Avro schema is created.

#### Following fields will be propagated from input into output schema:
Expand Down Expand Up @@ -236,8 +236,11 @@ java \
...
```

## Using as a library
## Java version

dbeam expects Java runtime version 11 for execution and JDK >=11 for development.

## Using as a library

To include DBeam library in a mvn project add the following dependency in `pom.xml`:

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
</distributionManagement>

<properties>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.release>11</maven.compiler.release>
<auto-value.version>1.9</auto-value.version>
<avro.version>1.11.1</avro.version>
<bouncycastle.version>1.70</bouncycastle.version>
Expand Down