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

Convert WTP to Equo #1622

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

24 changes: 23 additions & 1 deletion lib-extra/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ tasks.withType(Test).configureEach {
def NEEDS_P2_DEPS = [
'jdt',
'groovy',
'cdt'
'cdt',
'wtp'
]
for (needsP2 in NEEDS_P2_DEPS) {
sourceSets.register(needsP2) {
Expand Down Expand Up @@ -85,6 +86,27 @@ p2deps {
p2repo 'https://download.eclipse.org/tools/cdt/releases/10.7/'
install 'org.eclipse.cdt.core'
}
into 'wtpCompileOnly', {
p2repo 'https://download.eclipse.org/eclipse/updates/4.26/'
p2repo 'https://download.eclipse.org/webtools/repository/2022-12/'
// XML/HTML Formatter - Dependencies
install 'org.eclipse.wst.xml.core' // DefaultXMLPartitionFormatter and XMLAssociationProvider
install 'org.eclipse.wst.sse.core' // Structure models
install 'org.eclipse.wst.common.uriresolver' // URI resolver for model queries
install 'org.eclipse.wst.dtd.core' // Support DTD extensions
// XML Formatter - Dependencies
install 'org.eclipse.wst.xsd.core' // Support XSD extensions
// JS Formatter - Dependencies
install 'org.eclipse.wst.jsdt.core' // DefaultCodeFormatter and related
install 'org.eclipse.wst.jsdt.ui' // Functionality to format comments
// JSON Formatter - Dependencies
install 'org.eclipse.wst.json.core' // FormatProcessorJSON and related
install 'org.eclipse.json' // Provides JSON node interfaces
// CSS Formatter - Dependencies
install 'org.eclipse.wst.css.core' // FormatProcessorCSS and related
// HTML Formatter - Dependencies
install 'org.eclipse.wst.html.core' // HTMLFormatProcessorImpl and related
}
}

// we'll hold the core lib to a high standard
Expand Down