Trellis LDP Build Tools

Common Build Tools for Trellis LDP projects

License

License

Categories

Categories

Build Tools
GroupId

GroupId

org.trellisldp
ArtifactId

ArtifactId

trellis-build-tools
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

Trellis LDP Build Tools
Common Build Tools for Trellis LDP projects
Project URL

Project URL

http://www.trellisldp.org
Project Organization

Project Organization

Trellis LDP
Source Code Management

Source Code Management

https://github.com/trellis-ldp/trellis-build-tools

Download trellis-build-tools

How to add to project

<!-- https://jarcasting.com/artifacts/org.trellisldp/trellis-build-tools/ -->
<dependency>
    <groupId>org.trellisldp</groupId>
    <artifactId>trellis-build-tools</artifactId>
    <version>0.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.trellisldp/trellis-build-tools/
implementation 'org.trellisldp:trellis-build-tools:0.2.0'
// https://jarcasting.com/artifacts/org.trellisldp/trellis-build-tools/
implementation ("org.trellisldp:trellis-build-tools:0.2.0")
'org.trellisldp:trellis-build-tools:jar:0.2.0'
<dependency org="org.trellisldp" name="trellis-build-tools" rev="0.2.0">
  <artifact name="trellis-build-tools" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.trellisldp', module='trellis-build-tools', version='0.2.0')
)
libraryDependencies += "org.trellisldp" % "trellis-build-tools" % "0.2.0"
[org.trellisldp/trellis-build-tools "0.2.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

A Collection of build tools for Trellis LDP projects

Maven Central

This repository contains a number of artifacts that can be included in external projects.

For example:

  • checkstyle configuration
  • license checking

With Gradle, add the following to the build.gradle script:

configuration {
    buildToolsConfig
}

dependencies {
    buildToolsConfig "org.trellisldp:trellis-build-tools:0.2.0"
}

checkstyle {
    config = resources.text.fromArchiveEntry(configurations.buildToolsConfig, "checkstyle/checkstyle.xml")
    configProperties.checkstyleConfigDir = resources.text.fromArchiveEntry(configurations.buildToolsConfig, "checkstyle/suppressions.xml").asFile().parent
    showViolations true
    ignoreFailures true
    toolVersion = '8.1'
}

license {
    include "**/*.java"
    header = resources.text.fromArchiveEntry(configurations.buildToolsConfig, 'license/HEADER.txt').asFile()
    sourceSets = project.sourceSets
    ignoreFailures false
    strictCheck true
    mapping {
        java = 'SLASHSTAR_STYLE'
    }
}
org.trellisldp

Trellis LDP

A platform for building scalable Linked Data applications

Versions

Version
0.2.0
0.1.1
0.1.0