minesweeper/pom.xml
changeset 147 69ff76aa9280
parent 144 f784d803f065
parent 138 f4d6b81c2f07
child 149 8d13c397eb41
     1.1 --- a/minesweeper/pom.xml	Tue May 20 06:05:56 2014 +0200
     1.2 +++ b/minesweeper/pom.xml	Tue May 20 06:09:37 2014 +0200
     1.3 @@ -40,6 +40,20 @@
     1.4                </configuration>
     1.5            </plugin>
     1.6            <plugin>
     1.7 +              <groupId>org.apache.maven.plugins</groupId>
     1.8 +              <artifactId>maven-jar-plugin</artifactId>
     1.9 +              <version>2.4</version>
    1.10 +              <configuration>
    1.11 +                  <archive>
    1.12 +                      <manifest>
    1.13 +                          <mainClass>${project.mainclass}</mainClass>
    1.14 +                          <addClasspath>true</addClasspath>
    1.15 +                          <classpathPrefix>lib/</classpathPrefix>
    1.16 +                      </manifest>
    1.17 +                  </archive>
    1.18 +              </configuration>
    1.19 +          </plugin>
    1.20 +          <plugin>
    1.21                <groupId>org.codehaus.mojo</groupId>
    1.22                <artifactId>exec-maven-plugin</artifactId>
    1.23                <version>1.2.1</version>
    1.24 @@ -401,6 +415,43 @@
    1.25            </build>
    1.26        </profile>
    1.27        <profile>
    1.28 +          <id>ibrwsr</id>
    1.29 +          <dependencies>
    1.30 +              <dependency>
    1.31 +                  <groupId>org.apidesign.brwsr</groupId>
    1.32 +                  <artifactId>ibrwsr</artifactId>
    1.33 +                  <version>1.0-SNAPSHOT</version>
    1.34 +                  <scope>runtime</scope>
    1.35 +              </dependency>
    1.36 +          </dependencies>
    1.37 +          <build>
    1.38 +              <plugins>
    1.39 +                  <plugin>
    1.40 +                      <groupId>org.robovm</groupId>
    1.41 +                      <artifactId>robovm-maven-plugin</artifactId>
    1.42 +                      <version>0.0.11.1</version>
    1.43 +                      <configuration>
    1.44 +                          <config>
    1.45 +                              <mainClass>org.apidesign.demo.minesweeper.Main</mainClass>
    1.46 +                              <forceLinkClasses>
    1.47 +                                  <pattern>java.util.logging.ConsoleHandler</pattern>
    1.48 +                                  <pattern>java.util.logging.SimpleFormatter</pattern>
    1.49 +                                  <pattern>org.netbeans.html.ko4j.KO4J</pattern>
    1.50 +                                  <pattern>org.netbeans.html.sound.impl.BrowserAudioEnv</pattern>
    1.51 +                                  <pattern>org.apidesign.brwsr.IBrwsrPrsntr</pattern>
    1.52 +                              </forceLinkClasses>
    1.53 +                              <executableName>MineSweeper</executableName>
    1.54 +                              <resources>
    1.55 +                                  <resource>src/main/webapp/pages/</resource>
    1.56 +                              </resources>
    1.57 +                          </config>
    1.58 +                          <includeJFX>false</includeJFX>
    1.59 +                      </configuration>
    1.60 +                  </plugin>
    1.61 +              </plugins>
    1.62 +          </build>
    1.63 +      </profile>      
    1.64 +      <profile>
    1.65            <id>nbrwsr</id>
    1.66            <dependencies>
    1.67                <dependency>