Skip to content

Commit

Permalink
fix(plc4x): Add default maven profile for each os
Browse files Browse the repository at this point in the history
  • Loading branch information
hutcheb committed Apr 28, 2024
1 parent 6bfad33 commit f8c8d68
Showing 1 changed file with 63 additions and 2 deletions.
65 changes: 63 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1512,6 +1512,7 @@
<python.exe.bin>python3</python.exe.bin>
</properties>
</profile>
<!-- Profile for linux amd64 (Self-Enabling) -->
<profile>
<id>.os-linux-amd64</id>
<activation>
Expand Down Expand Up @@ -1547,6 +1548,26 @@
<python.exe.bin>python3</python.exe.bin>
</properties>
</profile>
<!-- Default Profile for linux -->
<profile>
<id>.os-linux-default</id>
<activation>
<os>
<family>unix</family>
<name>Linux</name>
</os>
<property>
<name>!os.suffix</name>
</property>
</activation>
<properties>
<os.suffix>linux</os.suffix>
<os.classifier>linux-default</os.classifier>
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
</properties>
</profile>
<!-- Profile for mac x86_64 (Self-Enabling) -->
<profile>
<id>.os-mac-x86_64</id>
Expand All @@ -1564,6 +1585,7 @@
<python.exe.bin>python3</python.exe.bin>
</properties>
</profile>
<!-- Profile for mac amd64 (Self-Enabling) -->
<profile>
<id>.os-mac-amd64</id>
<activation>
Expand Down Expand Up @@ -1597,7 +1619,26 @@
<python.exe.bin>python3</python.exe.bin>
</properties>
</profile>
<!-- profile for windows x86_64 (Self-Enabling) -->
<!-- Default profile for mac (Self-Enabling) -->
<profile>
<id>.os-mac-default</id>
<activation>
<os>
<family>mac</family>
</os>
<property>
<name>!os.suffix</name>
</property>
</activation>
<properties>
<os.suffix>mac</os.suffix>
<os.classifier>mac-default</os.classifier>
<cmake.generator>Unix Makefiles</cmake.generator>
<python.venv.bin>venv/bin/</python.venv.bin>
<python.exe.bin>python3</python.exe.bin>
</properties>
</profile>
<!-- Profile for windows x86_64 (Self-Enabling) -->
<profile>
<id>.os-windows-x86_64</id>
<activation>
Expand All @@ -1614,6 +1655,7 @@
<python.exe.bin>python</python.exe.bin>
</properties>
</profile>
<!-- Profile for windows amd64 (Self-Enabling) -->
<profile>
<id>.os-windows-amd64</id>
<activation>
Expand All @@ -1630,7 +1672,7 @@
<python.exe.bin>python</python.exe.bin>
</properties>
</profile>
<!-- profile for windows aarch64 (Self-Enabling) -->
<!-- Profile for windows aarch64 (Self-Enabling) -->
<profile>
<id>.os-windows-aarch64</id>
<activation>
Expand All @@ -1647,6 +1689,25 @@
<python.exe.bin>python</python.exe.bin>
</properties>
</profile>
<!-- Default profile for windows (Self-Enabling) -->
<profile>
<id>.os-windows-default</id>
<activation>
<os>
<family>windows</family>
</os>
<property>
<name>!os.suffix</name>
</property>
</activation>
<properties>
<os.suffix>win</os.suffix>
<os.classifier>windows-default</os.classifier>
<cmake.generator>MinGW Makefiles</cmake.generator>
<python.venv.bin>venv/Scripts/</python.venv.bin>
<python.exe.bin>python</python.exe.bin>
</properties>
</profile>

<!--
This profile is intended to help when having problems with Maven.
Expand Down

0 comments on commit f8c8d68

Please sign in to comment.