Skip to content

Commit

Permalink
Merge pull request umple#848 from umple/gitIgnoreUmpleTL
Browse files Browse the repository at this point in the history
Adding UmpleTL directories to Gitignore
  • Loading branch information
TimLethbridge authored Jun 11, 2016
2 parents a0f0b94 + 23cd07e commit 5708aa5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ nohup.out
# umple specific
umpleonline/ump/tmp*

# generated Umple code that is not saved
src-gen-umple/

# generated umpleTL code that is not saved
src-gen-umpleTL/
src-gen-umpletl/

# os specific:
.DS_Store
Expand All @@ -17,7 +23,6 @@ umpleonline/ump/tmp*
.recommenders

*swp
src-gen-umple/

# eclipse
.classpath
Expand Down
6 changes: 4 additions & 2 deletions build/build.umple.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
<target name="clean">
<antcall target="template.clean" />
<delete dir="${project.path}/src-gen-umple" failonerror="false" />
<delete dir="${project.path}/src-gen-umpleTL" failonerror="false" />
<delete dir="${project.path}/src-gen-umpletl" failonerror="false" />
<delete dir="cruise.umplificator/src-gen-umple" failonerror="false" />
<delete dir="cruise.umple.validator/src-gen-umple" failonerror="false" />
</target>
Expand Down Expand Up @@ -99,10 +101,10 @@
</target>

<!-- ```````````````````````````
Generate JET Templates
Generate Templates
``````````````````````````` -->

<!-- Move the generic JET templates into the various UmpleTo* projects -->
<!-- Move the generic templates into the various UmpleTo* projects -->
<target name="templates">
<echo>Copying of common templates no longer active</echo>
</target>
Expand Down

0 comments on commit 5708aa5

Please sign in to comment.