What changed, and why it matters
This commit adjusts build packaging settings to make compiled releases more reproducible across different computers. It sets consistent file permissions and line endings for packaged documentation and runtime files. There is no indication this fixes a security vulnerability or introduces one.
No security action required. This is a benign build reproducibility improvement.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies Maven assembly descriptors in eclair-front and eclair-node. It adds
Changed components
eclair-front/modules/assembly.xmleclair-node/modules/assembly.xmlInspect captured patch +6 / −0
### eclair-front/modules/assembly.xml
@@ -11,6 +11,7 @@
<useProjectArtifact>true</useProjectArtifact> <!-- include eclair-core -->
<unpack>false</unpack>
<scope>runtime</scope>
+ <fileMode>0644</fileMode>
</dependencySet>
</dependencySets>
<fileSets> <!-- Include docs, readme and license -->
@@ -21,6 +22,8 @@
<include>README.md</include>
<include>LICENSE*</include>
</includes>
+ <fileMode>0644</fileMode>
+ <lineEnding>unix</lineEnding>
</fileSet>
<fileSet> <!-- Include the launcher scripts -->
<directory>${project.basedir}/src/main/resources</directory>
### eclair-node/modules/assembly.xml
@@ -11,6 +11,7 @@
<useProjectArtifact>true</useProjectArtifact> <!-- include eclair-core -->
<unpack>false</unpack>
<scope>runtime</scope>
+ <fileMode>0644</fileMode>
</dependencySet>
</dependencySets>
<fileSets> <!-- Include docs, readme and license -->
@@ -21,6 +22,8 @@
<include>README.md</include>
<include>LICENSE*</include>
</includes>
+ <fileMode>0644</fileMode>
+ <lineEnding>unix</lineEnding>
</fileSet>
<fileSet> <!-- Include the launcher scripts -->
<directory>${project.basedir}/src/main/resources</directory>Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.