-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update target platforms. -New default target Eclipse 2024-09 - New minimum baseline Eclipse 2023-12 - Switch to jarkarta variant of lsp4j websocket - Switch to Jetty 12 Builds on top of: #24 Changes done on top: - Remove outdated targets - Adjust version ranges - Create a new target definition for the minimum supported version (2023-12) - Restore explicit reexport of certain packages to maintain backwards compatibility - Fix and align m2 build - Add possibility to change the target platform of the p2 build with the p2.target property Part of eclipse-glsp/glsp#1397
- Loading branch information
Showing
23 changed files
with
216 additions
and
541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,34 @@ | ||
// Provides the jetty websocket artifacts from maven as a feature | ||
|
||
target "Wrapper for maven dependencies" | ||
|
||
|
||
maven log4j scope=compile dependencyDepth=none missingManifest=generate { | ||
dependency { | ||
groupId="org.apache.logging.log4j" | ||
artifactId="log4j-slf4j2-impl" | ||
version="2.19.0" | ||
version="2.23.1" | ||
} | ||
dependency { | ||
groupId="org.apache.logging.log4j" | ||
artifactId="log4j-core" | ||
version="2.19.0" | ||
version="2.23.1" | ||
} | ||
dependency { | ||
groupId="org.apache.logging.log4j" | ||
artifactId="log4j-api" | ||
version="2.19.0" | ||
version="2.23.1" | ||
} | ||
} | ||
|
||
maven slf4j scope=compile dependencyDepth=none missingManifest=generate { | ||
dependency { | ||
groupId="org.slf4j" | ||
artifactId="slf4j-api" | ||
version="2.0.0" | ||
groupId="org.apache.logging.log4j" | ||
artifactId="log4j-1.2-api" | ||
version="2.23.1" | ||
} | ||
} | ||
|
||
maven spifly scope=compile,test dependencyDepth=infinite missingManifest=generate { | ||
dependency { | ||
groupId="org.apache.aries.spifly" | ||
artifactId="org.apache.aries.spifly.dynamic.bundle" | ||
version="1.3.6" | ||
groupId="org.apache.logging.log4j" | ||
artifactId="log4j-to-slf4j" | ||
version="2.23.1" | ||
} | ||
} | ||
|
||
|
||
|
||
|
Oops, something went wrong.