@eui/tools 6.5.5 → 6.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.5.
|
|
1
|
+
6.5.6
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.5.6 (2023-03-03)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* Backend is just the project and package name MWP-9366 [MWP-9366](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9366) ([c72c5e98](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c72c5e98dffd8262d8f69c1587b972ce89cef72e))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.5.5 (2023-03-03)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -115,7 +115,7 @@ const generateSonarPropertiesUI = (pkgName, pkgVersion, outputPath) => {
|
|
|
115
115
|
|
|
116
116
|
|
|
117
117
|
|
|
118
|
-
const generateSonarPropertiesBackend = (groupId,
|
|
118
|
+
const generateSonarPropertiesBackend = (groupId, pkgName, version, modulesList, outputPath) => {
|
|
119
119
|
tools.logInfo('Generating sonar property file for UI package...');
|
|
120
120
|
|
|
121
121
|
const outputFilePath = path.join(outputPath, 'sonar-project.properties');
|
|
@@ -136,7 +136,7 @@ const generateSonarPropertiesBackend = (groupId, artifactId, version, modulesLis
|
|
|
136
136
|
})
|
|
137
137
|
.then(() => {
|
|
138
138
|
tools.logInfo('Replace project name token...');
|
|
139
|
-
return tools.replaceInFile(outputFilePath, '@project.name@',
|
|
139
|
+
return tools.replaceInFile(outputFilePath, '@project.name@', pkgName.toUpperCase());
|
|
140
140
|
})
|
|
141
141
|
.then(() => {
|
|
142
142
|
tools.logInfo('Replace project version token...');
|
|
@@ -140,7 +140,7 @@ const runBackend = (pkg, isMaster) => {
|
|
|
140
140
|
})
|
|
141
141
|
.then((pomInfos) => {
|
|
142
142
|
return templateUtils.generateSonarPropertiesBackend(
|
|
143
|
-
pomInfos.groupId,
|
|
143
|
+
pomInfos.groupId, pkg.name, pomInfos.version, pomInfos.modulesList, pkg.paths.root
|
|
144
144
|
);
|
|
145
145
|
})
|
|
146
146
|
.then(() => {
|