afs opened a new issue, #1488:
URL: https://github.com/apache/jena/issues/1488
The jena-fuseki-ui module does not clean out the cached `node_modules/` and
`node/` directories.
Does this matter?
A release build is supposed to work from freshly checked out git.
I found this because the build had the wrong build order:
Was:
```
<module>jena-fuseki-webapp</module>
<module>jena-fuseki-ui</module>
```
(fixed now)
so `jena-fuseki-webapp` picked up the previous build output and did not work
on a freshly checked out Jena git repo.
Adding to `maven-clean-plugin` is possible but maybe this is too clean
because it then requires a node install and a `yarn install` of about 480M.
```
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset><directory>node</directory></fileset>
<fileset><directory>node_modules</directory></fileset>
</filesets>
</configuration>
</plugin>
```
We might be able to make this only happen when profile "-Papache-release" is
active. Ideally, it would be done by `release:clean` but I can't see how to add
to that operation.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]