|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <artifactId>gem-parent-mojo</artifactId> |
| 6 | + <groupId>org.jruby.maven</groupId> |
| 7 | + <version>3.0.3-SNAPSHOT</version> |
| 8 | + <relativePath>../gem-parent-mojo/pom.xml</relativePath> |
| 9 | + </parent> |
| 10 | + <artifactId>bundler-maven-plugin</artifactId> |
| 11 | + <packaging>maven-plugin</packaging> |
| 12 | + <name>Bundler Maven Mojo</name> |
| 13 | + <properties><invoker.skip>true</invoker.skip></properties> |
| 14 | + <profiles> |
| 15 | + <profile> |
| 16 | + <id>integration-test</id> |
| 17 | + <properties> |
| 18 | + <invoker.skip>true</invoker.skip> |
| 19 | + </properties> |
| 20 | + </profile> |
| 21 | + <profile> |
| 22 | + <id>all</id> |
| 23 | + <properties> |
| 24 | + <invoker.skip>false</invoker.skip> |
| 25 | + </properties> |
| 26 | + </profile> |
| 27 | + </profiles> |
| 28 | + <build> |
| 29 | + <pluginManagement> |
| 30 | + <plugins> |
| 31 | + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 32 | + <plugin> |
| 33 | + <groupId>org.eclipse.m2e</groupId> |
| 34 | + <artifactId>lifecycle-mapping</artifactId> |
| 35 | + <version>1.0.0</version> |
| 36 | + <configuration> |
| 37 | + <lifecycleMappingMetadata> |
| 38 | + <pluginExecutions> |
| 39 | + <pluginExecution> |
| 40 | + <pluginExecutionFilter> |
| 41 | + <groupId> |
| 42 | + org.apache.maven.plugins |
| 43 | + </groupId> |
| 44 | + <artifactId> |
| 45 | + maven-dependency-plugin |
| 46 | + </artifactId> |
| 47 | + <versionRange> |
| 48 | + [2.1,) |
| 49 | + </versionRange> |
| 50 | + <goals> |
| 51 | + <goal> |
| 52 | + unpack-dependencies |
| 53 | + </goal> |
| 54 | + </goals> |
| 55 | + </pluginExecutionFilter> |
| 56 | + <action> |
| 57 | + <ignore /> |
| 58 | + </action> |
| 59 | + </pluginExecution> |
| 60 | + <pluginExecution> |
| 61 | + <pluginExecutionFilter> |
| 62 | + <groupId> |
| 63 | + org.codehaus.mojo |
| 64 | + </groupId> |
| 65 | + <artifactId> |
| 66 | + build-helper-maven-plugin |
| 67 | + </artifactId> |
| 68 | + <versionRange> |
| 69 | + [1.4,) |
| 70 | + </versionRange> |
| 71 | + <goals> |
| 72 | + <goal>add-source</goal> |
| 73 | + </goals> |
| 74 | + </pluginExecutionFilter> |
| 75 | + <action> |
| 76 | + <ignore /> |
| 77 | + </action> |
| 78 | + </pluginExecution> |
| 79 | + </pluginExecutions> |
| 80 | + </lifecycleMappingMetadata> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </pluginManagement> |
| 85 | + </build> |
| 86 | +</project> |
0 commit comments