Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(project): switch to jdk 11 source code level #3691

Merged
merged 26 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a41279e
chore(project): switch to jdk 11 source code level
yanavasileva Aug 21, 2023
112d597
wip
yanavasileva Aug 21, 2023
08d3b04
cleanup/update jdk 8 related profiles
yanavasileva Aug 21, 2023
bd7f2cb
TODOs
yanavasileva Aug 21, 2023
e83deed
5.1.1
yanavasileva Aug 21, 2023
bfdb207
test
yanavasileva Aug 22, 2023
fa746dc
remove version
yanavasileva Aug 22, 2023
1d04621
ci: set jdk 11 as default JDK version
yanavasileva Aug 22, 2023
e0c29cc
instance migration requires jdk 8 for the previous fixtures
yanavasileva Aug 25, 2023
b8146fc
to revert
yanavasileva Aug 25, 2023
24ae288
change source code level for instance-migration
yanavasileva Aug 25, 2023
6790062
bump arquillian tomcat version
yanavasileva Aug 28, 2023
4ea062a
revert migration jdk 8 changes
yanavasileva Aug 28, 2023
7156463
to revert
yanavasileva Aug 29, 2023
5865ebb
update to h2 1.4.200
yanavasileva Aug 29, 2023
516dc94
revert comments
yanavasileva Aug 29, 2023
e585cde
to revert: test daily
yanavasileva Aug 30, 2023
9c8545a
readme and comments
yanavasileva Aug 31, 2023
317c4e8
remove dependency not needed anymore after building with JDK 11/17
yanavasileva Aug 31, 2023
9f79a2b
remove todos
yanavasileva Aug 31, 2023
c66bd11
change the jdk variable name
yanavasileva Sep 1, 2023
a795b25
revert tmp changes
yanavasileva Sep 8, 2023
072c1e0
Update pom.xml
yanavasileva Sep 12, 2023
7d69366
cleanup
yanavasileva Sep 12, 2023
59676ea
remove shared library branch
yanavasileva Sep 14, 2023
543c51c
clean up jdk 11 profiles
yanavasileva Sep 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove version
  • Loading branch information
yanavasileva committed Sep 12, 2023
commit fa746dc2b4a5d1ecb705e471f7d1790bbc8aa20b
8 changes: 4 additions & 4 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@
</camunda.artifact>
<camunda.osgi.export.pkg>
!${camunda.artifact}.engine.variable.*,
${camunda.artifact};${camunda.osgi.version};-noimport:=true,
${camunda.artifact}.application.*;${camunda.osgi.version};-noimport:=true,
${camunda.artifact}.container.*;${camunda.osgi.version};-noimport:=true,
${camunda.artifact}.engine.*;${camunda.osgi.version};-noimport:=true
${camunda.artifact},
${camunda.artifact}.application.*,
${camunda.artifact}.container.*,
${camunda.artifact}.engine.*
</camunda.osgi.export.pkg>
<camunda.osgi.import.additional>
!com.google.gson.*,
Expand Down
3 changes: 1 addition & 2 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-SymbolicName>${camunda.osgi.symbolic.name}</Bundle-SymbolicName>
<Bundle-Activator>${camunda.osgi.activator}</Bundle-Activator>
<!-- <Export-Package>${camunda.osgi.export}</Export-Package>-->
<Export-Package>${camunda.osgi.export}</Export-Package>
<Import-Package>${camunda.osgi.import}</Import-Package>
<DynamicImport-Package>${camunda.osgi.dynamic}</DynamicImport-Package>
<Private-Package>${camunda.osgi.private.pkg}</Private-Package>
Expand All @@ -219,7 +219,6 @@
<Export-Service>${camunda.osgi.export.service}</Export-Service>
<Import-Service>${camunda.osgi.import.service}</Import-Service>
<Embed-Dependency>${camunda.osgi.embed}</Embed-Dependency>
<!-- <_nodefaultversion>true</_nodefaultversion>-->
</instructions>
<versions>
<camunda.osgi.version.clean>${project.version}</camunda.osgi.version.clean>
Expand Down