Skip to content

Commit 6d4568e

Browse files
committed
fix jogl and gluegen dependencies
1 parent 46daa52 commit 6d4568e

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ index: 4
44
lang: en
55
---
66

7+
## 4.24.2
8+
9+
- Fix jogl and gluegen dependencies.
10+
711
## 4.24.1
812

913
- Fix wrong implemention of Polygon.

pom.xml

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.openpatch</groupId>
77
<artifactId>scratch</artifactId>
8-
<version>4.24.1</version>
8+
<version>4.24.2</version>
99
<packaging>jar</packaging>
1010

1111
<name>Scratch for Java</name>
@@ -37,7 +37,7 @@
3737
<properties>
3838
<maven.compiler.release>17</maven.compiler.release>
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40-
<libs.processing>4.4.6</libs.processing>
40+
<libs.processing>4.4.10</libs.processing>
4141
<libs.jackson>2.19.2</libs.jackson>
4242
</properties>
4343

@@ -54,6 +54,16 @@
5454
<artifactId>core</artifactId>
5555
<version>${libs.processing}</version>
5656
</dependency>
57+
<dependency>
58+
<groupId>org.jogamp.jogl</groupId>
59+
<artifactId>jogl-all-main</artifactId>
60+
<version>2.5.0</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.jogamp.gluegen</groupId>
64+
<artifactId>gluegen-rt-main</artifactId>
65+
<version>2.5.0</version>
66+
</dependency>
5767

5868
<!-- Jackson -->
5969
<dependency>
@@ -87,20 +97,6 @@
8797
<profiles>
8898
<profile>
8999
<id>central</id>
90-
<dependencies>
91-
<dependency>
92-
<groupId>org.jogamp.jogl</groupId>
93-
<artifactId>jogl-all</artifactId>
94-
<version>2.5.0</version>
95-
<classifier>natives-linux-amd64</classifier>
96-
</dependency>
97-
<dependency>
98-
<groupId>org.jogamp.gluegen</groupId>
99-
<artifactId>gluegen-rt</artifactId>
100-
<version>2.5.0</version>
101-
<classifier>natives-linux-amd64</classifier>
102-
</dependency>
103-
</dependencies>
104100

105101
<build>
106102
<plugins>
@@ -325,4 +321,4 @@
325321
</resource>
326322
</resources>
327323
</build>
328-
</project>
324+
</project>

0 commit comments

Comments
 (0)