Skip to content

Commit 7f415dc

Browse files
committed
4.1.1 final
1 parent 706df95 commit 7f415dc

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ This mirror is not necessarily up to date with the latest Processing 4 release;
1414

1515
### Step 1. Add the *JitPack* repository to your pom.xml
1616

17-
```
17+
```
1818
<repositories>
1919
<repository>
2020
<id>jitpack.io</id>
2121
<url>https://jitpack.io</url>
2222
</repository>
2323
</repositories>
24-
```
24+
```
2525
### Step 2. Add the processing-core dependency
2626

2727
```
@@ -30,8 +30,10 @@ This mirror is not necessarily up to date with the latest Processing 4 release;
3030
<artifactId>processing-core-4</artifactId>
3131
<version>4.1.1</version>
3232
</dependency>
33-
```
33+
```
3434

3535
### **That's it!**
3636

37-
Now you don't have to worry about adding core.jar, the JavaFX and JOGL & Gluegen dependencies to your project — this does it all! Compatible with any Java project version 11+.
37+
Now you don't have to worry about adding core.jar, the JavaFX and JOGL & Gluegen dependencies to your project — this does it all!
38+
39+
Note: core version 4.1.1 and onwards require Java 17+; prior versions require Java 11+.

jitpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
jdk:
2-
- openjdk11
2+
- openjdk17

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.processing</groupId>
66
<artifactId>core</artifactId>
7-
<version>4.0.1</version>
7+
<version>4.1.1</version>
88
<name>Processing Core</name>
99

1010
<properties>
@@ -29,7 +29,7 @@
2929
<artifactId>maven-compiler-plugin</artifactId>
3030
<version>3.9.0</version>
3131
<configuration>
32-
<release>11</release>
32+
<release>17</release>
3333
<encoding>UTF-8</encoding>
3434
</configuration>
3535
</plugin>
@@ -69,7 +69,7 @@
6969
<plugin>
7070
<groupId>org.apache.maven.plugins</groupId>
7171
<artifactId>maven-javadoc-plugin</artifactId>
72-
<version>3.3.1</version>
72+
<version>3.4.1</version>
7373
<configuration>
7474
<doclint>none</doclint> <!--Prevent Javadoc incomplete errors -->
7575
</configuration>
@@ -93,7 +93,7 @@
9393
<plugin>
9494
<groupId>org.apache.maven.plugins</groupId>
9595
<artifactId>maven-shade-plugin</artifactId>
96-
<version>3.2.4</version>
96+
<version>3.4.1</version>
9797
<configuration>
9898
<createDependencyReducedPom>false</createDependencyReducedPom>
9999
<minimizeJar>true</minimizeJar>

0 commit comments

Comments
 (0)