Skip to content

Commit

Permalink
Merge pull request #173 from Open-MBEE/release/4.2.0
Browse files Browse the repository at this point in the history
Release/4.2.0
  • Loading branch information
ivan-gomes authored Jan 28, 2020
2 parents 6d4df0b + 027ac76 commit f77cda5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 41 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ dependencies {
// Other dependencies we're unable to resolve via standard repositories

if (buildAccess == 'internal') {
preCompile group: 'gov.nasa.jpl.cae.nomagic', name: 'cae-cameo-systems-modeler-core', version: '4.1.3', classifier: 'linux', ext: 'zip'
preCompile group: 'gov.nasa.jpl.cae.nomagic', name: 'cae-cameo-systems-modeler-core', version: '4.2.0', classifier: 'linux', ext: 'zip'
}
else {
preCompile group: 'com.nomagic', name: 'demomagicdraw', version: '190sp2', classifier: 'MagicDraw_Demo_190_sp2_no_install', ext: 'zip'
preCompile group: 'com.nomagic', name: 'sysml', version: '190sp2', classifier: 'SysML_Plugin_190_sp2_bundle', ext: 'zip'
preCompile group: 'com.nomagic', name: 'cst', version: '190sp2', classifier: 'Cameo_Simulation_Toolkit_Plugin_190_sp2', ext: 'zip'
preCompile group: 'com.nomagic', name: 'demomagicdraw', version: '190sp3', classifier: 'MagicDraw_Demo_190_sp3_no_install', ext: 'zip'
preCompile group: 'com.nomagic', name: 'sysml', version: '190sp3', classifier: 'SysML_Plugin_190_sp3_bundle', ext: 'zip'
preCompile group: 'com.nomagic', name: 'cst', version: '190sp3', classifier: 'Cameo_Simulation_Toolkit_Plugin_190_sp3', ext: 'zip'
}

// This ensures classpath load order to match the MagicDraw provided order and then includes extras needed for non-OpenAPI stuff.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=4.1.3
version=4.2.0
group=org.openmbee.magicdraw.mdk
descriptorFile=MDR_Plugin_Model_Development_Kit_91110_descriptor.xml
magicdDrawGroupName=gov.nasa.jpl.cae.magicdraw.mdk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void run(ProgressStatus progressStatus) {
Collection<File> responseFiles = new ArrayList<>(3);
for (Element element : rootElements) {
collectClientElementsRecursively(project, element, depth, clientElements);
Set<String> clientElementIds = clientElements.stream().map(pair -> pair.getKey().getLocalID()).collect(Collectors.toCollection(LinkedHashSet::new));
Set<String> clientElementIds = clientElements.stream().map(pair -> Converters.getElementToIdConverter().apply(pair.getKey())).collect(Collectors.toCollection(LinkedHashSet::new));
try {
File recursiveResponseFile, traversedResponseFile, responseFile;

Expand Down
35 changes: 0 additions & 35 deletions src/test/resources/runtest.sh

This file was deleted.

0 comments on commit f77cda5

Please sign in to comment.