[ http://mc4j.org/jira/browse/STS-379?page=comments#action_10702 ]
Kai Grabfelder commented on STS-379:
------------------------------------
I'm not sure if we should revert stripes to the older JCL version. As a
workaround you can always exclude the transitive dependencies for JCL in your
pom:
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>logkit</groupId>
<artifactId>logkit</artifactId>
</exclusion>
<exclusion>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework</artifactId>
</exclusion>
</exclusions>
</dependency>
and include the servlet-api lateron as optional:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
> Backport to JCL 1.0.4
> ---------------------
>
> Key: STS-379
> URL: http://mc4j.org/jira/browse/STS-379
> Project: Stripes
> Issue Type: Improvement
> Affects Versions: Release 1.4, Release 1.4.1, Release 1.4.2, Release 1.4.3
> Environment: All
> Reporter: Fernando Ribeiro
> Assigned To: Tim Fennell
> Priority: Blocker
>
> The dependency between Stripes 1.4+ and JCL 1.1 prevents Maven users from
> upgrading from 1.3.2 due to an issue with the JCL POM:
> http://jira.codehaus.org/browse/MEV-392
> Stripes needs to be backported to JCK 1.0.4 until a new version of JCL is
> released.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://mc4j.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development