Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.36 KB | None | 0 0
  1.     <build>
  2.         <finalName>${project.artifactId}</finalName>
  3.         <plugins>
  4.             <plugin>
  5.                 <groupId>org.apache.maven.plugins</groupId>
  6.                 <artifactId>maven-compiler-plugin</artifactId>
  7.                 <version>3.1</version>
  8.                 <configuration>
  9.                     <source>1.8</source>
  10.                     <target>1.8</target>
  11.                 </configuration>
  12.             </plugin>
  13.             <plugin>
  14.                 <groupId>net.orfjackal.retrolambda</groupId>
  15.                 <artifactId>retrolambda-maven-plugin</artifactId>
  16.                 <version>2.5.1</version>
  17.                 <executions>
  18.                     <execution>
  19.                         <goals>
  20.                             <goal>process-main</goal>
  21.                         </goals>
  22.                     </execution>
  23.                 </executions>
  24.             </plugin>
  25.             <plugin>
  26.                 <groupId>org.codehaus.mojo</groupId>
  27.                 <artifactId>exec-maven-plugin</artifactId>
  28.                 <version>1.1.1</version>
  29.                 <executions>
  30.                     <execution>
  31.                         <phase>package</phase>
  32.                         <goals>
  33.                             <goal>java</goal>
  34.                         </goals>
  35.                         <configuration>
  36.                             <mainClass>tc.Deploy</mainClass>
  37.                             <arguments>
  38.                                 <argument>${project.build.directory}/${project.build.finalName}.${project.packaging}</argument>
  39.                                 <argument>-win32</argument>
  40.                                 <argument>-android</argument>
  41.                                 <argument>/p</argument>
  42.                                 <argument>/r</argument>
  43.                                 <argument>${totalcross.activation_key}</argument>
  44.                             </arguments>
  45.                         </configuration>
  46.                     </execution>
  47.                 </executions>
  48.             </plugin>
  49.         </plugins>
  50.     </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement