On 08/25/2010 09:04 PM, john redden wrote:
Peer Maven users,

I have a new project where the top scheduling half is a Java app that
executes php scripts on various criteria.  I want to package the php
files in the jar along with all the usual suspects.

I can get my php files into the target directory, but can't seem to get
them automatically included in a jar file. The Java structure is as it
should be.

The pom.xml is attached


Where are your PHP files stored? I think they will automatically be included in the jar if stored in src/main/resources, although I'd probably put them in src/main/php and then

  <build>
    ...
    <resources>
      <resource>
        <directory> src/main/php</directory>
        <includes>
          <include>**/*.php</include>
        </includes>
      </resource>
      ...
    </resources>
    ...
  </build>

For the record, I've had too much coffee.

Manos

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to