pom.xml
author Jaroslav Tulach <jaroslav.tulach@xelfi.cz>
Tue, 17 Jan 2017 21:19:45 +0100
branchDirtyFix
changeset 12 a3b670224d5d
parent 0 189280700bc7
permissions -rw-r--r--
Run with 'mvn exec:exec' and Xelfi will be started
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3     <modelVersion>4.0.0</modelVersion>
     4     <groupId>cz.xelfi.ide</groupId>
     5     <artifactId>xelfi</artifactId>
     6     <version>1.0-SNAPSHOT</version>
     7     <packaging>jar</packaging>
     8     <properties>
     9         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    10         <maven.compiler.source>1.8</maven.compiler.source>
    11         <maven.compiler.target>1.8</maven.compiler.target>
    12         <netbeans.compile.on.save>all</netbeans.compile.on.save>
    13         <project.mainclass>xelfi.Xelfi</project.mainclass>
    14         <exec.java.bin>${java.home}/bin/java</exec.java.bin>
    15         <exec.debug.arg>-Ddebug=false</exec.debug.arg>
    16     </properties>
    17     <build>
    18         <plugins>
    19             <plugin>
    20                 <groupId>org.codehaus.mojo</groupId>
    21                 <artifactId>exec-maven-plugin</artifactId>
    22                 <version>1.2.1</version>
    23                 <configuration>
    24                     <executable>${exec.java.bin}</executable>
    25                     <classpathScope>runtime</classpathScope>
    26                     <arguments>
    27                         <argument>-classpath</argument>
    28                         <classpath/>
    29                         <argument>${exec.debug.arg}</argument>
    30                         <argument>${project.mainclass}</argument>
    31                     </arguments>
    32                 </configuration>
    33             </plugin>
    34         </plugins>
    35     </build>
    36 </project>