Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #104 from launchdarkly/pk/ch26807/fix-fossa-integr…
Browse files Browse the repository at this point in the history
…ation-for-java-android-sdks

fix fossa integration
  • Loading branch information
pkaeding authored Nov 17, 2018
2 parents ff545df + fc24db5 commit f04728d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
version: 2
jobs:
build:
branches:
ignore:
- gh-pages
docker:
- image: circleci/java
- image: redis
Expand All @@ -22,3 +19,27 @@ jobs:
path: ~/junit
- store_artifacts:
path: ~/junit
fossa:
docker:
- image: circleci/java
steps:
- checkout
- run: cp gradle.properties.example gradle.properties
- run: ./gradlew dependencies
- run: curl https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash
- run: fossa analyze

workflows:
version: 2
test:
jobs:
- build:
filters:
branches:
ignore:
- gh-pages
- fossa:
filters:
branches:
ignore:
- gh-pages
11 changes: 11 additions & 0 deletions .fossa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 1

cli:
server: https://app.fossa.io
analyze:
modules:
- name: java-client
path: .
type: gradle
options:
task: dependencies

0 comments on commit f04728d

Please sign in to comment.