Giter Club home page Giter Club logo

Comments (4)

michalcukierman avatar michalcukierman commented on June 11, 2024

@pollenshukla We use RAT (Release Audit Tool) for our open-source projects to ensure we have licenses on every file.
This check should be disabled for changes not meant to be a part of Howlite release.

You could run a project with a disabled RAT plugin (with -Drat.skip=true flag) as a workaround.

The full command will be:
./mvnw -f application/backend/pom.xml clean install -Drat.skip=true -P autoInstallBundle

Alternatively, you can disable it permanently by adding additional plugin configuration to your pom.xml:

<plugin>
    <groupId>org.apache.rat</groupId>
    <artifactId>apache-rat-plugin</artifactId>

    <configuration>
        <skip>true</skip>
    </configuration>
</plugin>

or simply remove the whole plugin from here (it's were it's configured):
https://github.com/websight-io/howlite/blob/main/pom.xml#L130

from starter.

michalcukierman avatar michalcukierman commented on June 11, 2024

The correct pom.xml file with RAT plugin configuration for starter is:
https://github.com/websight-io/starter/blob/main/pom.xml#L101

from starter.

michalcukierman avatar michalcukierman commented on June 11, 2024

@pollenshukla You can pull the latest changes - I've removed the plugin for now. Will add it again when we find a way to use it without affecting end users.

Commit is: a6e6910

from starter.

pollenshukla avatar pollenshukla commented on June 11, 2024

Thanks @michalcukierman for a quick resolution, alternatively you can update as a note in documentation.

from starter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.