Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
[eclipse/xtext#2136] fix deprecation with gradle 8
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
  • Loading branch information
cdietrich committed Feb 26, 2023
1 parent 3456497 commit ffa47a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ shadowJar {
exclude('META-INF/INDEX.LIST', 'META-INF/*.SF', 'META-INF/*.DSA', 'META-INF/*.RSA','schema/*',
'.options', '.api_description', '*.profile', '*.html', 'about.*', 'about_files/*',
'plugin.xml', 'systembundle.properties', 'profile.list')
classifier = 'ls'
archiveClassifier = 'ls'
append('plugin.properties')
mergeServiceFiles()
}
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ class IdeProjectDescriptor extends ProjectDescriptor {
exclude('META-INF/INDEX.LIST', 'META-INF/*.SF', 'META-INF/*.DSA', 'META-INF/*.RSA','schema/*',
'.options', '.api_description', '*.profile', '*.html', 'about.*', 'about_files/*',
'plugin.xml', 'systembundle.properties', 'profile.list')
classifier = 'ls'
archiveClassifier = 'ls'
append('plugin.properties')
mergeServiceFiles()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ public GradleBuildFile buildGradle() {
_builder_1.append("\'plugin.xml\', \'systembundle.properties\', \'profile.list\')");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("classifier = \'ls\'");
_builder_1.append("archiveClassifier = \'ls\'");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("append(\'plugin.properties\')");
Expand Down

0 comments on commit ffa47a7

Please sign in to comment.