Hi!
I have a simple app which I have used the assemble goal to generate a
start script for:


<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>appassembler-maven-plugin</artifactId>
  <configuration>
    <platforms>
      <platform>unix</platform>
    </platforms>
    <programs>
      <program>
            <mainClass>com.company.app1.SomeMainClass</mainClass>
        <name>app1</name>
      </program>
    </programs>
  </configuration>
  <executions>
    <execution>
      <id>generateStartScriptAndLibs</id>
      <phase>generate-resources</phase>
      <goals>
        <goal>assemble</goal>
      </goals>
    </execution>
  </executions>
</plugin>


How can I do the same using the generate-daemons goal?

I want to convert the configuration because
1. the assemble goal is deprecated
and
2. I can then reuse my rpm-parent-pom to simplify configuration.


--
Best regards
Erik Drolshammer



---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to