[ https://issues.apache.org/jira/browse/CLK-492?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12697501#action_12697501
]
Naoki Takezoe commented on CLK-492:
-----------------------------------
Hi Bob,
I checked committed poms. It seems OK.
We will be able to resolve this issue :-)
> click-extras pom.xml contains some problems
> -------------------------------------------
>
> Key: CLK-492
> URL: https://issues.apache.org/jira/browse/CLK-492
> Project: Click
> Issue Type: Bug
> Components: extras
> Affects Versions: 2.0.1, 1.5.1
> Reporter: Naoki Takezoe
> Assignee: Bob Schellink
> Fix For: 2.1.0, 2.0.2, 1.5.2
>
>
> * 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.
|