You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@click.apache.org by "Naoki Takezoe (JIRA)" <ji...@apache.org> on 2009/02/22 12:58:55 UTC

[JIRA] Commented: (CLK-492) click-extras pom.xml contains some problems

    [ http://issues.apache.org/click/browse/CLK-492?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=11691#action_11691 ] 

Naoki Takezoe commented on CLK-492:
-----------------------------------

Please notice: pom.xml may have more problem about optional dependencies.
We should test again pom.xml carefully.

> 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, 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.