From 75fcab2ca4ebbe7b12b6b8832eedc8062e94c081 Mon Sep 17 00:00:00 2001 From: Tobias Friedrich Date: Thu, 21 Mar 2019 23:28:34 +0100 Subject: [PATCH] #30 Add simple Travis build --- .travis.yml | 3 +++ README.md | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a1242d2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: java +jdk: openjdk11 +script: mvn clean package -B -V diff --git a/README.md b/README.md index dd59ae4..6053933 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Deptective +[![Build Status](https://img.shields.io/travis/moditect/deptective.svg)](https://travis-ci.org/moditect/deptective) + 🕵️ Deptective is a plug-in for the Java compiler (_javac_) that validates the dependencies amongst a project's packages against a description of allowed dependences and fails the compilation when detecting any unintentional dependencies.