You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sis.apache.org by de...@apache.org on 2013/07/09 11:09:37 UTC

svn commit: r1501148 - in /sis/branches/JDK7: ./ application/ application/sis-console/ application/sis-webapp/ core/sis-build-helper/ core/sis-build-helper/src/site/apt/ core/sis-metadata/ core/sis-referencing/ core/sis-utility/ src/site/apt/ storage/

Author: desruisseaux
Date: Tue Jul  9 09:09:36 2013
New Revision: 1501148

URL: http://svn.apache.org/r1501148
Log:
Changed groupId of modules in the "core" directory from "org.apache.sis" to "org.apache.sis.core".
Applied the same kind of change for "application". The "storage" directory was already that way.
With this change, the "groupId" match exactly the directory structure.

Modified:
    sis/branches/JDK7/application/pom.xml
    sis/branches/JDK7/application/sis-console/pom.xml
    sis/branches/JDK7/application/sis-webapp/pom.xml
    sis/branches/JDK7/core/sis-build-helper/pom.xml
    sis/branches/JDK7/core/sis-build-helper/src/site/apt/index.apt
    sis/branches/JDK7/core/sis-metadata/pom.xml
    sis/branches/JDK7/core/sis-referencing/pom.xml
    sis/branches/JDK7/core/sis-utility/pom.xml
    sis/branches/JDK7/pom.xml
    sis/branches/JDK7/src/site/apt/download.apt
    sis/branches/JDK7/storage/pom.xml

Modified: sis/branches/JDK7/application/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/application/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/application/pom.xml (original)
+++ sis/branches/JDK7/application/pom.xml Tue Jul  9 09:09:36 2013
@@ -70,7 +70,7 @@
 
       <!-- Collect JAR files in <root>/target/binaries directory. -->
       <plugin>
-        <groupId>org.apache.sis</groupId>
+        <groupId>org.apache.sis.core</groupId>
         <artifactId>sis-build-helper</artifactId>
         <version>${sis.plugin.version}</version>
         <executions>
@@ -97,7 +97,7 @@
 
     <!-- Test dependencies -->
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-utility</artifactId>
       <version>${project.version}</version>
       <type>test-jar</type>

Modified: sis/branches/JDK7/application/sis-console/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/application/sis-console/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/application/sis-console/pom.xml (original)
+++ sis/branches/JDK7/application/sis-console/pom.xml Tue Jul  9 09:09:36 2013
@@ -35,6 +35,7 @@
   <!-- ===========================================================
            Module Description
        =========================================================== -->
+  <groupId>org.apache.sis.application</groupId>
   <artifactId>sis-console</artifactId>
   <packaging>bundle</packaging>
   <name>Apache SIS console</name>

Modified: sis/branches/JDK7/application/sis-webapp/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/application/sis-webapp/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/application/sis-webapp/pom.xml (original)
+++ sis/branches/JDK7/application/sis-webapp/pom.xml Tue Jul  9 09:09:36 2013
@@ -31,6 +31,7 @@
     <version>0.3-jdk7-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.sis.application</groupId>
   <artifactId>sis-webapp</artifactId>
   <packaging>war</packaging>
   <name>Apache SIS web services layer</name>

Modified: sis/branches/JDK7/core/sis-build-helper/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-build-helper/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-build-helper/pom.xml (original)
+++ sis/branches/JDK7/core/sis-build-helper/pom.xml Tue Jul  9 09:09:36 2013
@@ -35,6 +35,7 @@
   <!-- ===========================================================
            Module Description
        =========================================================== -->
+  <groupId>org.apache.sis.core</groupId>
   <artifactId>sis-build-helper</artifactId>
   <packaging>maven-plugin</packaging>
   <name>Apache SIS build helper</name>

