AppaYY / fitnesse-bootstrap-plus-theme

An extended theme for FitNesse that increases it's usability and functionality
Apache License 2.0
2 stars 0 forks source link

Option to customize Version Checker #33

Open lennyg1 opened 4 years ago

lennyg1 commented 4 years ago

Is there any way to customize the versions that the version checker displays? I don't want to see that my mssql is outdated, because newer versions don't work anymore in this case. I don't want anyone messing with the pom file because they think they have to update something, or me seeing an 'outdated' version that isn't outdated.

image

Lizzze commented 4 years ago

We have added the issues to the backlog of our Trello board

https://trello.com/c/3jx2Fzyt/207-us-59-optie-om-versie-checker-te-personaliseren

tcnh commented 4 years ago

Suggestion: As the MavenProjectVersionsResponder in toolchain-plugin has a list of ignores already:

static {
        IGNORE_DEPENDENCIES = new HashSet<>(Arrays.asList(
                "jaxb-core",
                "jaxb-impl",
                "jaxb-api",
                "activation",
                "junit"));
    }

It should not be hard to add artifact names to that list using a system property one could add to fitnesse's startup (or the exec plugin execution in pom)