[hibernate-commits] Hibernate SVN: r11522 - trunk/sandbox/maven-poc/Hibernate3.
hibernate-commits at lists.jboss.org
hibernate-commits at lists.jboss.org
Mon May 14 17:37:48 EDT 2007
Author: steve.ebersole at jboss.com
Date: 2007-05-14 17:37:48 -0400 (Mon, 14 May 2007)
New Revision: 11522
Modified:
trunk/sandbox/maven-poc/Hibernate3/pom.xml
Log:
cleanup based on suggestions from Cedirc Vidal
Modified: trunk/sandbox/maven-poc/Hibernate3/pom.xml
===================================================================
--- trunk/sandbox/maven-poc/Hibernate3/pom.xml 2007-05-14 16:07:48 UTC (rev 11521)
+++ trunk/sandbox/maven-poc/Hibernate3/pom.xml 2007-05-14 21:37:48 UTC (rev 11522)
@@ -90,9 +90,7 @@
<module>jmx</module>
<module>testing</module>
<module>documentation</module>
-<!--
<module>testsuite</module>
--->
<!-- Need to scope bytecode providers first
<module>bytecode-cglib</module>
<module>bytecode-javassist</module>
@@ -146,6 +144,16 @@
<artifactId>hibernate-testing</artifactId>
<version>${version}</version>
</dependency>
+ <dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-testsuite</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-manual</artifactId>
+ <version>${version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
@@ -163,23 +171,23 @@
<id>jboss-maven-repo</id>
<name>JBoss maintained repo</name>
<url>http://repository.jboss.com/maven2</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
</repository>
</repositories>
-<!--
- The jbc2.0-based module is not written yet, but it will require jdk5
<profiles>
<profile>
- <id>jdk5</id>
+ <id>jbosscache2-module</id>
<modules>
<module>cache-jbosscache2</module>
</modules>
<activation>
- <jdk>5</jdk>
+ <jdk>1.5</jdk>
</activation>
</profile>
</profiles>
--->
<build>
<plugins>
@@ -187,6 +195,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<configuration>
+ <jdkName>1.4</jdkName>
+ <jdkLevel>1.4</jdkLevel>
<!-- why this isnt the default I have no clue -->
<linkModules>true</linkModules>
</configuration>
@@ -194,14 +204,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
</plugin>
</plugins>
</build>
+ <!-- Not really caring about reporting plugin versions; I think this is ok??? -->
<reporting>
<plugins>
<plugin>
@@ -209,30 +220,13 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
- <link>http://java.sun.com/j2se/1.4.2/docs/api</link>
+ <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
<link>http://java.sun.com/j2ee/1.4/docs/api/</link>
</links>
</configuration>
</plugin>
-<!--
- This one completely does not work for me...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-changes-plugin</artifactId>
- <reportSets>
- <reportSet>
- <reports>
- <report>jira-report</report>
- </reports>
- </reportSet>
- </reportSets>
- <configuration>
- <statusIds>Closed</statusIds>
- </configuration>
- </plugin>
--->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
@@ -244,9 +238,11 @@
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tags>
+ <tag>@FIXME</tag>
<tag>@fixme</tag>
<tag>FIXME</tag>
<tag>fixme</tag>
+ <tag>@TODO</tag>
<tag>@todo</tag>
<tag>TODO</tag>
<tag>todo</tag>
@@ -261,7 +257,7 @@
<minimumTokens>100</minimumTokens>
<targetJdk>1.4</targetJdk>
</configuration>
- </plugin>
+ </plugin>
</plugins>
</reporting>
More information about the hibernate-commits
mailing list