(no commit message)
[utils] / pom.xml
diff --git a/pom.xml b/pom.xml
index c856e88842dd62bc00d7a66f138f2cee7d24ccbd..05d8c4f061ae58a64916379c1ee6d609a9eb30e1 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.wamblee</groupId>
-  <artifactId>utils</artifactId>
+  <artifactId>wamblee-utils</artifactId>
   <packaging>pom</packaging>
   <version>0.2-SNAPSHOT</version>
   <name>wamblee.org utility libraries</name>
@@ -12,6 +12,7 @@
     <module>support</module>
     <module>socketproxy</module>
     <module>crawler</module>
+    <module>gps</module>
   </modules>
   <dependencies>
     <dependency>
     <dependencies>
       <dependency>
         <groupId>org.wamblee</groupId>
-        <artifactId>support</artifactId>
+        <artifactId>wamblee-support</artifactId>
         <version>${project.version}</version>
       </dependency>
       <dependency>
         <groupId>org.wamblee</groupId>
-        <artifactId>socketproxy</artifactId>
+        <artifactId>wamblee-socketproxy</artifactId>
         <version>${project.version}</version>
       </dependency>
       <dependency>
         <groupId>org.wamblee</groupId>
-        <artifactId>crawler</artifactId>
+        <artifactId>wamblee-crawler</artifactId>
         <version>${project.version}</version>
       </dependency>
       <dependency>
         <groupId>org.wamblee</groupId>
-        <artifactId>crawler-basic</artifactId>
+        <artifactId>wamblee-crawler-basic</artifactId>
         <version>${project.version}</version>
       </dependency>
 
         <artifactId>standard</artifactId>
         <version>1.1.2</version>
       </dependency>
+      <dependency>
+        <groupId>jfree</groupId>
+        <artifactId>jfreechart</artifactId>
+        <version>1.0.1</version>
+      </dependency>
+      <dependency>
+        <groupId>jfree</groupId>
+        <artifactId>jcommon</artifactId>
+        <version>1.0.2</version>
+      </dependency>
 
 
     </dependencies>
         </configuration>
       </plugin>
 
+      <!-- Make sure other projects can use (or the test support
+           and test classes from the projects it uses. To use
+           a dependence on a test library of a project, an additinoal
+           dependence must be added with <type>test-jar</type>
+        -->
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+
     </plugins>
 
   </build>