click-extras pom.xml contains some problems
-------------------------------------------
Key: CLK-492
URL: http://issues.apache.org/click/browse/CLK-492
Project: Click
Issue Type: Bug
Components: extras
Affects Versions: 2.0.1
Reporter: Naoki Takezoe
* freemarker does not contained
* hibernate version is invalid
* hibernate dependency should excludes javax.transaction (jar does not exist
in the repository)
* cayenne groupId is old
Here is the fixed pom.xml:
----
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.6.ga</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.cayenne</groupId>
<artifactId>cayenne-nodeps</artifactId>
<version>2.0.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.12</version>
<optional>true</optional>
</dependency>
----
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.