Leo Breuss commented on Bug MOJO-1968

This is the part of the pom.xml. Scanning the thin documentation of inczip, I can't see why this should be not correct.

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>native-maven-plugin</artifactId>
    <extensions>true</extensions>
    
    <executions>
      <execution>
        <id>generate-headers</id>
        <phase>process-classes</phase>
        <goals>
          <goal>javah</goal>
        </goals>
        <configuration>
          <javahClassNames>
            <javahClassName>acme.application.MatlabModel</javahClassName>
          </javahClassNames>
          <javahVerbose>true</javahVerbose>
        </configuration>
      </execution>
      
      <execution>
        <id>generate-includezip</id>
        <phase>package</phase>
        <goals>
          <goal>inczip</goal>
        </goals>
        <configuration>
          <skipIncludeDeployment>false</skipIncludeDeployment>
          <sources>
            <source>
              <directory>${project.build.directory}/native/javah</directory>
              <fileNames>
                <!-- <fileName>*.h</fileName> -->
                <fileName>acme_application_MatlabModel.h</fileName>
              </fileNames>
            </source>
          </sources>
        </configuration>
      </execution>
      
    </executions>
  </plugin>
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to