Skip to content

Commit

Permalink
Merge commit 'e36be5ec03c6803d7f60f54f2e55a2505fbb96ca' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mchitre committed Dec 18, 2018
2 parents 345f233 + e36be5e commit 60efccc
Show file tree
Hide file tree
Showing 15 changed files with 8,380 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
.DS_Store
.gradle

*.o
*.a
*.pyc

tmp
logs
build
*.o
*.a
test_fjage
*.pyc
node_modules
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
language: java
jdk:
- oraclejdk8
- openjdk8
install: true
cache:
directories:
- $HOME/.npm
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
env:
- NODE_VERSION=10 CC=clang CXX=clang++
before_install:
- nvm install $NODE_VERSION
before_script:
- npm ci
notifications:
slack:
secure: QAm3ehwD1y1CQatjEB1aQ/oGJhLGMnsmlqehbT7V+KVq15hBeDZMKZocsmPMs+CwfXwSbYOeGSOtMigKTDVJXy+YmHaU4btO6JJxZwKB+HQBofgG2KO9/Ak/WPhBhqA9eJJzowjzHv/dVYvtWRRPriD9yJ8vv+2ZDC56cY06OZdWJxau3hTX0XAAJNPOXeVHXWmfORwIOQR5r5nGlYNhwbbuuPDlKLbvIaZ+5X3XHyNNgi+S+4nB8utrgEYumq8stgXDeZL8lS8rGeqCLt4RNrOBTw3UUIlPCZMnyq75BDtBRPs9bWTIFv3XqTWqBmvWY/OVQKRe6tc66dleRRc0+6xd5w5yNV44t8zsUbgpFs02+4mHbEGrrlXpJ0j0OZzBa5xWX5THhSgvdhw/rl/YAP57sLC6amsccLKoO/sBaEu73pXxafJ0C1un8gNAgVfIISsyplikSBzS9lVrUZLNnrAuESpC/kwPH4SGj0m3MxitVDtGgmM4+MINA0XAT8IJqiMnEagshbwKHBqWzQAJbMjlgI8rxlMZr1BXCfxf9mffxPpgsLKlM9jbG/JVmeQg8xcxedfkxsDm0FZ4egMiaHKv8kbdgldx8jruuIDcjWn7115hXpE2q1U4dcUnzTVGX1rG3gcTOqBVv+80+mGG8tmzX54iOwkB2XszUWIWMbg=
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ compileGroovy {
options.compilerArgs << "-Xlint:-options"
}

test {
systemProperties project.properties.subMap(["manualJSTest"])
}

tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
Expand Down
317 changes: 317 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "fjage",
"version": "1.5.0",
"description": "Framework for Java and Groovy Agents",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"puppeteer": "^1.11.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/org-arl/fjage.git"
},
"author": "[Mandar Chitre] (http://www.chitre.net)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/org-arl/fjage/issues"
},
"homepage": "https://github.com/org-arl/fjage#readme"
}
Loading

0 comments on commit 60efccc

Please sign in to comment.