/[Apache-SVN]/webservices/wss4j/trunk/pom.xml
ViewVC logotype

Log of /webservices/wss4j/trunk/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Sticky Revision:

Revision 797388 - (view) (annotate) - [select for diffs]
Modified Fri Jul 24 09:33:56 2009 UTC (4 months ago) by coheigea
File length: 21198 byte(s)
Diff to previous 792564 (colored)
[WSS-202] - Forward merged to trunk.

Revision 792564 - (view) (annotate) - [select for diffs]
Modified Thu Jul 9 14:46:15 2009 UTC (4 months, 2 weeks ago) by coheigea
File length: 21198 byte(s)
Diff to previous 792328 (colored)
[WSS-158] - Upgrade to BouncyCastle 1.43 now that it's in the maven central repo.

Revision 792328 - (view) (annotate) - [select for diffs]
Modified Wed Jul 8 21:21:42 2009 UTC (4 months, 2 weeks ago) by dkulp
File length: 21188 byte(s)
Diff to previous 785617 (colored)
Pull osgi updates from 1.5.x to trunk

Revision 785617 - (view) (annotate) - [select for diffs]
Modified Wed Jun 17 14:21:01 2009 UTC (5 months, 1 week ago) by coheigea
File length: 20978 byte(s)
Diff to previous 779937 (colored)
Forward-merged Dan's BouncyCastle fix to trunk
 - Forward-merged pkcs12 fix as well.

Revision 779937 - (view) (annotate) - [select for diffs]
Modified Fri May 29 11:51:38 2009 UTC (5 months, 4 weeks ago) by coheigea
File length: 20963 byte(s)
Diff to previous 777081 (colored)
[WSS-191] - Moved trust verification from WSHandler to SignatureProcessor
 - Trust is now verified on certificates *before* signature validation
 - This means that bad requests are rejected quicker
 - Also it works around a security bug in the WSHandler implementations where trust is only verified on a single certificate
 - Also did a general rewrite of the SignatureProcessor

Revision 777081 - (view) (annotate) - [select for diffs]
Modified Thu May 21 11:47:33 2009 UTC (6 months ago) by coheigea
File length: 20683 byte(s)
Diff to previous 776287 (colored)
[WSS-40] - A Refactor of the crypto stuff
 - I removed all "reverse" functionality, it wasn't being used anyway.
 - I removed the BouncyCastle crypto implementation
 - I merged the Merlin functionality into CryptoBase, as JDK 1.4 is the minimum requirement for the next release
 - I improved some of the verifyTrust checking in WSHandler.

Revision 776287 - (view) (annotate) - [select for diffs]
Modified Tue May 19 11:57:37 2009 UTC (6 months, 1 week ago) by coheigea
File length: 20695 byte(s)
Diff to previous 765646 (colored)
[WSS-40]
 - Removed all Xalan dependencies from the EnvelopeIdResolver.
 - Changed the dependency on Xalan in the pom from compile to provided.
 - Refactored WSSecSignature, and changed WSSecDKSign to use some common code in WSSecSignature.

Revision 765646 - (view) (annotate) - [select for diffs]
Modified Thu Apr 16 14:15:08 2009 UTC (7 months, 1 week ago) by coheigea
File length: 20690 byte(s)
Diff to previous 765255 (colored)
Forward merged to trunk the changes to including the NOTICE/LICENSE in the maven-generated jars
 - Also changed the license headers on all source/test files to remove copyright notices.

Revision 765255 - (view) (annotate) - [select for diffs]
Modified Wed Apr 15 16:11:24 2009 UTC (7 months, 1 week ago) by coheigea
File length: 20066 byte(s)
Diff to previous 763177 (colored)
Removing maven-changes-plugin from poms.
 - This was giving me too much grief...anyone who wants to know the bugs fixed can consult the Changelog or JIRA.

Revision 763177 - (view) (annotate) - [select for diffs]
Modified Wed Apr 8 10:57:23 2009 UTC (7 months, 2 weeks ago) by coheigea
File length: 20884 byte(s)
Diff to previous 753319 (colored)
[WSS-173] - Remove unnecessary namespace definitions
 - UsernameToken, SecurityTokenReference and Reference types do not have the wsse namespace defined by default now
 - Care must be taken using the SecurityTokenReference in the SOAP Body as it must have the wsse namespace defined then
 - The security header always defines the wsu namespace from now on.
 - As a result the Timestamp, and UsernameToken child elements do not define it.

