minesweeper/pom.xml
changeset 223 4ee062b3f5ed
parent 222 5959a90ffda7
child 227 fd26342cf23d
child 229 6e5c2ce01688
     1.1 --- a/minesweeper/pom.xml	Tue Nov 04 06:39:53 2014 +0100
     1.2 +++ b/minesweeper/pom.xml	Tue Nov 04 19:30:23 2014 +0100
     1.3 @@ -27,6 +27,7 @@
     1.4      <project.mainclass>org.apidesign.demo.minesweeper.Main</project.mainclass>
     1.5      <netbeans.compile.on.save>none</netbeans.compile.on.save>
     1.6      <bck2brwsr.obfuscationlevel>FULL</bck2brwsr.obfuscationlevel>
     1.7 +    <teavm.debug>false</teavm.debug>
     1.8    </properties>
     1.9    <build>
    1.10        <plugins>
    1.11 @@ -425,12 +426,12 @@
    1.12                                </goals>
    1.13                                <phase>process-classes</phase>
    1.14                                <configuration>
    1.15 +                                  <mainClass>org.apidesign.demo.minesweeper.MinesModel</mainClass>
    1.16 +                                  <debugInformationGenerated>${teavm.debug}</debugInformationGenerated>
    1.17 +                                  <sourceMapsGenerated>${teavm.debug}</sourceMapsGenerated>
    1.18 +                                  <sourceFilesCopied>${teavm.debug}</sourceFilesCopied>
    1.19                                    <!-- Whether we want TeaVM to minify (obfuscate) the generated JavaScript -->
    1.20                                    <minifying>false</minifying>
    1.21 -                                  <properties>
    1.22 -                                      <!-- This classes (separated with , ; space) will be available through vm.loadClass() -->
    1.23 -                                      <html4j.entryPoints>org.apidesign.demo.minesweeper.MinesModel</html4j.entryPoints>
    1.24 -                                  </properties>
    1.25                                    <!-- Don't include main page - we created it by ourselves -->
    1.26                                    <mainPageIncluded>false</mainPageIncluded>
    1.27                                    <!-- Merge runtime.js instead of putting as a separate file -->