Modified: sis/branches/JDK7/core/sis-build-helper/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-build-helper/src/site/apt/index.apt?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-build-helper/src/site/apt/index.apt [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-build-helper/src/site/apt/index.apt [UTF-8] Tue Jul  9 09:09:36 2013
@@ -91,7 +91,7 @@ Building Apache SIS
 <build>
   <plugins>
     <plugin>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-build-helper</artifactId>
       <version>${sis.plugin.version}</version>
       <executions>
@@ -137,7 +137,7 @@ Building Apache SIS
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.sis</groupId>
+        <groupId>org.apache.sis.core</groupId>
         <artifactId>sis-build-helper</artifactId>
         <version>${sis.plugin.version}</version>
         <executions>

Modified: sis/branches/JDK7/core/sis-metadata/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-metadata/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-metadata/pom.xml (original)
+++ sis/branches/JDK7/core/sis-metadata/pom.xml Tue Jul  9 09:09:36 2013
@@ -35,6 +35,7 @@
   <!-- ===========================================================
            Module Description
        =========================================================== -->
+  <groupId>org.apache.sis.core</groupId>
   <artifactId>sis-metadata</artifactId>
   <packaging>bundle</packaging>
   <name>Apache SIS metadata</name>
@@ -110,7 +111,7 @@ Implementations of metadata derived from
 
       <!-- Collect JAR files in <root>/target/binaries directory. -->
       <plugin>
-        <groupId>org.apache.sis</groupId>
+        <groupId>org.apache.sis.core</groupId>
         <artifactId>sis-build-helper</artifactId>
         <version>${sis.plugin.version}</version>
         <executions>
@@ -141,7 +142,7 @@ Implementations of metadata derived from
        =========================================================== -->
   <dependencies>
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-utility</artifactId>
       <version>${project.version}</version>
     </dependency>
@@ -156,7 +157,7 @@ Implementations of metadata derived from
 
     <!-- Test dependencies -->
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-utility</artifactId>
       <version>${project.version}</version>
       <type>test-jar</type>

Modified: sis/branches/JDK7/core/sis-referencing/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/pom.xml (original)
+++ sis/branches/JDK7/core/sis-referencing/pom.xml Tue Jul  9 09:09:36 2013
@@ -31,6 +31,7 @@
     <version>0.3-jdk7-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.sis.core</groupId>
   <artifactId>sis-referencing</artifactId>
   <packaging>bundle</packaging>
   <name>Apache SIS referencing</name>
@@ -80,7 +81,7 @@ Implementations of Coordinate Reference 
 
       <!-- Collect JAR files in <root>/target/binaries directory. -->
       <plugin>
-        <groupId>org.apache.sis</groupId>
+        <groupId>org.apache.sis.core</groupId>
         <artifactId>sis-build-helper</artifactId>
         <version>${sis.plugin.version}</version>
         <executions>
@@ -111,7 +112,7 @@ Implementations of Coordinate Reference 
        =========================================================== -->
   <dependencies>
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-utility</artifactId>
       <version>${project.version}</version>
     </dependency>
@@ -126,7 +127,7 @@ Implementations of Coordinate Reference 
 
     <!-- Test dependencies -->
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-utility</artifactId>
       <version>${project.version}</version>
       <type>test-jar</type>

Modified: sis/branches/JDK7/core/sis-utility/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-utility/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-utility/pom.xml (original)
+++ sis/branches/JDK7/core/sis-utility/pom.xml Tue Jul  9 09:09:36 2013
@@ -35,6 +35,7 @@
   <!-- ===========================================================
            Module Description
        =========================================================== -->
+  <groupId>org.apache.sis.core</groupId>
   <artifactId>sis-utility</artifactId>
   <packaging>bundle</packaging>
   <name>Apache SIS utilities</name>
@@ -134,7 +135,7 @@ Miscellaneous utilities.
 
       <!-- Compile properties files into resources UTF files and collect JAR files. -->
       <plugin>
-        <groupId>org.apache.sis</groupId>
+        <groupId>org.apache.sis.core</groupId>
         <artifactId>sis-build-helper</artifactId>
         <version>${sis.plugin.version}</version>
         <executions>

Modified: sis/branches/JDK7/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/pom.xml (original)
+++ sis/branches/JDK7/pom.xml Tue Jul  9 09:09:36 2013
@@ -524,7 +524,7 @@ Apache SIS is a free software, Java lang
         <version>${findbugs.version}</version>
         <dependencies>
           <dependency>
-            <groupId>org.apache.sis</groupId>
+            <groupId>org.apache.sis.core</groupId>
             <artifactId>sis-build-helper</artifactId>
             <version>${sis.plugin.version}</version>
           </dependency>
@@ -636,7 +636,7 @@ Apache SIS is a free software, Java lang
             <taglet><tagletClass>org.apache.sis.internal.taglet.SourceRepositoryURL</tagletClass></taglet>
           </taglets>
           <tagletArtifact>
-            <groupId>org.apache.sis</groupId>
+            <groupId>org.apache.sis.core</groupId>
             <artifactId>sis-build-helper</artifactId>
             <version>${sis.plugin.version}</version>
           </tagletArtifact>

Modified: sis/branches/JDK7/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/src/site/apt/download.apt?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/src/site/apt/download.apt [UTF-8] (original)
+++ sis/branches/JDK7/src/site/apt/download.apt [UTF-8] Tue Jul  9 09:09:36 2013
@@ -38,7 +38,7 @@ Downloading Apache SIS Binaries
 
 <dependencies>
   <dependency>
-    <groupId>org.apache.sis</groupId>
+    <groupId>org.apache.sis.core</groupId>
     <artifactId>sis-referencing</artifactId>
     <version>${sis.version}</version>
   </dependency>
@@ -55,7 +55,7 @@ Downloading Apache SIS Binaries
 
 <dependencies>
   <dependency>
-    <groupId>org.apache.sis</groupId>
+    <groupId>org.apache.sis.core</groupId>
     <artifactId>sis-referencing</artifactId>
     <version>${sis.version}</version>
   </dependency>

Modified: sis/branches/JDK7/storage/pom.xml
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/storage/pom.xml?rev=1501148&r1=1501147&r2=1501148&view=diff
==============================================================================
--- sis/branches/JDK7/storage/pom.xml (original)
+++ sis/branches/JDK7/storage/pom.xml Tue Jul  9 09:09:36 2013
@@ -82,7 +82,7 @@
 
       <!-- Collect JAR files in <root>/target/binaries directory. -->
       <plugin>
-        <groupId>org.apache.sis</groupId>
+        <groupId>org.apache.sis.core</groupId>
         <artifactId>sis-build-helper</artifactId>
         <version>${sis.plugin.version}</version>
         <executions>
@@ -102,12 +102,12 @@
        =========================================================== -->
   <dependencies>
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-metadata</artifactId>
       <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-referencing</artifactId>
       <version>${project.version}</version>
     </dependency>
@@ -122,7 +122,7 @@
       <artifactId>geoapi-conformance</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.apache.sis</groupId>
+      <groupId>org.apache.sis.core</groupId>
       <artifactId>sis-utility</artifactId>
       <version>${project.version}</version>
       <type>test-jar</type>