| | |
| | | <configuration> |
| | | <sources> |
| | | <source>${project.build.directory}/generated-sources/java</source> |
| | | <source>${project.build.directory}/generated-sources/config</source> |
| | | </sources> |
| | | </configuration> |
| | | </execution> |
| | |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | <!-- Concatenate all single manifest files to a single manifest for |
| | | core administration components. --> |
| | | <plugin> |
| | | <artifactId>maven-antrun-plugin</artifactId> |
| | | <executions> |
| | | <execution> |
| | | <phase>prepare-package</phase> |
| | | <configuration> |
| | | <target> |
| | | <concat |
| | | destfile="${project.build.outputDirectory}/admin/core.manifest"> |
| | | <fileset dir="${project.build.directory}/tmp" |
| | | includes="**/*.manifest" /> |
| | | </concat> |
| | | <delete dir="${project.build.directory}/tmp" /> |
| | | </target> |
| | | </configuration> |
| | | <goals> |
| | | <goal>run</goal> |
| | | </goals> |
| | | </execution> |
| | | </executions> |
| | | </plugin> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-surefire-plugin</artifactId> |
| | | </plugin> |
| | | </plugins> |
| | | <pluginManagement> |
| | | <plugins> |
| | | <!--This plugin's configuration is used to store Eclipse m2e settings only. |
| | | It has no influence on the Maven build itself.--> |
| | | <plugin> |
| | | <groupId>org.eclipse.m2e</groupId> |
| | | <artifactId>lifecycle-mapping</artifactId> |
| | | <version>1.0.0</version> |
| | | <configuration> |
| | | <lifecycleMappingMetadata> |
| | | <pluginExecutions> |
| | | <pluginExecution> |
| | | <pluginExecutionFilter> |
| | | <groupId>org.forgerock.opendj</groupId> |
| | | <artifactId>opendj-config-maven-plugin</artifactId> |
| | | <versionRange>[3.0.0-SNAPSHOT,)</versionRange> |
| | | <goals> |
| | | <goal>generate</goal> |
| | | </goals> |
| | | </pluginExecutionFilter> |
| | | <action> |
| | | <execute> |
| | | <runOnIncremental>true</runOnIncremental> |
| | | <runOnConfiguration>true</runOnConfiguration> |
| | | </execute> |
| | | </action> |
| | | </pluginExecution> |
| | | </pluginExecutions> |
| | | </lifecycleMappingMetadata> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </pluginManagement> |
| | | </build> |
| | | <reporting> |
| | | <plugins> |