Skip to content

Commit

Permalink
4.1.1 final
Browse files Browse the repository at this point in the history
  • Loading branch information
micycle1 committed Dec 11, 2022
1 parent 706df95 commit 7f415dc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ This mirror is not necessarily up to date with the latest Processing 4 release;

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

```
```
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```
```
### Step 2. Add the processing-core dependency

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

### **That's it!**

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+.
Now you don't have to worry about adding core.jar, the JavaFX and JOGL & Gluegen dependencies to your project — this does it all!

Note: core version 4.1.1 and onwards require Java 17+; prior versions require Java 11+.
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
jdk:
- openjdk11
- openjdk17
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.processing</groupId>
<artifactId>core</artifactId>
<version>4.0.1</version>
<version>4.1.1</version>
<name>Processing Core</name>

<properties>
Expand All @@ -29,7 +29,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<configuration>
<release>11</release>
<release>17</release>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -69,7 +69,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.1</version>
<configuration>
<doclint>none</doclint> <!--Prevent Javadoc incomplete errors -->
</configuration>
Expand All @@ -93,7 +93,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.4.1</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<minimizeJar>true</minimizeJar>
Expand Down

0 comments on commit 7f415dc

Please sign in to comment.