Skip to content

Commit

Permalink
... as suggested by @ctrueden "So that the proper JAR-wrapped native …
Browse files Browse the repository at this point in the history
…lib classifier comes in."

I do not really understand it :-)
  • Loading branch information
tpietzsch committed Jun 14, 2023
1 parent e2d9b96 commit 9f85151
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt</artifactId>
<classifier>${scijava.natives.classifier.gluegen}</classifier>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
<classifier>${scijava.natives.classifier.jogl}</classifier>
</dependency>
<dependency>
<groupId>org.joml</groupId>
<artifactId>joml</artifactId>
Expand Down

1 comment on commit 9f85151

@ctrueden
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tpietzsch Thanks! The idea is that ${scijava.natives.classifier.gluegen} is set to the correct value for the current platform, via Maven profiles. This is done in pom-scijava-base, in case you are curious. I wrote more details at scenerygraphics/scenery#546

Please sign in to comment.