From: Hannu Niemistö Date: Wed, 4 Oct 2017 19:42:19 +0000 (+0300) Subject: Merge "(refs #7508) Added missing effects in the simplification of EBind" X-Git-Tag: v1.31.0~144 X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=commitdiff_plain;h=4bb82aede02d798846196cc4f51e09d9f9161fef;hp=2148e9b3fecb3385ac71f302eea7045cf370afe2 Merge "(refs #7508) Added missing effects in the simplification of EBind" --- diff --git a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/Button.java b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/Button.java index 8dc5feab0..a3194e7b4 100644 --- a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/Button.java +++ b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/Button.java @@ -90,29 +90,19 @@ public class Button extends WidgetImpl { @Override public void exception(final Throwable t) { - SWTUtils.asyncExec(button, new Runnable() { - - @Override - public void run() { - if(isDisposed()) return; -// System.out.println("Button received new text: " + text); - button.setText(t.toString()); - } - + SWTUtils.asyncExec(button, () -> { + if(isDisposed()) return; +// System.out.println("Button received new text: " + text); + button.setText(t.toString()); }); } @Override public void execute(final String text) { - SWTUtils.asyncExec(button, new Runnable() { - - @Override - public void run() { - if(isDisposed()) return; -// System.out.println("Button received new text: " + text); - button.setText(text); - } - + SWTUtils.asyncExec(button, () -> { + if(isDisposed()) return; +// System.out.println("Button received new text: " + text); + button.setText(text); }); } @@ -134,15 +124,10 @@ public class Button extends WidgetImpl { @Override public void execute(final String text) { - SWTUtils.asyncExec(button, new Runnable() { - - @Override - public void run() { - if(isDisposed()) return; -// System.out.println("Button received new tooltip: " + text); - button.setToolTipText(text); - } - + SWTUtils.asyncExec(button, () -> { + if(isDisposed()) return; +// System.out.println("Button received new tooltip: " + text); + button.setToolTipText(text); }); } @@ -164,24 +149,17 @@ public class Button extends WidgetImpl { @Override public void execute(final ImageDescriptor imageDescriptor) { - SWTUtils.asyncExec(button, new Runnable() { - - @Override - public void run() { - - if(isDisposed()) return; -// System.out.println("Button received new image"); - ResourceManager rm = support.getParameter(WidgetSupport.RESOURCE_MANAGER); - if (rm != null) { - Image image = (Image) rm.get(imageDescriptor); - button.setImage(image); - } - // TODO: how can we resize without this knife?? - button.getParent().layout(); - button.getParent().getParent().layout(); - + SWTUtils.asyncExec(button, () -> { + if(isDisposed()) return; +// System.out.println("Button received new image"); + ResourceManager rm = support.getParameter(WidgetSupport.RESOURCE_MANAGER); + if (rm != null) { + Image image = (Image) rm.get(imageDescriptor); + button.setImage(image); } - + // TODO: how can we resize without this knife?? + button.getParent().layout(); + button.getParent().getParent().layout(); }); } @@ -201,12 +179,9 @@ public class Button extends WidgetImpl { } @Override public void execute(final Boolean selected) { - SWTUtils.asyncExec(button, new Runnable() { - @Override - public void run() { - if(isDisposed()) return; - button.setSelection(selected); - } + SWTUtils.asyncExec(button, () -> { + if(isDisposed()) return; + button.setSelection(Boolean.TRUE.equals(selected)); }); } @Override @@ -222,46 +197,34 @@ public class Button extends WidgetImpl { } public void setText(final ParametrizedRead read) { - - Simantics.getSession().async(new UniqueRead() { - - @Override - public String perform(ReadGraph graph) throws DatabaseException { - T input = support.getInput(graph); - return graph.syncRequest(read.get(input)); - } - - }, new Listener() { - - @Override - public void exception(Throwable t) { - t.printStackTrace(); - } - - @Override - public void execute(final String text) { - - if(isDisposed()) return; - - button.getDisplay().asyncExec(new Runnable() { - - @Override - public void run() { - button.setText(text); - } - - }); - } - - @Override - public boolean isDisposed() { - return button.isDisposed(); - } + Simantics.getSession().async(new UniqueRead() { + @Override + public String perform(ReadGraph graph) throws DatabaseException { + T input = support.getInput(graph); + return graph.syncRequest(read.get(input)); + } + }, new Listener() { + @Override + public void exception(Throwable t) { + ErrorLogger.defaultLogError(t); + } - }); + @Override + public void execute(final String text) { + if(isDisposed()) return; + button.getDisplay().asyncExec(() -> { + if(isDisposed()) return; + button.setText(text); + }); + } + @Override + public boolean isDisposed() { + return button.isDisposed(); + } + }); } - + public void setTooltipText(String text) { button.setToolTipText(text); } diff --git a/bundles/org.simantics.diagram/src/org/simantics/diagram/connection/ConnectionVisuals.java b/bundles/org.simantics.diagram/src/org/simantics/diagram/connection/ConnectionVisuals.java index 5f62ac314..802881e16 100644 --- a/bundles/org.simantics.diagram/src/org/simantics/diagram/connection/ConnectionVisuals.java +++ b/bundles/org.simantics.diagram/src/org/simantics/diagram/connection/ConnectionVisuals.java @@ -28,6 +28,10 @@ public class ConnectionVisuals { public final Double branchPointRadius; public final Double rounding; + public ConnectionVisuals(float[] color, StrokeType strokeType, Stroke stroke, Double rounding) { + this(color, strokeType, stroke, null, rounding); + } + public ConnectionVisuals(float[] color, StrokeType strokeType, Stroke stroke, Double branchPointRadius, Double rounding) { if (color != null && color.length < 3) throw new IllegalArgumentException("colors must have at least 3 components (rgb), got " + color.length); diff --git a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/BooleanPropertyFactory.java b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/BooleanPropertyFactory.java index 14dc51c1d..8efe2668a 100644 --- a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/BooleanPropertyFactory.java +++ b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/BooleanPropertyFactory.java @@ -36,7 +36,7 @@ public class BooleanPropertyFactory extends ReadFactoryImpl { @Override public Boolean perform(ReadGraph graph, Resource r) throws DatabaseException { - return graph.getPossibleRelatedValue2(r, graph.getResource(propertyURI), Bindings.BOOLEAN); + return Boolean.TRUE.equals( graph.getPossibleRelatedValue2(r, graph.getResource(propertyURI), Bindings.BOOLEAN) ); } } diff --git a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagramEditor/PopulateElementDropParticipant.java b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagramEditor/PopulateElementDropParticipant.java index 3b6da0b5b..4f2740602 100644 --- a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagramEditor/PopulateElementDropParticipant.java +++ b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/diagramEditor/PopulateElementDropParticipant.java @@ -159,10 +159,10 @@ public class PopulateElementDropParticipant extends AbstractDiagramParticipant i } try { - String valid = validateDrop(synchronizer.getSession(), r, + Object errorOrSymbolResource = validateDrop(synchronizer.getSession(), r, diagram. getHint(DiagramModelHints.KEY_DIAGRAM_RESOURCE)); - if (valid == null) { - ElementClassDragItem item = new ElementClassDragItem(synchronizer.getNodeClass(r)); + if (errorOrSymbolResource instanceof Resource) { + ElementClassDragItem item = new ElementClassDragItem(synchronizer.getNodeClass((Resource)errorOrSymbolResource)); item.getHintContext().setHint(ElementHints.KEY_TRANSFORM, AffineTransform.getScaleInstance(1, 1)); dp.add(item); } @@ -207,10 +207,10 @@ public class PopulateElementDropParticipant extends AbstractDiagramParticipant i } } - private String validateDrop(RequestProcessor processor, final Resource draggedResource, final Resource dropTarget) throws DatabaseException { - return processor.syncRequest(new UniqueRead() { + private Object validateDrop(RequestProcessor processor, final Resource draggedResource, final Resource dropTarget) throws DatabaseException { + return processor.syncRequest(new UniqueRead() { @Override - public String perform(ReadGraph graph) throws DatabaseException { + public Object perform(ReadGraph graph) throws DatabaseException { // System.out.println("dragged resource: " + draggedResource); // System.out.println("drop target resource: " + dropTarget); Resource sourceModel = graph.syncRequest(new PossibleIndexRoot(draggedResource)); @@ -240,18 +240,28 @@ public class PopulateElementDropParticipant extends AbstractDiagramParticipant i } } + // Check if dragged object is symbol or component type and determine other + Resource componentType; + Resource symbol = graph.getPossibleObject(draggedResource, MOD.ComponentTypeToSymbol); + + if(symbol != null) + componentType = draggedResource; + else { + componentType = graph.getPossibleObject(draggedResource, MOD.SymbolToComponentType); + symbol = draggedResource; + } + // Prevent dragging a symbol of component type into its own configuration. - Resource componentTypeFromSymbol = graph.getPossibleObject(draggedResource, MOD.SymbolToComponentType); - if (componentTypeFromSymbol != null) { + if (componentType != null) { if (configuration != null) { Resource componentTypeFromDiagram = graph.getPossibleObject(configuration, STR.Defines); - if (componentTypeFromDiagram != null && componentTypeFromSymbol.equals(componentTypeFromDiagram)) { + if (componentTypeFromDiagram != null && componentType.equals(componentTypeFromDiagram)) { return "Cannot instantiate user component within its own configuration."; } } } - return null; + return symbol; } }); } diff --git a/bundles/org.simantics.scl.rest/scl/SCL/REST/Server.scl b/bundles/org.simantics.scl.rest/scl/Server/RESTSCL.scl similarity index 100% rename from bundles/org.simantics.scl.rest/scl/SCL/REST/Server.scl rename to bundles/org.simantics.scl.rest/scl/Server/RESTSCL.scl diff --git a/bundles/org.simantics.scl.rest/src/org/simantics/scl/rest/SCLRESTServer.java b/bundles/org.simantics.scl.rest/src/org/simantics/scl/rest/SCLRESTServer.java index 0e642026e..b7e8090b5 100644 --- a/bundles/org.simantics.scl.rest/src/org/simantics/scl/rest/SCLRESTServer.java +++ b/bundles/org.simantics.scl.rest/src/org/simantics/scl/rest/SCLRESTServer.java @@ -36,7 +36,6 @@ public class SCLRESTServer { server = new Server(); ServerConnector connector = new ServerConnector(server); connector.setPort(preferablePort); - connector.setHost("localhost"); server.setConnectors(new Connector[] { connector }); diff --git a/features/org.simantics.desktop.product.feature/feature.xml b/features/org.simantics.desktop.product.feature/feature.xml index 9bd6f1eda..59c224643 100644 --- a/features/org.simantics.desktop.product.feature/feature.xml +++ b/features/org.simantics.desktop.product.feature/feature.xml @@ -25,6 +25,10 @@ id="org.simantics.modeling.ui.workbench.feature" version="0.0.0"/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/releng/doc/release.html b/releng/doc/release.html index aaccfc915..ebe85ee67 100644 --- a/releng/doc/release.html +++ b/releng/doc/release.html @@ -320,19 +320,28 @@ img {

Released Plug-in Components and Products

-

There are both plug-in components and products that are part of the "Simantics release train" that shall be released simultaneously to a major or minor Simantics release.

+

There are both plug-in components and products that are part of the Simantics Release Train that shall be released simultaneously to a major or minor Simantics release.

Plug-in components are installable features that are deployed online as P2 repositories for general availability. Products are deployed as ZIP files and made available online in designated locations on simantics.org.

-

Products that are part of the release train:

-

Plug-in components that are part of the release train:

+

Products that are part of the release train:

+
    +
  • Simantics Desktop
  • +
  • Simantics System Dynamics Tool +
      +
    • This is Simantics Desktop with Simantics System Dynamics Tool features installed
    • +
    +

For simplicity, each of these components are versioned accoring to platform versioning, i.e. for Platform SDK 1.26.0 there will be Simantics Desktop 1.26.0, Sysdyn 1.26.0, and so on.


@@ -359,7 +368,9 @@ git push origin release/x.y.z[.w]

When creating major/minor releases <commit> is usually a commit in the master branch. With service releases, branch from an existing release/* branch instead.

Prepare release branch for use

-

Prepare .target files

+

In release 1.31.0 Simantics started using uses the wonderful tool from Obeo (https://github.com/mbarbero/fr.obeo.releng.targetplatform) to generate .target files from .tpd files which allow much simpler specification of the target contents and also composition of .tpd files via inclusion.

+

In the following steps, it is recommended to ensure every .target file is up-to-date by regenerating them from .tpd files. While doing so, take care to use up-to-date online contents to perform the generation.

+

Prepare .tpd files

  1. Retrieve release branch of the platform repository

    @@ -370,29 +381,22 @@ git checkout release/x.y.z[.w]
  2. -

    Edit all target platform files in releng/org.simantics.sdk.build.targetdefinition/, i.e.

    +

    Edit all target platform files in releng/org.simantics.sdk.build.targetdefinition/, i.e.

      -
    • simantics.target
    • -
    • org.simantics.sdk.build.targetdefinition.target
    • +
    • org.simantics.sdk.build.targetdefinition.tpd
    • +
    • simantics.tpd
    -

    At the beginning of simantics.target file, increment sequenceNumber by 1 and replace -the version numbers in target name and org.simantics.sdk.feature.group and -org.simantics.sdk.source.feature.group with x.y.z[.w]:

    -
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    -<?pde version="3.8"?>
    -<target name="Simantics x.y.z[.w]" sequenceNumber="11">
    -<unit id="org.simantics.sdk.feature.group" version="x.y.z[.w]"/>
    -<unit id="org.simantics.sdk.source.feature.group" version="x.y.z[.w]"/>
    -
    -

    Next, replace the following rows in both mentioned files:

    -
    <repository location="http://www.simantics.org/download/master/sdk"/>
    -<repository location="http://www.simantics.org/download/master/external-components/maven"/>
    -<repository location="http://www.simantics.org/download/master/external-components/manual"/>
    +

    Replace the following rows in both mentioned files:

    +
    location "http://www.simantics.org/download/master/external-components/maven" {
    +location "http://www.simantics.org/download/master/external-components/manual" {
    +include "http://www.simantics.org/download/master/org.simantics.sdk.build.targetdefinition.tpd"
    +location "http://www.simantics.org/download/master/sdk" {
     

    with

    -
    <repository location="http://www.simantics.org/download/release/x.y.z[.w]/sdk"/>
    -<repository location="http://www.simantics.org/download/release/x.y.z[.w]/external-components/maven"/>
    -<repository location="http://www.simantics.org/download/release/x.y.z[.w]/external-components/manual"/>
    +
    location "http://www.simantics.org/download/master/release/x.y.z[.w]/maven" {
    +location "http://www.simantics.org/download/master/release/x.y.z[.w]/manual" {
    +include "http://www.simantics.org/download/release/x.y.z[.w]/org.simantics.sdk.build.targetdefinition.tpd"
    +location "http://www.simantics.org/download/release/x.y.z[.w]/sdk" {
     
  3. @@ -426,6 +430,7 @@ the version numbers in target name and org.simantics.sdk.feature.groupgitweb.

    Commit the changes with the following commit message

    Bumped master target and org.simantics.sdk feature versions to x.y.z[.w].
    +
     refs #yyyy
     

    where #yyyy is the number of the next release's release engineering issue.

    @@ -449,6 +454,20 @@ refs #yyyy

    Running these two builds will ensure that both the external components required to build the SDK and the Simantics SDK for the new release branch are published online at http://www.simantics.org/download/release/x.y.z[.w]/.

    After this, whenever changes are pushed/merged to release/x.y.z[.w] branch in Gerrit, new SDK/Simantics SDK builds are triggered automatically and they will publish the results at the same location online.

    This means that one does not have to do any tricks after this to build and publish the SDK as a P2 repository online. It is an automated process that is performed by the SDK/Simantics SDK Jenkins job.

    +

    Update .target files

    +

    Lastly, we want to change the .target files to point to the correct P2 repository locations. This happens by opening the previously edited .tpd files in Obeo's editor and regenerating the .target files by pressing Alt+R.

    +

    Push the changed files to remote again with commit message:

    +
    Configured release/x.y.z[.w] branch .target files.
    +
    +refs #xxxx
    +
    +

    Test Release Train build

    +

    Trigger an execution of the simantics-release-train Jenkins job with parameters

    +
      +
    • GERRIT_REFNAME: release/x.y.z[.w]
    • +
    • PUBLISH_ARTIFACTS: true
    • +
    +

    to ensure that all components of the release train build fine and to publish first versions of P2 repositories of everything online.

    Review documentation

    Documentation to review:

      @@ -583,16 +602,6 @@ Insert some general thoughts on the release...

      TODO

      -
        -
      • Create a parametrized release train pipeline build in Jenkins that creates all artifacts of a simantics release -
          -
        • Desktop, Sysdyn, R, Simupedia, FMIL, FMI Studio
        • -
        -
      • -
      -
      • Incorporate tutorial code in the platform repository as a separate folder to allow platform builds to directly ensure that the tutorial code still builds OK
      diff --git a/releng/doc/release.md b/releng/doc/release.md index 871b1d0aa..3f4d69bfa 100644 --- a/releng/doc/release.md +++ b/releng/doc/release.md @@ -24,19 +24,25 @@ # Released Plug-in Components and Products -There are both plug-in components and products that are part of the "Simantics release train" that shall be released simultaneously to a major or minor Simantics release. +There are both plug-in components and products that are part of the _Simantics Release Train_ that shall be released simultaneously to a major or minor Simantics release. Plug-in components are installable features that are deployed online as P2 repositories for general availability. Products are deployed as ZIP files and made available online in designated locations on simantics.org. -Products that are part of the release train: -* Simantics Desktop -* Simantics System Dynamics Tool - [simantics/sysdyn.git](https://www.simantics.org:8088/r/gitweb?p=simantics/sysdyn.git;a=summary) - Plug-in components that are part of the release train: -* Simantics R - [simantics/r.git](https://www.simantics.org:8088/r/gitweb?p=simantics/r.git;a=summary) +* Simupedia - [members/simupedia.git](https://www.simantics.org:8088/r/gitweb?p=members/simupedia.git;a=summary) * FMIL - [simantics/fmil.git](https://www.simantics.org:8088/r/gitweb?p=simantics/fmil.git;a=summary) * FMI Studio - [members/fmi.git](https://www.simantics.org:8088/r/gitweb?p=members/fmi.git;a=summary) -* Simupedia - [members/simupedia.git](https://www.simantics.org:8088/r/gitweb?p=members/simupedia.git;a=summary) +* Interoperability components - [simantics/interop.git](https://www.simantics.org:8088/r/gitweb?p=simantics/interop.git;a=summary) +* Simantics R binding - [simantics/r.git](https://www.simantics.org:8088/r/gitweb?p=simantics/r.git;a=summary) +* Matlab SCL binding - [simantics/matlab.git](https://www.simantics.org:8088/r/gitweb?p=simantics/matlab.git;a=summary) +* Python SCL binding - [simantics/python.git](https://www.simantics.org:8088/r/gitweb?p=simantics/python.git;a=summary) +* Simantics System Dynamics - [simantics/sysdyn.git](https://www.simantics.org:8088/r/gitweb?p=simantics/sysdyn.git;a=summary) +* Simantics District modelling components - [simantics/district.git](https://www.simantics.org:8088/r/gitweb?p=simantics/district.git;a=summary) + +Products that are part of the release train: +* Simantics Desktop +* Simantics System Dynamics Tool + * This is Simantics Desktop with Simantics System Dynamics Tool features installed For simplicity, each of these components are versioned accoring to platform versioning, i.e. for Platform SDK 1.26.0 there will be Simantics Desktop 1.26.0, Sysdyn 1.26.0, and so on. @@ -71,7 +77,11 @@ With service releases, branch from an existing `release/*` branch instead. ## Prepare release branch for use -### Prepare .target files +In release 1.31.0 Simantics started using uses the wonderful tool from Obeo ([https://github.com/mbarbero/fr.obeo.releng.targetplatform](https://github.com/mbarbero/fr.obeo.releng.targetplatform)) to generate `.target` files from `.tpd` files which allow much simpler specification of the target contents and also composition of .tpd files via inclusion. + +In the following steps, it is recommended to ensure every `.target` file is up-to-date by regenerating them from `.tpd` files. While doing so, take care to use up-to-date online contents to perform the generation. + +### Prepare `.tpd` files 1. Retrieve release branch of the platform repository @@ -80,35 +90,26 @@ With service releases, branch from an existing `release/*` branch instead. git branch release/x.y.z[.w] remotes/origin/release/x.y.z[.w] git checkout release/x.y.z[.w] -2. Edit all target platform files in `releng/org.simantics.sdk.build.targetdefinition/`, i.e. - * `simantics.target` - * `org.simantics.sdk.build.targetdefinition.target` - - At the beginning of simantics.target file, increment `sequenceNumber` by 1 and replace - the version numbers in target name and `org.simantics.sdk.feature.group` and - `org.simantics.sdk.source.feature.group` with `x.y.z[.w]`: - ~~~ - - - - - - ~~~ +2. Edit all target platform files in `releng/org.simantics.sdk.build.targetdefinition/`, i.e. + * `org.simantics.sdk.build.targetdefinition.tpd` + * `simantics.tpd` - Next, replace the following rows in both mentioned files: + Replace the following rows in both mentioned files: ~~~ - - - + location "http://www.simantics.org/download/master/external-components/maven" { + location "http://www.simantics.org/download/master/external-components/manual" { + include "http://www.simantics.org/download/master/org.simantics.sdk.build.targetdefinition.tpd" + location "http://www.simantics.org/download/master/sdk" { ~~~ with ~~~ - - - + location "http://www.simantics.org/download/master/release/x.y.z[.w]/maven" { + location "http://www.simantics.org/download/master/release/x.y.z[.w]/manual" { + include "http://www.simantics.org/download/release/x.y.z[.w]/org.simantics.sdk.build.targetdefinition.tpd" + location "http://www.simantics.org/download/release/x.y.z[.w]/sdk" { ~~~ 3. Edit version number of `org.simantics.sdk` feature in `features/org.simantics.sdk.feature/feature.xml` to `x.y.z[.w]`. @@ -144,6 +145,7 @@ With service releases, branch from an existing `release/*` branch instead. Commit the changes with the following commit message Bumped master target and org.simantics.sdk feature versions to x.y.z[.w]. + refs #yyyy where `#yyyy` is the number of the next release's release engineering issue. @@ -163,6 +165,24 @@ After this, whenever changes are pushed/merged to `release/x.y.z[.w]` branch in This means that one does not have to do any tricks after this to build and publish the SDK as a P2 repository online. It is an automated process that is performed by the [SDK/Simantics SDK](https://www.simantics.org/jenkins/job/SDK/job/Simantics%20SDK/) Jenkins job. +### Update `.target` files + +Lastly, we want to change the `.target` files to point to the correct P2 repository locations. This happens by opening the previously edited `.tpd` files in Obeo's editor and regenerating the `.target` files by pressing Alt+R. + +Push the changed files to remote again with commit message: + + Configured release/x.y.z[.w] branch .target files. + + refs #xxxx + +### Test Release Train build + +Trigger an execution of the [simantics-release-train](https://www.simantics.org/jenkins/job/simantics-release-train/) Jenkins job with parameters +* GERRIT_REFNAME: `release/x.y.z[.w]` +* PUBLISH_ARTIFACTS: `true` + +to ensure that all components of the release train build fine and to publish first versions of P2 repositories of everything online. + ## Review documentation Documentation to review: @@ -278,11 +298,4 @@ Insert some general thoughts on the release... # TODO -* Start using [https://github.com/mbarbero/fr.obeo.releng.targetplatform](https://github.com/mbarbero/fr.obeo.releng.targetplatform) to generate `.target` files. `.tpd` files allow specifying version ranges instead of specific versions. - - -* Create a parametrized release train pipeline build in Jenkins that creates all artifacts of a simantics release - * Desktop, Sysdyn, R, Simupedia, FMIL, FMI Studio - - * Incorporate tutorial code in the platform repository as a separate folder to allow platform builds to directly ensure that the tutorial code still builds OK \ No newline at end of file