Repository: maven-integration-testing
Updated Branches:
  refs/heads/master c28c27949 -> 7a6a75022


Added a group 7 to resolve core apis which need to be present in the repository


Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/7a6a7502
Tree: 
http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/7a6a7502
Diff: 
http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/7a6a7502

Branch: refs/heads/master
Commit: 7a6a75022aec06f947068d794e8ab1c894cb40b6
Parents: c28c279
Author: Kristian Rosenvold <krosenv...@apache.org>
Authored: Sun Jun 21 15:08:06 2015 +0200
Committer: Kristian Rosenvold <krosenv...@apache.org>
Committed: Sun Jun 21 15:08:06 2015 +0200

----------------------------------------------------------------------
 .../test/resources/bootstrap/group-7/pom.xml    | 57 ++++++++++++++++++++
 .../src/test/resources/bootstrap/pom.xml        |  1 +
 .../plugin/pom.xml                              | 10 ++--
 3 files changed, 65 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/7a6a7502/core-it-suite/src/test/resources/bootstrap/group-7/pom.xml
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/resources/bootstrap/group-7/pom.xml 
b/core-it-suite/src/test/resources/bootstrap/group-7/pom.xml
new file mode 100644
index 0000000..ab18bf3
--- /dev/null
+++ b/core-it-suite/src/test/resources/bootstrap/group-7/pom.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.its.bootstrap</groupId>
+    <artifactId>maven-it-boostrap</artifactId>
+    <version>1.0</version>
+  </parent>
+
+  <groupId>org.apache.maven.its.bootstrap</groupId>
+  <artifactId>group-7</artifactId>
+  <version>1.0</version>
+  <packaging>jar</packaging>
+
+  <name>Maven Integration Test :: Boostrap :: Group-7</name>
+
+  <properties>
+  </properties>
+
+  <!-- Core version used by all the it projects -->
+  <!-- todo: update all its to 3.0 -->
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-registry</artifactId>
+      <version>2.0</version>
+    </dependency>
+
+  </dependencies>
+</project>

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/7a6a7502/core-it-suite/src/test/resources/bootstrap/pom.xml
----------------------------------------------------------------------
diff --git a/core-it-suite/src/test/resources/bootstrap/pom.xml 
b/core-it-suite/src/test/resources/bootstrap/pom.xml
index e0edb9a..358b931 100644
--- a/core-it-suite/src/test/resources/bootstrap/pom.xml
+++ b/core-it-suite/src/test/resources/bootstrap/pom.xml
@@ -43,6 +43,7 @@ under the License.
     <module>group-4</module>
     <module>group-5</module>
     <module>group-6</module>
+    <module>group-7</module>
   </modules>
 
   <properties>

http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/7a6a7502/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/plugin/pom.xml
----------------------------------------------------------------------
diff --git 
a/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/plugin/pom.xml
 
b/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/plugin/pom.xml
index bb27d57..579bce3 100644
--- 
a/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/plugin/pom.xml
+++ 
b/core-it-suite/src/test/resources/mng-5805-pkg-type-mojo-configuration/plugin/pom.xml
@@ -28,23 +28,27 @@ under the License.
   <version>0.1</version>
   <packaging>maven-plugin</packaging>
 
+  <properties>
+    <maven-version>2.0</maven-version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>${maven.version}</version>
+      <version>${maven-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-model</artifactId>
-      <version>${maven.version}</version>
+      <version>${maven-version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-core</artifactId>
-      <version>${maven.version}</version>
+      <version>${maven-version}</version>
       <scope>provided</scope>
     </dependency>
   </dependencies>

Reply via email to