前进中的一块石头

注:(出自http://reverocean.iteye.com/blog/644519)

在学习Maven的时候,看到http://www.sonatype.com/books/maven-book/reference_zh/ch07s06.html#example_pom-for-simple-webapp 
运行mvn hibernate3:hbm2ddl报错,到处上网查,发现需要修改pom.xml,在hibernate3-maven-plugin里加一个<jdk5>true</jdk5>就可以了 
修改之后的plugin配置如下: 

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>hibernate3-maven-plugin</artifactId>
        <version>2.2</version>
        <configuration>
   <componentProperties>
    <jdk5>true</jdk5>
    <implementation>annotationconfiguration</implementation>
   </componentProperties>

        </configuration>
        <dependencies>
          <dependency>
            <groupId>hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <version>1.8.0.7</version>
          </dependency>
        </dependencies>
      </plugin>

出现这块石头的原因很多,比如找的pdf资源里面给的代码问题颇多,和它所给的代码实例差别很大,

然后自己查资料的能力,尤其找到有用资源的能力欠缺,还有就是作为一个maven初学者,

所以,耽搁了比较长的时间,还好,终于找到了

你可能感兴趣的:(maven,simple,weather)