diff options
author | liamfallon <liam.fallon@est.tech> | 2021-06-07 15:49:46 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2021-06-07 16:06:53 +0100 |
commit | d738ae7ec4c112a2e615f1d290279c16058e77f2 (patch) | |
tree | c2818dd55df8823cd9fd67f21761ccdab86e6b85 | |
parent | 5ca01a91d9507b77e101e2cbd9de97c705a6d5ae (diff) |
Update plugins in Lifecycle Mapping for CLAMP
The lowest version in the lifecycle mapping for the
hibernate52-ddl-maven-plugin was 2.3.0, it should have been 2.2.0.
The plugin for npm is added.
Issue-ID: POLICY-3258
Change-Id: I63d997b57c68830bc3dca2b2d62e950d2042c0d1
Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r-- | integration/pom.xml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index d803da87..8a6d4de2 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -596,7 +596,7 @@ <pluginExecutionFilter> <groupId>de.jpdigital</groupId> <artifactId>hibernate52-ddl-maven-plugin</artifactId> - <versionRange>[2.3.0,)</versionRange> + <versionRange>[2.2.0,)</versionRange> <goals> <goal>gen-ddl</goal> </goals> @@ -644,6 +644,19 @@ <ignore /> </action> </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>com.github.eirslett</groupId> + <artifactId>frontend-maven-plugin</artifactId> + <versionRange>[1.11.0,)</versionRange> + <goals> + <goal>npm</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> |