minesweeper/pom.xml
changeset 158 115273e5bb77
parent 154 b37d0281edf8
child 159 1b667288ba9c
     1.1 --- a/minesweeper/pom.xml	Sat Jun 07 09:44:30 2014 +0200
     1.2 +++ b/minesweeper/pom.xml	Sun Jun 08 09:10:08 2014 +0200
     1.3 @@ -427,6 +427,53 @@
     1.4            <build>
     1.5                <plugins>
     1.6                    <plugin>
     1.7 +                      <groupId>com.filmon.maven</groupId>
     1.8 +                      <artifactId>image-maven-plugin</artifactId>
     1.9 +                      <version>1.1</version>
    1.10 +                      <executions>
    1.11 +                          <execution>
    1.12 +                              <goals>
    1.13 +                                  <goal>scale</goal>
    1.14 +                              </goals>
    1.15 +                              <configuration>
    1.16 +                                  <outputDirectory>target/images</outputDirectory>
    1.17 +                                  <images>
    1.18 +                                      <image>
    1.19 +                                          <source>src/main/icons/DukeSweeper.png</source>
    1.20 +                                          <destination>Icon.png</destination>
    1.21 +                                          <width>57</width>
    1.22 +                                      </image>
    1.23 +                                      <image>
    1.24 +                                          <source>src/main/icons/DukeSweeper.png</source>
    1.25 +                                          <destination>Icon@2.png</destination>
    1.26 +                                          <width>114</width>
    1.27 +                                      </image>
    1.28 +                                      <image>
    1.29 +                                          <source>src/main/icons/DukeSweeper.png</source>
    1.30 +                                          <destination>Icon-60.png</destination>
    1.31 +                                          <width>60</width>
    1.32 +                                      </image>
    1.33 +                                      <image>
    1.34 +                                          <source>src/main/icons/DukeSweeper.png</source>
    1.35 +                                          <destination>Icon-60@2.png</destination>
    1.36 +                                          <width>120</width>
    1.37 +                                      </image>
    1.38 +                                      <image>
    1.39 +                                          <source>src/main/icons/DukeSweeper.png</source>
    1.40 +                                          <destination>Icon-72.png</destination>
    1.41 +                                          <width>72</width>
    1.42 +                                      </image>
    1.43 +                                      <image>
    1.44 +                                          <source>src/main/icons/DukeSweeper.png</source>
    1.45 +                                          <destination>Icon-76.png</destination>
    1.46 +                                          <width>76</width>
    1.47 +                                      </image>
    1.48 +                                  </images>
    1.49 +                              </configuration>
    1.50 +                          </execution>
    1.51 +                      </executions>
    1.52 +                  </plugin>
    1.53 +                  <plugin>
    1.54                        <groupId>org.robovm</groupId>
    1.55                        <artifactId>robovm-maven-plugin</artifactId>
    1.56                        <version>0.0.11.1</version>
    1.57 @@ -445,7 +492,14 @@
    1.58                                    <resource>src/main/webapp/pages</resource>
    1.59                                    <resource>
    1.60                                        <targetPath>/</targetPath>
    1.61 -                                      <directory>src/main/webapp/</directory>
    1.62 +                                      <directory>src/main/icons/</directory>
    1.63 +                                      <includes>
    1.64 +                                          <include>Default*.png</include>
    1.65 +                                      </includes>
    1.66 +                                  </resource>
    1.67 +                                  <resource>
    1.68 +                                      <targetPath>/</targetPath>
    1.69 +                                      <directory>target/images/</directory>
    1.70                                        <includes>
    1.71                                            <include>*.png</include>
    1.72                                        </includes>