Revision 753319 - (view) (annotate) - [select for diffs]
Modified Fri Mar 13 17:08:43 2009 UTC (8 months, 2 weeks ago) by coheigea
File length: 20884 byte(s)
Diff to previous 751764 (colored)
Updated trunk to 1.6-SNAPSHOT.

Revision 751764 - (view) (annotate) - [select for diffs]
Modified Mon Mar 9 17:05:19 2009 UTC (8 months, 2 weeks ago) by coheigea
File length: 20886 byte(s)
Diff to previous 751711 (colored)
Upgraded to maven-changes-plugin 2.0 -> 2.1 to fix jira-report issue.

Revision 751711 - (view) (annotate) - [select for diffs]
Modified Mon Mar 9 15:41:11 2009 UTC (8 months, 2 weeks ago) by coheigea
File length: 20886 byte(s)
Diff to previous 750484 (colored)
Removed windows newline characters from pom

Revision 750484 - (view) (annotate) - [select for diffs]
Modified Thu Mar 5 16:00:47 2009 UTC (8 months, 3 weeks ago) by coheigea
File length: 20924 byte(s)
Diff to previous 749664 (colored)
[WSS-168] - A fix for different issuer DN formats breaking decryption/verification
 - This fix introduces a compile-time dependency on BouncyCastle.
 - The idea is to convert the issuer DN to a java X500Principal object first. 
 - This is to ensure interop with a DN constructed from .NET, where e.g. it uses "S" instead of "ST".
 - Then convert it to a BouncyCastle X509Name, which will order the attributes of the DN in a 
   particular way (see WSS-168). 
 - If the conversion to an X500Principal object fails (e.g. if the DN contains "E" instead of 
  "EMAILADDRESS"), then fall back on a direct conversion to a BC X509Name.


Revision 749664 - (view) (annotate) - [select for diffs]
Modified Tue Mar 3 17:11:54 2009 UTC (8 months, 3 weeks ago) by coheigea
File length: 20874 byte(s)
Diff to previous 738124 (colored)
[WSS-167] - Apply maven-pmd-plugin to the source tree.

Revision 738124 - (view) (annotate) - [select for diffs]
Modified Tue Jan 27 16:10:32 2009 UTC (9 months, 4 weeks ago) by coheigea
File length: 19826 byte(s)
Diff to previous 734409 (colored)
Upgraded pom/build versions on trunk to 1.5.6-SNAPSHOT
 - Trunk is now open
 - Removed addressing jar from lib, which is no longer required.

Revision 734409 - (view) (annotate) - [select for diffs]
Modified Wed Jan 14 14:48:34 2009 UTC (10 months, 1 week ago) by coheigea
File length: 19864 byte(s)
Diff to previous 734185 (colored)
Some project updates for imminent 1.5.5 release.

Revision 734185 - (view) (annotate) - [select for diffs]
Modified Tue Jan 13 17:12:30 2009 UTC (10 months, 1 week ago) by coheigea
File length: 19496 byte(s)
Diff to previous 732761 (colored)
Update to surefire to run tests with JDK 1.4.2
 - Thanks to Dan Kulp for this fix.

Revision 732761 - (view) (annotate) - [select for diffs]
Modified Thu Jan 8 17:14:53 2009 UTC (10 months, 2 weeks ago) by coheigea
File length: 19362 byte(s)
Diff to previous 728603 (colored)
Updated exported packages version to 1.5.5

Revision 728603 - (view) (annotate) - [select for diffs]
Modified Mon Dec 22 04:34:48 2008 UTC (11 months ago) by nandana
File length: 19362 byte(s)
Diff to previous 727760 (colored)
making the opensaml import optional

Revision 727760 - (view) (annotate) - [select for diffs]
Modified Thu Dec 18 16:46:22 2008 UTC (11 months, 1 week ago) by dkulp
File length: 19341 byte(s)
Diff to previous 727410 (colored)
Get unit tests working from Maven
Cleanup pom a little bit

