Bug 51300

Summary: mvn-install.sh script for installing POI artifacts into local mvn repository
Product: POI Reporter: Marcel May <marcel.may.de>
Component: POI OverallAssignee: POI Developers List <dev>
Status: RESOLVED WONTFIX    
Severity: enhancement CC: marcel.may.de
Priority: P2    
Version: 3.8-dev   
Target Milestone: ---   
Hardware: PC   
OS: All   
Attachments: Patch providing mvn-install.sh and required build.xml modification. The build.xml modification simplifies the filtering/copying of POMs

Description Marcel May 2011-05-31 12:58:02 UTC
Created attachment 27096 [details]
Patch providing mvn-install.sh and required build.xml modification. The build.xml modification simplifies the filtering/copying of POMs

Provide a script to install build POI JARs to local maven repository, similiar to the existing mvn-deploy.sh script.

It simplifies locally testing and experimenting with unreleased POI versions for Maven based projects.
Comment 1 Yegor Kozlov 2011-06-06 09:18:57 UTC
We already have the mvn-install Ant target for that, see build.xml:

    <!--
      Install POI artifacts into the local repository. 
      Invoking this command is equivalent to 'mvn install' in Maven-driven projects.
    -->
    <target name="mvn-install" depends="maven.ant.tasks-check,jar,maven-poms">
      <m2-install artifactId="poi"/>
      <m2-install artifactId="poi-scratchpad"/>
      <m2-install artifactId="poi-ooxml"/>
      <m2-install artifactId="poi-examples"/>
      <m2-install artifactId="poi-ooxml-schemas"/>
      <m2-install artifactId="poi-excelant"/>
    </target>



Yegor