Changes between Version 2 and Version 3 of GROUP_DEPLOYMENT_R1


Ignore:
Timestamp:
08/03/09 16:23:37 (16 years ago)
Author:
pav
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_DEPLOYMENT_R1

    v2 v3  
    7171  * Hudson job about this should be created too. 
    7272 
    73  * The installer - izpack maven plugin seems to be broken about the modular hierarhy, so ant task must be created, except using the plugin.  
     73 * The installer - izpack maven plugin seems to be broken about the modular hierarhy, so ant task must be created, except using the plugin. Here is the configuration that should be added in the main pom.xml: 
     74 
     75{{{ 
     76<plugin> 
     77                  <artifactId>maven-antrun-plugin</artifactId> 
     78                  <inherited>false</inherited>  
     79                  <version>1.1</version> 
     80                  <dependencies> 
     81                        <dependency> 
     82                      <groupId>org.codehaus.izpack</groupId> 
     83                      <artifactId>izpack-standalone-compiler</artifactId> 
     84                      <version>4.3.1</version> 
     85                    </dependency> 
     86                  </dependencies> 
     87                  <executions> 
     88                    <execution> 
     89                      <id>create-staging-area</id> 
     90                      <phase>deploy</phase> 
     91                      <goals> 
     92                        <goal>run</goal> 
     93                      </goals> 
     94                      <configuration> 
     95                        <tasks> 
     96                          <taskdef name="izpack" 
     97                                       classname="com.izforge.izpack.ant.IzPackTask"/> 
     98                                                 <!-- create izpack installer jar file --> 
     99                                         <izpack input="target/izpack/install.xml" 
     100                                                output="target/izpack/sophie2-installer.jar" 
     101                                                installerType="standard" 
     102                                                basedir="target/sophie2-platform-${version}-author/sophie2-platform/"/>  
     103                        </tasks> 
     104                      </configuration> 
     105                    </execution> 
     106                  </executions> 
     107                </plugin> 
     108}}} 
     109 
    74110 
    75111 * In my opinion dmg and deb packages should be created in the next revision of deployment task. The optional things about the JWS persistence and file entry manager refactoring goes to the next revision of the task too.