Skip to content

Commit

Permalink
Fixing build from error 19
Browse files Browse the repository at this point in the history
  • Loading branch information
TimLethbridge committed Mar 19, 2018
1 parent 9d997e1 commit 4fe8d66
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
16 changes: 16 additions & 0 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,22 @@
<ant antfile="build/build.testbed.xml" target="testRuby" inheritAll="true" />
</target>

<target name="sandbox">
<deps-declare-taskdef />

<trycatch property="foo" reference="bar">
<try>
<antcall target="qaBuildingPage" />

<echo>Building ONLY Sandbox for Testing Infrastructure</echo>
<ant antfile="build/build.sandbox.xml" target="build" inheritAll="false" />
</try>

<finally>
<antcall target="qaLandingPage" />
</finally>
</trycatch>
</target>

</project>

1 change: 1 addition & 0 deletions cruise.umple/src/Master.ump
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ strictness allow 1007;
strictness allow 1008;
strictness allow 46;
strictness allow 36;
strictness allow 170; // allow custom constructors

use Documenter.ump;
use Generator.ump;
Expand Down
2 changes: 1 addition & 1 deletion cruise.umple/src/UmpleInternalParser_CodeClass.ump
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ class UmpleInternalParser
checkDuplicateAssociationNames();
checkDuplicateAssociationNamesClassHierarchy();
checkIgnoredAssociations();
checkSubclassSameAssociationDifferentRoleNames();
// checkSubclassSameAssociationDifferentRoleNames();

checkExtendsForCycles();
checkSortedAssociations();
Expand Down
1 change: 1 addition & 0 deletions dev-tools/udock
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,6 @@ echo "For log: open http://localhost:$port/scripts/log.php"
if (`uname` == "Darwin") then
( sleep 2 ; open "http://localhost:$port/umple.php$modelarg" ) &
endif
echo running docker run --rm -ti -p "$port":80 $volcommand umple/umpleonline$image
docker run --rm -ti -p "$port":80 $volcommand umple/umpleonline$image >/dev/null
echo Docker image quit

0 comments on commit 4fe8d66

Please sign in to comment.