[SOLVED] about.hmtl missing with mvn clean install (2.5)

when building my bundle with a fresh checkout of the openhab2-addons and running
mvn clean install -DskipChecks=true it runs successful
however
mvn clean install (with cheks) fails with

[ERROR] Unable to get about.html file from https://raw.githubusercontent.com/openhab/openhab2-addons/master/src/etc/about.html : Unable to get https://raw.githubusercontent.com/openhab/openhab2-addons/master/src/etc/about.html
java.io.IOException: Unable to get https://raw.githubusercontent.com/openhab/openhab2-addons/master/src/etc/about.html
    at org.openhab.tools.analysis.utils.CachingHttpClient.get (CachingHttpClient.java:69)
    at org.openhab.tools.analysis.checkstyle.AboutHtmlCheck.beginProcessing (AboutHtmlCheck.java:72)
    at com.puppycrawl.tools.checkstyle.Checker.process (Checker.java:210)

...

[ERROR] Failed to execute goal org.openhab.tools.sat:sat-plugin:0.5.0:checkstyle (default) on project org.openhab.binding.magentatv: Unable to execute mojo: An error has occurred in Checkstyle report generation. Failed during checkstyle configuration: Exception was thrown while processing /Users/markus/Dev/openhab-release.24/openhab2-addons/addons/binding/org.openhab.binding.magentatv/ESH-INF/thing/thing-types.xml: Unable to read from file: /Users/markus/Dev/openhab-release.24/openhab2-addons/addons/binding/org.openhab.binding.magentatv/ESH-INF/thing/thing-types.xml: The element type "description" must be terminated by the matching end-tag "</description>". -> [Help 1]

@Kai: it’s the MagentaTV bundle :wink:

Also if I run “mvn cleanninstall” from openhab2-addons root it failes with

[ERROR] Cannot resolve project dependencies:
[ERROR]   Software being installed: org.eclipse.core.runtime 3.14.0.v20180417-0825
[ERROR]   Missing requirement: org.eclipse.core.runtime 3.14.0.v20180417-0825 requires 'osgi.bundle; org.eclipse.equinox.registry [3.8.0,4.0.0)' but it could not be found
...
[INFO] openHAB 2 Add-ons .................................. SUCCESS [  1.146 s]
[INFO] openHAB Add-ons .................................... SUCCESS [  0.087 s]
[INFO] openHAB Bindings ................................... SUCCESS [  0.112 s]
[INFO] AirQuality Binding ................................. SUCCESS [ 16.856 s]
[INFO] AirVisual Node Air Quality Monitor Binding ......... SUCCESS [  6.143 s]
[INFO] AllPlay Binding .................................... SUCCESS [  6.671 s]
[INFO] Amazon Dash Button Binding ......................... SUCCESS [  6.169 s]
[INFO] Amazon Echo Control Binding ........................ SUCCESS [ 11.245 s]
[INFO] Astro Binding ...................................... SUCCESS [  8.325 s]
[INFO] Astro Binding Tests ................................ FAILURE [  0.585 s]
[INFO] Atlona Binding ..................................... SKIPPED
...
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.2.0:test (default-test) on project org.openhab.binding.astro.test: Execution default-test of goal org.eclipse.tycho:tycho-surefire-plugin:1.2.0:test failed: Cannot resolve dependencies of MavenProject: org.openhab.binding:org.openhab.binding.astro.test:2.5.0-SNAPSHOT @ /Users/markus/Dev/openhab-release.24/openhab2-addons/addons/binding/org.openhab.binding.astro.test/pom.xml: See log for details -> [Help 1]

Tests are currently broken, so this is expected. Try adding -fae to let maven continue on errors or -DskipTests=true to skip test execution.

The SAT tool needs to be updated, we don’t use about.html any more.

hmm, the checks are an important part of the build process. Is someone already working on that?

When I do the first run of the fresh setup I see:
46
Any way to fix that?

Fetch the newest openhab-distro and run „perform setup-tasks“ from the menu.

Or edit the launch configuration (run as configuration or debug as configuration) and de-select all packages that are selected twice.

thx, now it works