Commit 6df091da315664cbeb238b3ff2e77fa956e3e48f
1 parent
dc145b4f
Exists in
master
Adicionada configuração para m2e ignorar goal incompatível do Maven.
Showing
1 changed file
with
35 additions
and
0 deletions
Show diff stats
impl/extension/jpa/pom.xml
... | ... | @@ -174,6 +174,41 @@ |
174 | 174 | <version>2.16</version> |
175 | 175 | </plugin> |
176 | 176 | </plugins> |
177 | + <pluginManagement> | |
178 | + <plugins> | |
179 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> | |
180 | + <plugin> | |
181 | + <groupId>org.eclipse.m2e</groupId> | |
182 | + <artifactId>lifecycle-mapping</artifactId> | |
183 | + <version>1.0.0</version> | |
184 | + <configuration> | |
185 | + <lifecycleMappingMetadata> | |
186 | + <pluginExecutions> | |
187 | + <pluginExecution> | |
188 | + <pluginExecutionFilter> | |
189 | + <groupId> | |
190 | + org.apache.maven.plugins | |
191 | + </groupId> | |
192 | + <artifactId> | |
193 | + maven-dependency-plugin | |
194 | + </artifactId> | |
195 | + <versionRange> | |
196 | + [2.1,) | |
197 | + </versionRange> | |
198 | + <goals> | |
199 | + <goal>unpack</goal> | |
200 | + </goals> | |
201 | + </pluginExecutionFilter> | |
202 | + <action> | |
203 | + <ignore></ignore> | |
204 | + </action> | |
205 | + </pluginExecution> | |
206 | + </pluginExecutions> | |
207 | + </lifecycleMappingMetadata> | |
208 | + </configuration> | |
209 | + </plugin> | |
210 | + </plugins> | |
211 | + </pluginManagement> | |
177 | 212 | </build> |
178 | 213 | |
179 | 214 | <dependencies> | ... | ... |