Skip to content

Commit

Permalink
Bumped java support to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
todorinskiz committed Sep 27, 2023
1 parent 929d929 commit e6b7c01
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ out
*.log*
.gradle
.idea
**/bin/
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Changelog - Dynamic Extensions for Alfresco
date: 11 April 2022
date: 27 September 2023
report: true
colorlinks: true
---
Expand All @@ -21,6 +21,12 @@ Version template:
-->
# Dynamic Extensions For Alfresco Changelog

## [3.2.0] - 2023-09-23

### Changed

* Support for Java 11

## [3.1.0] - 2023-07-18

### Added
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ sonarqube {

allprojects {
group = 'eu.xenit.de'
version = '3.1.0'
version = '3.2.0'

boolean isRelease = ci.branch?.startsWith("release")
if (!isRelease) {
version += "-SNAPSHOT"
}

project.pluginManager.withPlugin('java-base') {
project.sourceCompatibility = 1.8
project.sourceCompatibility = 11
}

tasks.withType(JavaCompile) {
Expand Down

0 comments on commit e6b7c01

Please sign in to comment.