You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kp...@apache.org on 2016/05/13 20:26:01 UTC

qpid-interop-test git commit: QPIDIT-32: Improvements to Maven pom.xml files from Robbie Gemmell.

Repository: qpid-interop-test
Updated Branches:
  refs/heads/master c8712d872 -> 159efd475


QPIDIT-32: Improvements to Maven pom.xml files from Robbie Gemmell.


Project: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/commit/159efd47
Tree: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/tree/159efd47
Diff: http://git-wip-us.apache.org/repos/asf/qpid-interop-test/diff/159efd47

Branch: refs/heads/master
Commit: 159efd475397f37f51327c078cb1ef9486063963
Parents: c8712d8
Author: Kim van der Riet <kp...@apache.org>
Authored: Fri May 13 16:25:39 2016 -0400
Committer: Kim van der Riet <kp...@apache.org>
Committed: Fri May 13 16:25:39 2016 -0400

----------------------------------------------------------------------
 .gitignore             |  2 +-
 pom.xml                | 41 +++++++++++++++++++++++++++++++++++++----
 shims/qpid-jms/pom.xml | 29 ++++++-----------------------
 utils/pom.xml          | 34 +++++-----------------------------
 4 files changed, 49 insertions(+), 57 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/159efd47/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 8b13789..b83d222 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-
+/target/

http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/159efd47/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a00b546..f1e930f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,20 +18,53 @@
 <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/maven-v4_0_0.xsd">
 
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>17</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <name>qpid-interop-test-parent</name>
-  <url>https://qpid.apache.org</url>
 
   <groupId>org.apache.qpid</groupId>
   <artifactId>qpid-interop-test-parent</artifactId>
   <packaging>pom</packaging>
   <version>0.1.0-SNAPSHOT</version>
 
+  <url>https://qpid.apache.org</url>
+
+  <issueManagement>
+    <url>https://issues.apache.org/jira/browse/QPIDIT</url>
+    <system>JIRA</system>
+  </issueManagement>
+
+  <scm>
+    <connection>scm:git:http://git-wip-us.apache.org/repos/asf/qpid-interop-test.git</connection>
+    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/qpid-interop-test.git</developerConnection>
+    <url>https://git-wip-us.apache.org/repos/asf?p=qpid-interop-test.git</url>
+  </scm>
+
+  <properties>
+    <maven.compiler.source>1.7</maven.compiler.source>
+    <maven.compiler.target>1.7</maven.compiler.target>
+  </properties>
+
   <modules>
     <module>shims/qpid-jms</module>
     <module>utils</module>
   </modules>
 
-  <dependencies>
-  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <optimize>true</optimize>
+          <debug>true</debug>
+          <showDeprecation>true</showDeprecation>
+          <showWarnings>true</showWarnings>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>

http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/159efd47/shims/qpid-jms/pom.xml
----------------------------------------------------------------------
diff --git a/shims/qpid-jms/pom.xml b/shims/qpid-jms/pom.xml
index c1e53dd..e10ecf8 100644
--- a/shims/qpid-jms/pom.xml
+++ b/shims/qpid-jms/pom.xml
@@ -18,39 +18,22 @@
 <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/maven-v4_0_0.xsd">
 
-  <modelVersion>4.0.0</modelVersion>
-  <name>qpid-interop-test-jms-shim</name>
-  <url>https://qpid.apache.org</url>
-
-  <groupId>org.apache.qpid</groupId>
-  <artifactId>qpid-interop-test-jms-shim</artifactId>
-  <packaging>jar</packaging>
-  <version>0.1.0-SNAPSHOT</version>
-  
   <parent>
     <groupId>org.apache.qpid</groupId>
     <artifactId>qpid-interop-test-parent</artifactId>
-    <relativePath>../../pom.xml</relativePath>
     <version>0.1.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
   </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.qpid</groupId>
+  <artifactId>qpid-interop-test-jms-shim</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
 
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.5.1</version>
-        <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
-          <optimize>true</optimize>
-          <debug>true</debug>
-          <showDeprecation>true</showDeprecation>
-          <showWarnings>true</showWarnings>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
         <executions>
           <execution>

http://git-wip-us.apache.org/repos/asf/qpid-interop-test/blob/159efd47/utils/pom.xml
----------------------------------------------------------------------
diff --git a/utils/pom.xml b/utils/pom.xml
index 8e0b45e..d911b2c 100644
--- a/utils/pom.xml
+++ b/utils/pom.xml
@@ -18,39 +18,15 @@
 <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/maven-v4_0_0.xsd">
 
-  <modelVersion>4.0.0</modelVersion>
-  <name>qpid-interop-test-utils</name>
-  <url>https://qpid.apache.org</url>
-
-  <groupId>org.apache.qpid</groupId>
-  <artifactId>qpid-interop-test-utils</artifactId>
-  <packaging>jar</packaging>
-  <version>0.1.0-SNAPSHOT</version>
-  
   <parent>
     <groupId>org.apache.qpid</groupId>
     <artifactId>qpid-interop-test-parent</artifactId>
     <version>0.1.0-SNAPSHOT</version>
   </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.qpid</groupId>
+  <artifactId>qpid-interop-test-utils</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>3.5.1</version>
-        <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
-          <optimize>true</optimize>
-          <debug>true</debug>
-          <showDeprecation>true</showDeprecation>
-          <showWarnings>true</showWarnings>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  
-  <dependencies>
-  </dependencies>
 </project>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org