Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(distrib): installers renaming and corrected metadata #5609

Merged
merged 17 commits into from
Dec 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
b782eb0
style: added comments for better reachability
marcellorinaldo Dec 6, 2024
51d0747
refactor(distrib): renamed generic-aarch64 profiles into aarch64
marcellorinaldo Dec 6, 2024
b720914
refactor(distrib): renamed generic-arm32 profiles into armhf
marcellorinaldo Dec 6, 2024
e386ae7
refactor(distrib): renamed generic-x86_64 profiles into x86_64
marcellorinaldo Dec 6, 2024
fb59c45
refactor(distrib): removed Java version check in launch scripts, adde…
marcellorinaldo Dec 6, 2024
9cdab14
refactor(distrib): installer metadata changes for aarch64
marcellorinaldo Dec 6, 2024
e90a185
refactor(distrib): installer metadata changes for armhf
marcellorinaldo Dec 6, 2024
a984807
refactor(distrib): installer metadata changes for x86_64
marcellorinaldo Dec 6, 2024
a8049fc
refactor(distrib): removed non-existing references to kura.init files…
marcellorinaldo Dec 9, 2024
d73983d
refactor(distrib): changed kura.os.version from raspbian to Linux
marcellorinaldo Dec 9, 2024
242db7c
refactor(distrib): fixed Maintainer metadata field
marcellorinaldo Dec 9, 2024
5d5c810
feat(distrib): added Homepage metadata field
marcellorinaldo Dec 9, 2024
f825eb8
refactor(distrib): changed kura.os.version from linux to debian
marcellorinaldo Dec 10, 2024
8e456ab
fix(distrib): corrected nn profiles names
marcellorinaldo Dec 10, 2024
4852c48
fix(distrib): corrected docker metadata
marcellorinaldo Dec 10, 2024
0cb5dab
fix(distrib): changed installer .deb names to match <pack-name>_<vers…
marcellorinaldo Dec 10, 2024
c1a620a
fix: removing wrong commited files
marcellorinaldo Dec 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
style: added comments for better reachability
Signed-off-by: Marcello Rinaldo Martina <[email protected]>
marcellorinaldo committed Dec 6, 2024
commit b782eb0781fd2fa8a235825e84f557122f8f283b
21 changes: 20 additions & 1 deletion kura/distrib/pom.xml
Original file line number Diff line number Diff line change
@@ -1136,6 +1136,7 @@
</dependencies>

<profiles>

<profile>
<id>java8</id>
<activation>
@@ -1145,6 +1146,7 @@
<skip.js.nashorn.engine.components>false</skip.js.nashorn.engine.components>
</properties>
</profile>

<profile>
<id>java17</id>
<activation>
@@ -1154,6 +1156,8 @@
<skip.js.nashorn.engine.components>true</skip.js.nashorn.engine.components>
</properties>
</profile>

<!-- armhf -->
<profile>
<id>generic-arm32</id>
<activation>
@@ -1250,6 +1254,7 @@
</build>
</profile>

<!-- armhf-nn -->
<profile>
<id>generic-arm32-nn</id>
<activation>
@@ -1341,6 +1346,7 @@
</build>
</profile>

<!-- x86_64 -->
<profile>
<id>generic-x86_64</id>
<activation>
@@ -1437,6 +1443,7 @@
</build>
</profile>

<!-- x86_64-nn -->
<profile>
<id>generic-x86_64-nn</id>
<activation>
@@ -1527,7 +1534,8 @@
</plugins>
</build>
</profile>


<!-- aarch64 -->
<profile>
<id>generic-aarch64</id>
<activation>
@@ -1624,6 +1632,7 @@
</build>
</profile>

<!-- aarch64-nn -->
<profile>
<id>generic-aarch64-nn</id>
<activation>
@@ -1715,6 +1724,8 @@
</build>
</profile>

<!-- dockers -->

<profile>
<id>docker-x86_64-nn</id>
<activation>
@@ -1832,6 +1843,7 @@
</plugins>
</build>
</profile>

<profile>
<id>docker-ubi8-x86_64-nn</id>
<activation>
@@ -1878,6 +1890,7 @@
</plugins>
</build>
</profile>

<profile>
<id>docker-alpine-x86_64-nn</id>
<activation>
@@ -1925,6 +1938,7 @@
</build>
</profile>

<!-- dev-env -->
<profile>
<id>dev-env</id>
<activation>
@@ -2273,6 +2287,9 @@
</plugins>
</build>
</profile>

<!-- dp -->

<profile>
<id>core-dp</id>
<activation>
@@ -2400,6 +2417,7 @@
</plugins>
</build>
</profile>

<profile>
<id>can-dp</id>
<activation>
@@ -2437,5 +2455,6 @@
</plugins>
</build>
</profile>

</profiles>
</project>