Revision 727410 - (view) (annotate) - [select for diffs]
Modified Wed Dec 17 15:11:58 2008 UTC (11 months, 1 week ago) by coheigea
File length: 17477 byte(s)
Diff to previous 722119 (colored)
Updated the spec versions and urls in the xdocs index to be 1.1
 - Also changed the version number in the pom to be 1.5.5-SNAPSHOT instead of SNAPSHOT. The maven-changes-plugin will pick up the 1.5.5 JIRA items automatically then.

Revision 722119 - (view) (annotate) - [select for diffs]
Modified Mon Dec 1 16:38:24 2008 UTC (11 months, 3 weeks ago) by coheigea
File length: 17481 byte(s)
Diff to previous 712054 (colored)
Removing "provided" scope from opensaml dependency after discussion with Fred.
 - Also removing windows new-lines introduced by an earlier commit...

Revision 712054 - (view) (annotate) - [select for diffs]
Modified Fri Nov 7 04:35:23 2008 UTC (12 months, 2 weeks ago) by nandana
File length: 17928 byte(s)
Diff to previous 711669 (colored)
WSS-110 Adding maven-bundle-plugin to the wss4j build 

Revision 711669 - (view) (annotate) - [select for diffs]
Modified Wed Nov 5 19:21:38 2008 UTC (12 months, 2 weeks ago) by dims
File length: 16078 byte(s)
Diff to previous 710081 (colored)
add the snapshot repo.

Revision 710081 - (view) (annotate) - [select for diffs]
Modified Mon Nov 3 15:20:22 2008 UTC (12 months, 3 weeks ago) by coheigea
File length: 15777 byte(s)
Diff to previous 705557 (colored)
[WSS-124] - Changed opensaml dependency
 - We're now pulling in opensaml 1.1 from maven central
 - The repositories section of the pom is removed as a result
 - I changed the scope of opensaml to be "provided".


Revision 705557 - (view) (annotate) - [select for diffs]
Modified Fri Oct 17 10:59:33 2008 UTC (13 months, 1 week ago) by coheigea
File length: 16375 byte(s)
Diff to previous 705205 (colored)
[WSS-145] - Upgraded to xmlsec 1.4.2
 - Some changes were needed to KeyInfo elements used outside of the Signature stuff
 - I also added in "provided" for the axis dependencies in the pom.


Revision 705205 - (view) (annotate) - [select for diffs]
Modified Thu Oct 16 10:56:00 2008 UTC (13 months, 1 week ago) by coheigea
File length: 16264 byte(s)
Diff to previous 700824 (colored)
[WSS-150] - Upgraded to XALAN 2.7.1
 - I also moved the groupId in the pom for the axis dependencies from "axis" to "org.apache.axis".
 - As part of this, I had to add dependencies on axis-jaxrpc and axis-saaj.

Revision 700824 - (view) (annotate) - [select for diffs]
Modified Wed Oct 1 16:19:18 2008 UTC (13 months, 3 weeks ago) by coheigea
File length: 15862 byte(s)
Diff to previous 700768 (colored)
[WSS-125] - Upgraded bouncycastle version from 1.36 to 1.40
 - This was just recently uploaded to the central maven repo.


Revision 700768 - (view) (annotate) - [select for diffs]
Modified Wed Oct 1 13:56:10 2008 UTC (13 months, 3 weeks ago) by coheigea
File length: 15862 byte(s)
Diff to previous 700739 (colored)
[WSS-144] - Removed tab characters from all source, test and build files.

Revision 700739 - (view) (annotate) - [select for diffs]
Modified Wed Oct 1 11:05:53 2008 UTC (13 months, 3 weeks ago) by coheigea
File length: 12292 byte(s)
Diff to previous 699349 (colored)
[WSS-124] - pom cleanup
 - Removed unused ciManagement blob
 - Updated versions of the build plugins
 - Removed commented out sections of build plugins
 - Removed maven central and snapshot from "repositories"
 - Removed pluginRepositories blob altogether (no more codehaus dependencies)
 - Switched codehaus jdepend-maven-plugin to maven-dependency-plugin
 - Switched codehaus jxr-maven-plugin to maven-jxr-plugin


