Skip to content

Commit

Permalink
Require Java 11+
Browse files Browse the repository at this point in the history
Remove the java9 profile.
  • Loading branch information
arteymix committed Jul 27, 2024
1 parent 4434a3a commit faa2313
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Curated dependencies for the Pavlidis Lab's Java applications

Here's the core dependencies that are managed by this POM:

- Java 8+
- Java 11+
- Maven 3.6.3 or newer
- Hibernate 4.3
- MySQL
Expand Down
14 changes: 3 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -424,21 +424,13 @@
</repository>
</distributionManagement>
</profile>
<profile>
<id>java9</id>
<activation>
<jdk>(9,</jdk>
</activation>
<properties>
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
</profiles>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
<log4j.version>2.23.1</log4j.version>
<slf4j.version>2.0.13</slf4j.version>
<hibernate.version>4.3.11.Final</hibernate.version>
Expand Down

0 comments on commit faa2313

Please sign in to comment.