From adaeb3d160feadece940df4094b18fd6d180c7ba Mon Sep 17 00:00:00 2001 From: willard Date: Mon, 16 Mar 2020 21:55:42 -0700 Subject: [PATCH 1/4] NOMAGIC-1162 - CI for MDK Systems Reasoner --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 8579d43..2872d93 100644 --- a/build.gradle +++ b/build.gradle @@ -87,14 +87,14 @@ 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.1-SNAPSHOT', 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' } - preCompile group: 'org.openmbee.magicdraw.mdk', name: 'mdk', version: '4.2.0', classifier: 'plugin', ext: 'zip' + preCompile group: 'org.openmbee.magicdraw.mdk', name: 'mdk', version: '4.2.1-SNAPSHOT', classifier: 'plugin', ext: 'zip' // This ensures classpath load order to match the MagicDraw provided order and then includes extras needed for non-OpenAPI stuff. // This was necessary because of the Application class stubbing that was done in the chromium libraries. From bd66541c36b2400b5c03c81d23cce131a6a848e0 Mon Sep 17 00:00:00 2001 From: willard Date: Wed, 18 Mar 2020 14:20:58 -0700 Subject: [PATCH 2/4] NOMAGIC-1162 - CI for MDK Systems Reasoner --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 2872d93..2c0b29d 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ apply plugin: 'rebel' // In this section you declare where to find the dependencies of your project repositories { - // mavenCentral() + maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' } if (buildAccess == 'internal') { maven { url 'https://cae-artifactory.jpl.nasa.gov/artifactory/maven-libs-snapshot-virtual' From fda62ed954e635474f7d971963648cb89b4c1c2b Mon Sep 17 00:00:00 2001 From: willard Date: Thu, 19 Mar 2020 13:41:46 -0700 Subject: [PATCH 3/4] NOMAGIC-1162 - CI for MDK Systems Reasoner, testing tags --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 4043bff..9a1e2e2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -version=1.0.0 -group=org.openmbee.mdk.systems_reasoner +version=0.0.3 +group=org.openmbee.magicdraw.mdk.systems_reasoner descriptorFile=MDR_Plugin_MDK_Systems_Reasoner_91120_descriptor.xml # Add credentials for publishing to ~/.gradle/gradle.properties artifactoryUrl= From d2299d94c318e1e6dc9b3151455d0ea09408c5e3 Mon Sep 17 00:00:00 2001 From: willard Date: Mon, 23 Mar 2020 08:50:18 -0700 Subject: [PATCH 4/4] NOMAGIC-1162 - Setting version for 1.0.0 --- build.gradle | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 2c0b29d..98e580b 100644 --- a/build.gradle +++ b/build.gradle @@ -87,14 +87,14 @@ 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.2.1-SNAPSHOT', classifier: 'linux', ext: 'zip' + preCompile group: 'gov.nasa.jpl.cae.nomagic', name: 'cae-cameo-systems-modeler-core', version: '4.2.1', classifier: 'linux', ext: 'zip' } else { 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' } - preCompile group: 'org.openmbee.magicdraw.mdk', name: 'mdk', version: '4.2.1-SNAPSHOT', classifier: 'plugin', ext: 'zip' + preCompile group: 'org.openmbee.magicdraw.mdk', name: 'mdk', version: '4.2.1', classifier: 'plugin', ext: 'zip' // This ensures classpath load order to match the MagicDraw provided order and then includes extras needed for non-OpenAPI stuff. // This was necessary because of the Application class stubbing that was done in the chromium libraries. diff --git a/gradle.properties b/gradle.properties index 9a1e2e2..26f8fb3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.0.3 +version=1.0.0 group=org.openmbee.magicdraw.mdk.systems_reasoner descriptorFile=MDR_Plugin_MDK_Systems_Reasoner_91120_descriptor.xml # Add credentials for publishing to ~/.gradle/gradle.properties