Revision 699349 - (view) (annotate) - [select for diffs]
Modified Fri Sep 26 14:57:24 2008 UTC (14 months ago) by coheigea
File length: 14460 byte(s)
Diff to previous 698656 (colored)
[WSS-125] - Upgraded BouncyCastle version from 1.32 to 1.36


Revision 698656 - (view) (annotate) - [select for diffs]
Modified Wed Sep 24 17:03:28 2008 UTC (14 months ago) by coheigea
File length: 14460 byte(s)
Diff to previous 697884 (colored)
[WSS-128] - Reverting to xmlsec 1.4.0
 - When testing the latest snapshot with CXF I noticed that the SOAP body was being encrypted ok,
   but the original text was left in the message. This is caused by:

   https://issues.apache.org/bugzilla/show_bug.cgi?id=42886

 - We're going to have to either stick with 1.4.0 or get 1.4.2 working for the next release.


Revision 697884 - (view) (annotate) - [select for diffs]
Modified Mon Sep 22 16:12:43 2008 UTC (14 months ago) by coheigea
File length: 14460 byte(s)
Diff to previous 697874 (colored)
[WSS-138] [WSS-122] - Website fixes
 - Applied the patch for WSS-122, misc. website fixes
 - Added link to Nabble site mailing list (thanks Glen).


Revision 697874 - (view) (annotate) - [select for diffs]
Modified Mon Sep 22 15:45:41 2008 UTC (14 months ago) by coheigea
File length: 14343 byte(s)
Diff to previous 662871 (colored)
[WSS-128] - Upgrade to xmlsec 1.4.1
 - I also did a quick cleanup of the pom, removed tabs, newlines, re-indented it etc.
 - I moved the central maven repo above the ws zones one, to pick up the signed version of xmlsec 1.4.1


Revision 662871 - (view) (annotate) - [select for diffs]
Modified Tue Jun 3 20:12:49 2008 UTC (17 months, 3 weeks ago) by fadushin
File length: 17769 byte(s)
Diff to previous 662864 (colored)
Site changes to 1.5.4 release that were not recorded in subversion.

These are being committed to the mainline, so that future releases
will incorporate them.


Revision 662864 - (view) (annotate) - [select for diffs]
Modified Tue Jun 3 19:26:58 2008 UTC (17 months, 3 weeks ago) by fadushin
File length: 17788 byte(s)
Diff to previous 554760 (colored)
Merged branch/tags changes to mainline

Revision 554760 - (view) (annotate) - [select for diffs]
Modified Mon Jul 9 20:44:12 2007 UTC (2 years, 4 months ago) by dims
File length: 16319 byte(s)
Diff to previous 531538 (colored)
add missing resources for the resource bundles

Revision 531538 - (view) (annotate) - [select for diffs]
Modified Mon Apr 23 17:21:51 2007 UTC (2 years, 7 months ago) by ruchithf
File length: 16108 byte(s)
Diff to previous 529870 (colored)
Updated the xml-sec group id

Revision 529870 - (view) (annotate) - [select for diffs]
Modified Wed Apr 18 05:20:37 2007 UTC (2 years, 7 months ago) by ruchithf
File length: 16100 byte(s)
Diff to previous 510938 (colored)
Upgrading to xmlsec-1.4.0

Revision 510938 - (view) (annotate) - [select for diffs]
Modified Fri Feb 23 13:18:23 2007 UTC (2 years, 9 months ago) by ruchithf
File length: 16100 byte(s)
Diff to previous 507574 (colored)
Added some missing deps.
Trying to get the tests to run - Seems like it is not possible to call custom ant tasks(wsdl2java) using the maven2 ant-run plugin :-(


Revision 507574 - (view) (annotate) - [select for diffs]
Modified Wed Feb 14 15:22:43 2007 UTC (2 years, 9 months ago) by dims
File length: 13754 byte(s)
Diff to previous 507571 (colored)
bit more cleanup

Revision 507571 - (view) (annotate) - [select for diffs]
Modified Wed Feb 14 15:18:50 2007 UTC (2 years, 9 months ago) by dims
File length: 13839 byte(s)
Diff to previous 507566 (colored)
cleanup pom

Revision 507566 - (view) (annotate) - [select for diffs]
Added Wed Feb 14 15:11:56 2007 UTC (2 years, 9 months ago) by dims
File length: 14390 byte(s)
forgot the pom and assembly files

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2