[hibernate-commits] Hibernate SVN: r12876 - maven-poms/trunk/core-parent.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Aug 1 18:53:25 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-08-01 18:53:24 -0400 (Wed, 01 Aug 2007)
New Revision: 12876

Modified:
   maven-poms/trunk/core-parent/pom.xml
Log:
correct scm info; minor cleanup

Modified: maven-poms/trunk/core-parent/pom.xml
===================================================================
--- maven-poms/trunk/core-parent/pom.xml	2007-07-31 22:37:37 UTC (rev 12875)
+++ maven-poms/trunk/core-parent/pom.xml	2007-08-01 22:53:24 UTC (rev 12876)
@@ -13,6 +13,11 @@
     <description>The parent POM for all Hibernate Core modules.</description>
     <url>http://hibernate.org</url>
 
+    <organization>
+        <name>Hibernate.org</name>
+        <url>http://hibernate.org</url>
+    </organization>
+
     <licenses>
         <license>
             <name>GNU Lesser General Public License</name>
@@ -23,10 +28,9 @@
     </licenses>
 
     <scm>
-        <!-- todo : make sure these get updated to point at the real svn repo -->
-        <connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/trunk</connection>
+        <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/trunk/</connection>
         <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/trunk</developerConnection>
-        <url>https://svn.jboss.org/repos/hibernate/core/trunk</url>
+        <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/trunk/</url>
     </scm>
 
     <issueManagement>
@@ -112,11 +116,22 @@
                     <target>1.4</target>
                 </configuration>
             </plugin>
+            <!-- add specification/implementation details to the manifests -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
-
-    <!-- Not really caring about reporting plugin versions; I think this is ok??? -->
     <reporting>
         <plugins>
             <plugin>
@@ -169,12 +184,19 @@
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>javancss-maven-plugin</artifactId>
             </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>findbugs-maven-plugin</artifactId>
+                <configuration>
+                    <onlyAnalyze>org.hibernate.*</onlyAnalyze>
+                </configuration>
+            </plugin>
         </plugins>
     </reporting>
 
     <properties>
         <!-- for now, at least, lets aggregate them -->
-        <hibernate.core.reports.aggregate>true</hibernate.core.reports.aggregate>
+        <hibernate.core.reports.aggregate>false</hibernate.core.reports.aggregate>
     </properties>
 
     <dependencyManagement>
@@ -187,13 +209,18 @@
             </dependency>
             <dependency>
                 <groupId>commons-logging</groupId>
-                <artifactId>commons-logging</artifactId>
-                <version>1.0.4</version>
+                <artifactId>commons-logging</artifactId>
+        	<version>99.0-does-not-exist</version>
             </dependency>
             <dependency>
-                <groupId>log4j</groupId>
-                <artifactId>log4j</artifactId>
-                <version>1.2.11</version>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging-api</artifactId>
+        	<version>99.0-does-not-exist</version>
+            </dependency>
+            <dependency>
+                <groupId>org.slf4j</groupId>
+                <artifactId>slf4j-api</artifactId>
+                <version>1.4.2</version>
             </dependency>
         </dependencies>
     </dependencyManagement>
@@ -211,6 +238,6 @@
             <name>JBoss Snapshot Repository</name>
             <url>dav:https://snapshots.jboss.org/maven2</url>
         </snapshotRepository>
-  </distributionManagement>
+    </distributionManagement>
 
 </project>




More information about the hibernate-commits mailing list