An open API service indexing awesome lists of open source software.

https://github.com/labs64/code-analysis


https://github.com/labs64/code-analysis

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

Innovative License Management Solution

# [Labs64](https://www.labs64.com) Java Code Style

[![Labs64 Java Code Style - CI](https://github.com/Labs64/code-analysis/actions/workflows/code-analysis-ci.yml/badge.svg)](https://github.com/Labs64/code-analysis/actions/workflows/code-analysis-ci.yml)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.labs64.commons/code-analysis/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.labs64.commons/code-analysis)
[![Apache License 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Labs64/code-analysis/blob/master/LICENSE)
[![Labs64 @ LinkedIn](https://img.shields.io/badge/Labs64-0077B5.svg?logo=LinkedIn)](https://www.linkedin.com/company/labs64-gmbh/)

## Quick Start

The recommended way to get started using [`code-analysis`](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.labs64.commons%22) in your project is with a dependency management system – the snippets below can be copied and pasted into your build configuration.

Maven:
```xml

org.apache.maven.plugins
maven-checkstyle-plugin
${maven-checkstyle-plugin.version}

labs64-code-analysis/checkstyle.xml
false



checkstyle

check





com.labs64.commons
code-analysis
${labs64.code-analysis.version}

com.github.spotbugs
spotbugs-maven-plugin
${spotbugs-maven-plugin.version}

labs64-code-analysis/spotbugs.xml
false



spotbugs

check





com.labs64.commons
code-analysis
${labs64.code-analysis.version}

org.apache.maven.plugins
maven-pmd-plugin
${maven-pmd-plugin.version}


labs64-code-analysis/pmd.xml

false
true



pmd

check





com.labs64.commons
code-analysis
${labs64.code-analysis.version}

```