Compare commits

...

1 Commits

Author SHA1 Message Date
Denis Sergent
2092223c51 TESB-27989 Fix publish DS to cloud as MS
Dataservices are always published as OSGI bundles without taking care of
the Job defined build type. With this fix, DS with build type
"Microservice" will be built and published with the appropriate format.
2020-01-29 12:19:55 +01:00

View File

@@ -96,7 +96,10 @@ public class BuildJobFactory {
ERepositoryObjectType repositoryObjectType = ERepositoryObjectType.getItemType(processItem);
if (repositoryObjectType == ERepositoryObjectType.PROCESS_ROUTE && "ROUTE_MICROSERVICE".equals(type)) {
esb = true;
} else if ("REST_MS".equals(type)) {
esb = true;
}
}
if (type != null) {