You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2018/03/31 23:06:32 UTC

[1/2] logging-log4j-scala git commit: Add rat plugin

Repository: logging-log4j-scala
Updated Branches:
  refs/heads/sbt 9c4d5484c -> a6af7ecc1


Add rat plugin


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/commit/34e39f8c
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/34e39f8c
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/34e39f8c

Branch: refs/heads/sbt
Commit: 34e39f8cd172b9ef78b208d910667945234defa5
Parents: 9c4d548
Author: Matt Sicker <bo...@gmail.com>
Authored: Sat Mar 31 18:03:13 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Sat Mar 31 18:03:13 2018 -0500

----------------------------------------------------------------------
 project/plugins.sbt        | 2 ++
 src/asciidoctor/index.adoc | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/34e39f8c/project/plugins.sbt
----------------------------------------------------------------------
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 0d7f53e..3007056 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -18,4 +18,6 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
 addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.8")
 addSbtPlugin("com.typesafe.sbt" % "sbt-license-report" % "1.2.0")
 addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.2")
+addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.0")
 //addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.3")
+addSbtPlugin("org.musigma" % "sbt-rat" % "0.1")

http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/34e39f8c/src/asciidoctor/index.adoc
----------------------------------------------------------------------
diff --git a/src/asciidoctor/index.adoc b/src/asciidoctor/index.adoc
index 33e0ceb..913809b 100644
--- a/src/asciidoctor/index.adoc
+++ b/src/asciidoctor/index.adoc
@@ -31,7 +31,7 @@ TODO:
 * Apache logo
 * Downloads page
 * License report
-* Other reports?
 * ScalaDocs links
 * Project links
+* Dependency report
 ////
\ No newline at end of file


[2/2] logging-log4j-scala git commit: Add rat checks to jenkins pipeline

Posted by ma...@apache.org.
Add rat checks to jenkins pipeline


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/commit/a6af7ecc
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/a6af7ecc
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/a6af7ecc

Branch: refs/heads/sbt
Commit: a6af7ecc166c2fdd439a0cc69833002d5680db36
Parents: 34e39f8
Author: Matt Sicker <bo...@gmail.com>
Authored: Sat Mar 31 18:06:25 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Sat Mar 31 18:06:25 2018 -0500

----------------------------------------------------------------------
 Jenkinsfile | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/a6af7ecc/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 90b3893..c9d0812 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
         stage('Build') {
             steps {
                 ansiColor('xterm') {
+                    sh './sbt -batch auditCheck'
                     sh './sbt -batch "+ compile"'
                 }
             }
@@ -34,6 +35,7 @@ pipeline {
         stage('Test') {
             steps {
                 ansiColor('xterm') {
+                    sh './sbt -batch Test/auditCheck'
                     sh './sbt -batch "+ test"'
                 }
             }