Run with 'mvn exec:exec' and Xelfi will be started DirtyFix
authorJaroslav Tulach <jaroslav.tulach@xelfi.cz>
Tue, 17 Jan 2017 21:19:45 +0100
branchDirtyFix
changeset 12a3b670224d5d
parent 11 4fdb5eda846d
child 15 cdb47e644581
Run with 'mvn exec:exec' and Xelfi will be started
pom.xml
     1.1 --- a/pom.xml	Tue Jan 17 21:13:23 2017 +0100
     1.2 +++ b/pom.xml	Tue Jan 17 21:19:45 2017 +0100
     1.3 @@ -9,5 +9,28 @@
     1.4          <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     1.5          <maven.compiler.source>1.8</maven.compiler.source>
     1.6          <maven.compiler.target>1.8</maven.compiler.target>
     1.7 +        <netbeans.compile.on.save>all</netbeans.compile.on.save>
     1.8 +        <project.mainclass>xelfi.Xelfi</project.mainclass>
     1.9 +        <exec.java.bin>${java.home}/bin/java</exec.java.bin>
    1.10 +        <exec.debug.arg>-Ddebug=false</exec.debug.arg>
    1.11      </properties>
    1.12 +    <build>
    1.13 +        <plugins>
    1.14 +            <plugin>
    1.15 +                <groupId>org.codehaus.mojo</groupId>
    1.16 +                <artifactId>exec-maven-plugin</artifactId>
    1.17 +                <version>1.2.1</version>
    1.18 +                <configuration>
    1.19 +                    <executable>${exec.java.bin}</executable>
    1.20 +                    <classpathScope>runtime</classpathScope>
    1.21 +                    <arguments>
    1.22 +                        <argument>-classpath</argument>
    1.23 +                        <classpath/>
    1.24 +                        <argument>${exec.debug.arg}</argument>
    1.25 +                        <argument>${project.mainclass}</argument>
    1.26 +                    </arguments>
    1.27 +                </configuration>
    1.28 +            </plugin>
    1.29 +        </plugins>
    1.30 +    </build>
    1.31  </project>
    1.32 \ No newline at end of file