Skip to content

Commit

Permalink
netbeans csv-command line config
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutz Fischer committed Sep 16, 2016
1 parent bef415d commit 680e1b5
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nb-configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The configuration is intended to be shared among all the users of project and
therefore it is assumed to be part of version control checkout.
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
-->
<config-data xmlns="http://www.netbeans.org/ns/maven-config-data/1">
<configurations>
<configuration id="csv commandline" profiles=""/>
</configurations>
</config-data>
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
<!--
Properties that influence various parts of the IDE, especially code formatting and the like.
Expand Down
46 changes: 46 additions & 0 deletions nbactions-csv commandline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xms1g -classpath %classpath org.rappsilber.fdr.CSVinFDR --help --uniquePSMs=F --csvOutDir=/home/lfischer/temp --csvBaseName=fdrcsvtest /home/lfischer/owncloudED/FromMichaelBerlin/3346_hsa_trypsin.csv</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -Xms1g -classpath %classpath org.rappsilber.fdr.CSVinFDR --help --uniquePSMs=F --csvOutDir=/home/lfischer/temp --csvBaseName=fdrcsvtest /home/lfischer/owncloudED/FromMichaelBerlin/3346_hsa_trypsin.csv</exec.args>
<exec.executable>java</exec.executable>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>profile</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
</goals>
<properties>
<exec.args>-Xms1g -classpath %classpath org.rappsilber.fdr.CSVinFDR --help --uniquePSMs=F --csvOutDir=/home/lfischer/temp --csvBaseName=fdrcsvtest /home/lfischer/owncloudED/FromMichaelBerlin/3346_hsa_trypsin.csv</exec.args>
<exec.executable>java</exec.executable>
</properties>
</action>
</actions>

0 comments on commit 680e1b5

Please sign in to comment.