Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/MegaMek/megamek
Browse files Browse the repository at this point in the history
  • Loading branch information
arlith committed Sep 1, 2016
2 parents 171a71a + f1f11aa commit e81f75f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion megamek/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

<target name="compile" depends="init" description="Compile java sources into class files">
<!-- compile -->
<javac debug="true" debuglevel="lines,source" target="1.7" source="1.7" destdir="${builddir}" srcdir="${srcdir}" memoryInitialSize="512m" memoryMaximumSize="512m" fork="true" encoding="UTF-8">
<javac debug="true" debuglevel="lines,source" target="1.8" source="1.8" destdir="${builddir}" srcdir="${srcdir}" memoryInitialSize="512m" memoryMaximumSize="512m" fork="true" encoding="UTF-8">
<classpath>
<pathelement location="${basedir}" />
<fileset dir="${libdir}" includes="*.jar" />
Expand Down
2 changes: 1 addition & 1 deletion megamek/packaging.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

<!-- compile -->
<echo message="building MegaMek from git sources" />
<javac debug="true" debuglevel="lines,source" target="1.7" source="1.7" destdir="${pkgbuilddir}" srcdir="${pkgdir}/${srcdir}" memoryInitialSize="512m" memoryMaximumSize="512m" fork="true" encoding="UTF-8">
<javac debug="true" debuglevel="lines,source" target="1.8" source="1.8" destdir="${pkgbuilddir}" srcdir="${pkgdir}/${srcdir}" memoryInitialSize="512m" memoryMaximumSize="512m" fork="true" encoding="UTF-8">
<classpath>
<pathelement location="${pkgdir}" />
<fileset dir="${pkgdir}/${libdir}" includes="*.jar" />
Expand Down
2 changes: 1 addition & 1 deletion megamek/packaging_local.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@

<!-- compile -->
<echo message="building MegaMek from local sources" />
<javac debug="true" debuglevel="lines,source" target="1.7" source="1.7" destdir="${localbuilddir}" srcdir="${localdir}/${srcdir}" memoryInitialSize="512m" memoryMaximumSize="512m" fork="true" encoding="UTF-8">
<javac debug="true" debuglevel="lines,source" target="1.8" source="1.8" destdir="${localbuilddir}" srcdir="${localdir}/${srcdir}" memoryInitialSize="512m" memoryMaximumSize="512m" fork="true" encoding="UTF-8">
<classpath>
<pathelement location="${localdir}" />
<fileset dir="${localdir}/${libdir}" includes="*.jar" />
Expand Down

0 comments on commit e81f75f

Please sign in to comment.