From 61827a363073482294e9cbb488697e2ecd039191 Mon Sep 17 00:00:00 2001 From: Miguel Molina Date: Wed, 9 Aug 2017 10:14:47 +0200 Subject: [PATCH] remove references to maven usage in both README and travis.yml Signed-off-by: Miguel Molina --- .travis.yml | 2 -- java/README.md | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 866622c..019f3c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ language: go -sudo: required go: - 1.8 @@ -18,7 +17,6 @@ matrix: - mkdir -p $GOPATH/src/gopkg.in/src-d/enry.v1 - rsync -az ${TRAVIS_BUILD_DIR}/ $GOPATH/src/gopkg.in/src-d/enry.v1 - go get -v gopkg.in/src-d/enry.v1/... - - sudo apt-get install maven before_script: - cd java diff --git a/java/README.md b/java/README.md index 31b11e6..f89cf5e 100644 --- a/java/README.md +++ b/java/README.md @@ -4,7 +4,7 @@ * `sbt` * `Java` (tested with Java 1.8) -* `maven` install and on the PATH (only for local usage) +* `wget` * `Go` (only for building the shared objects for your operating system) ### Generate jar with Java bindings and shared libraries @@ -15,7 +15,7 @@ You need to do this before exporting the jar and/or testing. make ``` -This will download JNAerator and build its jar to generate the code from the `libenry.h` header file (hence the need for `mvn` installed), it will be placed under `lib`. +This will download JNAerator jar to generate the code from the `libenry.h` header file, it will be placed under `lib`. The shared libraries for your operating system will be built if needed and copied inside the `shared` directory. For IntelliJ and other IDEs remember to mark `shared` folder as sources and add `lib/enry.jar` as library. If you use `sbt` from the command line directly that's already taken care of.