(no commit message)
[utils] / pom.xml
diff --git a/pom.xml b/pom.xml
index c856e88842dd62bc00d7a66f138f2cee7d24ccbd..a599eea42d2a2de3e3aa8fc3863a9a6959cce667 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,8 @@
     <module>support</module>
     <module>socketproxy</module>
     <module>crawler</module>
+    <module>gps</module>
+    <module>mythtv</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>wamblee-support</artifactId>
+               <type>test-jar</type>
         <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>wamblee-socketproxy</artifactId>
+               <type>test-jar</type>
         <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>wamblee-crawler</artifactId>
+               <type>test-jar</type>
         <version>${project.version}</version>
       </dependency>
       <dependency>
         <groupId>org.wamblee</groupId>
-        <artifactId>crawler-basic</artifactId>
+        <artifactId>wamblee-crawler-basic</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+         <dependency>
+        <groupId>org.wamblee</groupId>
+        <artifactId>wamblee-crawler-basic</artifactId>
+               <type>test-jar</type>
         <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>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>clean</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
     </plugins>
 
   </build>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>checkstyle</report>
+                         <report>javadoc</report>
+              <report>dependencies</report>
+              <report>project-team</report>
+              <report>mailing-list</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>changes-maven-plugin</artifactId>
+        <version>2.0-beta-1</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>surefire-report-maven-plugin</artifactId>
+      </plugin>
+      <!-- Test coverage reporting -->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
+      
+         <!-- checkstyle -->
+         <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-checkstyle-plugin</artifactId>
+               <configuration>
+                 <configLocation>config/sun_checks.xml</configLocation>
+               </configuration>
+         </plugin>
+         
+         <!-- taglist -->
+         <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+               <artifactId>taglist-maven-plugin</artifactId>
+               <configuration>
+                 <tags>
+                   <tag>TODO</tag>
+                       <tag>@todo</tag>
+                       <tag>FIXME</tag>
+                 </tags>
+               </configuration>
+         </plugin>
+         
+    </plugins>
+  </reporting>
+
+  
 </project>