Skip to content

Commit

Permalink
Fix MAC OS build failure (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximthomas authored Oct 24, 2024
1 parent df9b759 commit 5cd2c6e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion opendj-packages/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@
<profile>
<id>distribution-unix</id>
<activation>
<os><family>unix</family></os>
<os>
<family>unix</family>
<name>Linux</name>
</os>
</activation>
<modules>
<module>../opendj-doc-generated-ref</module>
Expand All @@ -56,6 +59,20 @@
<module>opendj-docker</module>
</modules>
</profile>
<profile>
<id>distribution-mac</id>
<activation>
<os>
<family>unix</family>
<name>Mac OS X</name>
</os>
</activation>
<modules>
<module>opendj-svr4</module>
<module>opendj-msi</module>
<module>opendj-docker</module>
</modules>
</profile>
<profile>
<id>distribution-windows</id>
<activation>
Expand Down

0 comments on commit 5cd2c6e

Please sign in to comment.