Maven and Gradle samples for dataflow server

- Minimal and fully working sample of building custom
  dataflow server adding mysql driver.
This commit is contained in:
Janne Valkealahti
2019-07-26 07:31:14 +01:00
parent dbbf78588b
commit 2d0c3cd5d7
19 changed files with 1066 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# Examples for Custom Data Flow Server Build
This is an example for both gradle and maven to build a custom Data Flow Server
adding MySQL driver to a build.
To verify these example builds, you can run `build-and-compare` which will
print differences compared to main releases server jar. If successful you
should see executable jars to differ only with added mysql driver.
```
$ ./test/build-and-compare
Diff gradle build
95a96
> BOOT-INF/lib/mysql-connector-java-8.0.16.jar
Diff maven build
95a96
> BOOT-INF/lib/mysql-connector-java-8.0.16.jar
```