CPU Commit (WIP)

This commit is contained in:
Rodolphe de Saint Léger 2025-05-13 10:03:25 +02:00
parent 4abd895f87
commit b016a8fd9e
15 changed files with 18928 additions and 36 deletions

View file

@ -0,0 +1,33 @@
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>full</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.basedir}/..</directory>
<outputDirectory>${project.parent.name}</outputDirectory>
<excludes>
<exclude>.DS_Store</exclude>
<exclude>.project</exclude>
<exclude>.pydevproject</exclude>
<exclude>.classpath</exclude>
<exclude>.settings/**</exclude>
<exclude>target/**</exclude>
<exclude>*/.DS_Store</exclude>
<exclude>*/.project</exclude>
<exclude>*/.pydevproject</exclude>
<exclude>*/.classpath</exclude>
<exclude>*/.settings/**</exclude>
<exclude>*/target/**</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>