Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #245 from Open-MBEE/release/3.2.4
Browse files Browse the repository at this point in the history
Release/3.2.4
  • Loading branch information
HuiJun authored Mar 10, 2018
2 parents 62c60e4 + 4cea71c commit 80466ef
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion mms-ent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
<name>Alfresco Repository and Share Quickstart with database and an embedded Tomcat runner.</name>
<description>This All-in-One project allows to manage all the components involved in Alfresco development (Repo, Share, Solr4, AMPs) in one project
</description>
Expand Down
2 changes: 1 addition & 1 deletion mms-ent/repo-amp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
</parent>
<repositories>
<repository>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,8 @@ private void reorderChildViews(JSONObject element, JSONArray newElements, JSONAr
} else {
notAViewList.add(ownedAttribute.getString(Sjm.SYSMLID));
}
} else if (ownedAttribute != null) {
notAViewList.add(ownedAttribute.getString(Sjm.SYSMLID));
}
}

Expand Down Expand Up @@ -962,8 +964,8 @@ private void reorderChildViews(JSONObject element, JSONArray newElements, JSONAr
newElements.put(propertyASI);
addedElements.put(propertyASI);
JSONObject newASI = new JSONObject();
newASI.put(Sjm.SYSMLID, property.getString(Sjm.SYSMLID));
newASI.put(Sjm.ELASTICID, property.getString(Sjm.ELASTICID));
newASI.put(Sjm.SYSMLID, propertyASI.getString(Sjm.SYSMLID));
newASI.put(Sjm.ELASTICID, propertyASI.getString(Sjm.ELASTICID));
commitAdded.put(newASI);

// Create Associations
Expand Down Expand Up @@ -1020,8 +1022,8 @@ private void reorderChildViews(JSONObject element, JSONArray newElements, JSONAr
newElements.put(association);
addedElements.put(association);
JSONObject newAssociation = new JSONObject();
newAssociation.put(Sjm.SYSMLID, property.getString(Sjm.SYSMLID));
newAssociation.put(Sjm.ELASTICID, property.getString(Sjm.ELASTICID));
newAssociation.put(Sjm.SYSMLID, association.getString(Sjm.SYSMLID));
newAssociation.put(Sjm.ELASTICID, association.getString(Sjm.ELASTICID));
commitAdded.put(newAssociation);

// Create Association Property
Expand Down Expand Up @@ -1077,8 +1079,8 @@ private void reorderChildViews(JSONObject element, JSONArray newElements, JSONAr
newElements.put(assocProperty);
addedElements.put(assocProperty);
JSONObject newAssociationProperty = new JSONObject();
newAssociationProperty.put(Sjm.SYSMLID, property.getString(Sjm.SYSMLID));
newAssociationProperty.put(Sjm.ELASTICID, property.getString(Sjm.ELASTICID));
newAssociationProperty.put(Sjm.SYSMLID, assocProperty.getString(Sjm.SYSMLID));
newAssociationProperty.put(Sjm.ELASTICID, assocProperty.getString(Sjm.ELASTICID));
commitAdded.put(newAssociationProperty);

ownedAttributesIds.put(propertySysmlId);
Expand Down
2 changes: 1 addition & 1 deletion mms-ent/repo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion mms-ent/runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion mms-ent/share-amp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
</parent>

<!--
Expand Down
2 changes: 1 addition & 1 deletion mms-ent/share/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion mms-ent/solr-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>gov.nasa.jpl.mbee</groupId>
<artifactId>mms-ent</artifactId>
<version>3.2.3</version>
<version>3.2.4</version>
</parent>

<!-- Build Solr Configuration only when we run an embedded Tomcat (i.e. profile run is enabled).
Expand Down

0 comments on commit 80466ef

Please sign in to comment.