<project> ...... <plugin> <groupId>org.phpmaven</groupId> <artifactId>maven-php-plugin</artifactId> <extensions>true</extensions> <configuration> <phpExe> $pathTOYourPHPFolder/php.exe </phpExe> <ignoreValidate>false</ignoreValidate> <excludeFromValidation> <file>controller.php</file> <file>tree.php</file> </excludeFromValidation> </configuration> </plugin> ...... </project>
| [top] |
| [top] |
<project> ...... <plugin> <groupId>org.phpmaven</groupId> <artifactId>maven-php-plugin</artifactId> <extensions>true</extensions> <configuration> <compileArgs> -d auto_prepend_file=core.php </compileArgs> <excludeFromValidation> <file>core.php</file> </excludeFromValidation> </configuration> </plugin> ...... </project>
| [top] |