clirr-devel Mailing List for Clirr (Page 2)
Status: Alpha
Brought to you by:
lkuehne
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(15) |
Oct
(23) |
Nov
|
Dec
(25) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(9) |
Feb
|
Mar
|
Apr
|
May
(76) |
Jun
(207) |
Jul
(242) |
Aug
(42) |
Sep
(33) |
Oct
|
Nov
(7) |
Dec
(1) |
2005 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(66) |
Sep
(38) |
Oct
(6) |
Nov
|
Dec
(2) |
2006 |
Jan
(17) |
Feb
(5) |
Mar
(28) |
Apr
(6) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(7) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(33) |
Jun
(4) |
Jul
(3) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
(4) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
(6) |
Aug
(8) |
Sep
(5) |
Oct
(20) |
Nov
(7) |
Dec
(9) |
2009 |
Jan
(8) |
Feb
(3) |
Mar
(20) |
Apr
(10) |
May
(40) |
Jun
(11) |
Jul
(23) |
Aug
(4) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(2) |
2010 |
Jan
(5) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(22) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(2) |
2014 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2015 |
Jan
(1) |
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Lars Küh. <lk...@us...> - 2013-05-11 21:35:08
|
Update of /cvsroot/clirr/clirr/conf In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28327 Modified Files: clirr_checks.xml Log Message: fixed trailing whitespace regexp so that line breaks are ignored Index: clirr_checks.xml =================================================================== RCS file: /cvsroot/clirr/clirr/conf/clirr_checks.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- clirr_checks.xml 11 May 2013 20:19:45 -0000 1.4 +++ clirr_checks.xml 11 May 2013 21:35:05 -0000 1.5 @@ -170,7 +170,7 @@ <!-- don't like this too much: <module name="FinalParameters"/> --> <module name="Regexp"> - <property name="format" value="\s+$"/> + <property name="format" value=" +$"/> <property name="illegalPattern" value="true"/> <property name="message" value="Line has trailing spaces."/> </module> |
From: Lars Küh. <lk...@us...> - 2013-05-11 21:03:14
|
Update of /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/checks In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26892/internal/checks Modified Files: ClassFormatVersionCheck.java Log Message: added missing copyright header Index: ClassFormatVersionCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/checks/ClassFormatVersionCheck.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ClassFormatVersionCheck.java 17 Jun 2007 19:51:54 -0000 1.1 +++ ClassFormatVersionCheck.java 11 May 2013 21:03:11 -0000 1.2 @@ -1,3 +1,22 @@ +////////////////////////////////////////////////////////////////////////////// +// Clirr: compares two versions of a java library for binary compatibility +// Copyright (C) 2003 - 2013 Lars Kühne +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +////////////////////////////////////////////////////////////////////////////// + package net.sf.clirr.core.internal.checks; import net.sf.clirr.core.CheckerException; |
From: Lars Küh. <lk...@us...> - 2013-05-11 20:49:40
|
Update of /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv25981/core/internal Modified Files: CoIterator.java ApiDiffDispatcher.java AbstractDiffReporter.java ClassChangeCheck.java Log Message: updated copyright year Index: CoIterator.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/CoIterator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- CoIterator.java 3 Aug 2005 17:16:25 -0000 1.2 +++ CoIterator.java 11 May 2013 20:49:36 -0000 1.3 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 - 2005 Lars Kühne +// Copyright (C) 2003 - 2013 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ApiDiffDispatcher.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/ApiDiffDispatcher.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ApiDiffDispatcher.java 3 Aug 2005 17:16:14 -0000 1.4 +++ ApiDiffDispatcher.java 11 May 2013 20:49:36 -0000 1.5 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 - 2005 Lars Kühne +// Copyright (C) 2003 - 2013 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: AbstractDiffReporter.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/AbstractDiffReporter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- AbstractDiffReporter.java 26 Aug 2005 05:35:52 -0000 1.5 +++ AbstractDiffReporter.java 11 May 2013 20:49:36 -0000 1.6 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 - 2005 Lars Kühne +// Copyright (C) 2003 - 2013 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public Index: ClassChangeCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/ClassChangeCheck.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ClassChangeCheck.java 26 Aug 2005 05:35:53 -0000 1.3 +++ ClassChangeCheck.java 11 May 2013 20:49:36 -0000 1.4 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 - 2005 Lars Kühne +// Copyright (C) 2003 - 2013 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public |
From: Lars Küh. <lk...@us...> - 2013-05-11 20:26:38
|
Update of /cvsroot/clirr/clirr/core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24673 Modified Files: pom.xml Log Message: added license info and checkstyle report Index: pom.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/pom.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- pom.xml 18 Apr 2013 22:23:18 -0000 1.7 +++ pom.xml 11 May 2013 20:26:35 -0000 1.8 @@ -11,6 +11,14 @@ <relativePath>../pom.xml</relativePath> </parent> + <licenses> + <license> + <name>GNU Lesser General Public License (LGPL)</name> + <url>http://www.gnu.org/licenses/lgpl.html</url> + <distribution>repo</distribution> + </license> + </licenses> + <modelVersion>4.0.0</modelVersion> <groupId>net.sf.clirr</groupId> <artifactId>clirr-core</artifactId> @@ -227,6 +235,17 @@ <artifactId>maven-surefire-report-plugin</artifactId> <version>2.14.1</version> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>2.10</version> + <configuration> + <configLocation>../conf/clirr_checks.xml</configLocation> + <headerLocation>../conf/javaheader.txt</headerLocation> + </configuration> + </plugin> + <!-- maven-jdepend-plugin maven-license-plugin |
From: Lars Küh. <lk...@us...> - 2013-05-11 20:19:48
|
Update of /cvsroot/clirr/clirr/conf In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24088 Modified Files: clirr_checks.xml Log Message: updated checkstyle configuration file, some checks have been renamed or slightly changed in checkstyle 5 Index: clirr_checks.xml =================================================================== RCS file: /cvsroot/clirr/clirr/conf/clirr_checks.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- clirr_checks.xml 5 Oct 2003 17:59:11 -0000 1.3 +++ clirr_checks.xml 11 May 2013 20:19:45 -0000 1.4 @@ -32,9 +32,9 @@ <module name="Checker"> - <!-- Checks that a package.html file exists for each package. --> - <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml --> - <module name="PackageHtml"/> + <!-- Checks that a package documentation exists for each package. --> + <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage --> + <module name="JavadocPackage"/> <!-- Checks whether files end with a new line. --> <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile --> @@ -44,6 +44,14 @@ <!-- See http://checkstyle.sf.net/config_misc.html#Translation --> <module name="Translation"/> + <!-- Checks for Headers --> + <!-- See http://checkstyle.sf.net/config_header.html --> + <module name="Header"> + <property name="headerFile" value="${checkstyle.header.file}"/> + </module> + + <module name="FileLength"/> + <module name="FileTabCharacter"/> <module name="TreeWalker"> @@ -81,21 +89,6 @@ <module name="TypeName"/> - <!-- Checks for Headers --> - <!-- See http://checkstyle.sf.net/config_header.html --> - <module name="Header"> - <!-- The follow property value demonstrates the ability --> - <!-- to have access to ANT properties. In this case it uses --> - <!-- the ${basedir} property to allow Checkstyle to be run --> - <!-- from any directory within a project. See property --> - <!-- expansion, --> - <!-- http://checkstyle.sf.net/config.html#properties --> - <property - name="headerFile" - value="${checkstyle.header.file}"/> - </module> - - <!-- Checks for imports --> <!-- See http://checkstyle.sf.net/config_import.html --> <module name="AvoidStarImport"/> @@ -106,7 +99,6 @@ <!-- Checks for Size Violations. --> <!-- See http://checkstyle.sf.net/config_sizes.html --> - <module name="FileLength"/> <module name="LineLength"> <property name="max" value="110"/> </module> @@ -124,7 +116,6 @@ <!-- checkstyle 3.2 <module name="TypecastParenPad"/> --> - <module name="TabCharacter"/> <module name="WhitespaceAfter"/> <module name="WhitespaceAround"/> @@ -151,7 +142,6 @@ <!-- Checks for common coding problems --> <!-- See http://checkstyle.sf.net/config_coding.html --> <!-- <module name="AvoidInlineConditionals"/> not necessary for clirr, all developers are smart enough to figure out the meaning of "?:" --> - <module name="DoubleCheckedLocking"/> <!-- MY FAVOURITE --> <module name="EmptyStatement"/> <module name="EqualsHashCode"/> <!-- <module name="HiddenField"/> IDEA does smart syntax highlighting --> @@ -179,10 +169,12 @@ <!-- don't like this too much: <module name="FinalParameters"/> --> - <module name="GenericIllegalRegexp"> + <module name="Regexp"> <property name="format" value="\s+$"/> + <property name="illegalPattern" value="true"/> <property name="message" value="Line has trailing spaces."/> </module> + <module name="TodoComment"> <property name="severity" value="warning"/> </module> |
From: Lars Küh. <lk...@us...> - 2013-05-11 20:15:27
|
Update of /cvsroot/clirr/clirr In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23715 Modified Files: LICENSE.txt Log Message: reverted license to LGPL, as ASL provides to immediate benefits and changing the license might introduce legal issues Index: LICENSE.txt =================================================================== RCS file: /cvsroot/clirr/clirr/LICENSE.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- LICENSE.txt 18 Mar 2006 15:45:22 -0000 1.4 +++ LICENSE.txt 11 May 2013 20:15:23 -0000 1.5 @@ -1,202 +1,16 @@ +Clirr: compares two versions of a java library for binary compatibility +Copyright (C) 2003 - 2013 Lars Kühne - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
From: Lars Küh. <lk...@us...> - 2013-05-11 20:07:29
|
Update of /cvsroot/clirr/clirr/maven/src/test/net/sf/clirr/maven In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23346/src/test/net/sf/clirr/maven Removed Files: ClirrUtilsTest.java Log Message: removed maven 1 plugin |
From: Lars Küh. <lk...@us...> - 2013-05-11 20:07:28
|
Update of /cvsroot/clirr/clirr/maven In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23346 Removed Files: .cvsignore project.xml plugin.properties plugin.jelly maven.xml Log Message: removed maven 1 plugin |
From: Lars Küh. <lk...@us...> - 2013-05-11 16:22:13
|
Update of /cvsroot/clirr/clirr/core/src/changes In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12330 Modified Files: changes.xml Log Message: improved changelog wording Index: changes.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/changes/changes.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- changes.xml 29 May 2009 20:06:25 -0000 1.3 +++ changes.xml 11 May 2013 16:22:09 -0000 1.4 @@ -19,10 +19,10 @@ Removed dependency commons-lang. </action> <action dev="lkuehne" type="add"> - Converted the build system to Maven 2, dropped Maven 1 build system and Maven 1 plugin. + Converted the build system to Maven 3, dropped Maven 1 build system and Maven 1 plugin. </action> <action dev="lkuehne" type="fix"> - Upgraded dependencies (ant, commons-cli) to recent release versions. + Upgraded dependencies (ant, commons-cli) to newer release versions. </action> <action dev="lkuehne" type="add"> Dropped support for JDK 1.3. The API now uses chained exceptions, |
From: Lars Küh. <lk...@us...> - 2013-05-11 16:19:56
|
Update of /cvsroot/clirr/clirr/core/src/site/xdoc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12211 Modified Files: index.xml Log Message: updated links to the eclipse and java pages that explain binary compatibility Index: index.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/site/xdoc/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- index.xml 6 Oct 2008 22:08:23 -0000 1.1 +++ index.xml 11 May 2013 16:19:53 -0000 1.2 @@ -25,12 +25,12 @@ <ul> <li> the article - <a href="http://eclipse.org/eclipse/development/java-api-evolution.html">Evolving + <a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving Java-based APIs</a> on the Eclipse web site. </li> <li> the - <a href="http://java.sun.com/docs/books/jls/second_edition/html/binaryComp.doc.html">Binary Compatibility</a> + <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-13.html">Binary Compatibility</a> section in the Java Language specification. </li> </ul> |
From: Lars Küh. <lk...@us...> - 2013-05-11 16:16:10
|
Update of /cvsroot/clirr/clirr/conf In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv12060 Modified Files: javaheader.txt Log Message: updated copyright years Index: javaheader.txt =================================================================== RCS file: /cvsroot/clirr/clirr/conf/javaheader.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- javaheader.txt 22 May 2004 13:26:02 -0000 1.3 +++ javaheader.txt 11 May 2013 16:16:06 -0000 1.4 @@ -1,6 +1,6 @@ ////////////////////////////////////////////////////////////////////////////// // Clirr: compares two versions of a java library for binary compatibility -// Copyright (C) 2003 - 2004 Lars Kühne +// Copyright (C) 2003 - 2013 Lars Kühne // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public |
From: Lars Küh. <lk...@us...> - 2013-04-18 22:51:22
|
Update of /cvsroot/clirr/clirr/core/src/site In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv15429 Modified Files: site.xml Log Message: fixed syntax errors and NPE during site generation. The result is not ideal ("Running Clirr" is not collapsing) but at least the build succeeds now with Maven 3 Index: site.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/site/site.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- site.xml 8 Oct 2008 21:07:26 -0000 1.2 +++ site.xml 18 Apr 2013 22:51:19 -0000 1.3 @@ -1,8 +1,10 @@ <?xml version="1.0"?> -<project name="Clirr Core"> - <title>Clirr Core</title> - <bannerRight> - <name>Clirr</name> +<project + xmlns="http://maven.apache.org/DECORATION/1.3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 http://maven.apache.org/xsd/decoration-1.3.0.xsd" + name="Clirr Core"> + + <bannerRight> <src>images/clirr.png</src> </bannerRight> <body> @@ -12,10 +14,10 @@ </links> <menu name="Clirr Core"> <item name="Overview" href="/index.html" /> - <item name="Running Clirr"> + <item name="Running Clirr" href="#" > <item name="From Ant" href="/anttask.html" /> <item name="From a command-line" href="/runcli.html" /> - <item name="From Maven 2" href="http://mojo.codehaus.org/clirr-maven-plugin/" /> + <item name="From Maven" href="http://mojo.codehaus.org/clirr-maven-plugin/" /> </item> <item name="Message Explanations" href="/exegesis.html" /> </menu> |
From: Lars Küh. <lk...@us...> - 2013-04-18 22:23:22
|
Update of /cvsroot/clirr/clirr/core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13134 Modified Files: pom.xml Log Message: updated jxr plugin to fix AbstractMethodError in "mvn site" Index: pom.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/pom.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- pom.xml 9 Oct 2008 21:05:07 -0000 1.6 +++ pom.xml 18 Apr 2013 22:23:18 -0000 1.7 @@ -201,8 +201,14 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>3.2</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.3</version> + <version>2.9</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <show>protected</show> @@ -211,15 +217,15 @@ </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>jxr-maven-plugin</artifactId> - <version>2.0-beta-1</version> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jxr-plugin</artifactId> + <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.4.2</version> + <version>2.14.1</version> </plugin> <!-- maven-jdepend-plugin |
From: Lars Küh. <lk...@us...> - 2013-04-18 21:18:48
|
Update of /cvsroot/clirr/clirr In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8263 Modified Files: pom.xml Log Message: updated developer information and fixed umlaut encoding of my name in Netbeans Index: pom.xml =================================================================== RCS file: /cvsroot/clirr/clirr/pom.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- pom.xml 24 Mar 2009 12:22:28 -0000 1.4 +++ pom.xml 18 Apr 2013 21:18:44 -0000 1.5 @@ -1,3 +1,4 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> <!-- - Maven 2.x parent pom file for Clirr. - @@ -48,10 +49,10 @@ <!-- who the developers are for the project --> <developers> <developer> - <name>Lars Kühne</name> + <name>Lars Kühne</name> <id>lkuehne</id> <!-- <email>lkuehne at users sourceforge net</email> --> - <organization>ppi Media</organization> + <organization></organization> <timezone>+1</timezone> <roles> <role>Java Developer</role> @@ -61,9 +62,9 @@ <developer> <name>Vincent Massol</name> <id>vmassol</id> - <organization>Apache Software Foundation</organization> + <organization></organization> <timezone>+1</timezone> - <url>http://blogs.codehaus.org/people/vmassol</url> + <url>https://twitter.com/vmassol</url> <roles> <role>Initial Inspiration and Feedback</role> <role>Java Developer</role> @@ -73,8 +74,8 @@ <developer> <name>Simon Kitching</name> <id>s_kitching</id> - <organization>ECN</organization> - <timezone>+12</timezone> + <organization></organization> + <timezone>+1</timezone> <roles> <role>Java Developer</role> </roles> |
From: Uladzimir M. <tr...@gm...> - 2013-04-09 08:55:38
|
Sounds great! Please let me know if you'll need any help with release, cause we are using it heavily. -vova On Apr 8, 2013, at 10:13 PM, Simon Kitching <ski...@ap...> wrote: > Wow, haven't received any emails about clirr for ages :-) > > As you can see from the sourceforge stats page, clirr hasn't had any updates for a long time. However I've been thinking of looking at it again, and this looks like a good reason to do it now. > > I'll have a look at clirr and at Luke's patches over the weekend and see if a release is possible. I was one of the regular developers, and still have admin rights..though Lars was the primary developer and admin. > > Lars, are you still on this list too? > > Cheers, > Simon > > On 07/04/13 19:27, Uladzimir Mihura wrote: >> Hello Guys, >> >> Writing this to ask about the status of the Clirr. Will we have a 0.7 release? >> >> We've faced with an issue described here: http://sourceforge.net/tracker/index.php?func=detail&aid=1377978&group_id=89627&atid=590799 and I can see that it's fixed on Luke's github repo. >> >> Do you have any blockers of pushing it to Maven Central? >> >> Thank you for the Clirr and in advance :) >> >> -vova >> >> > > ------------------------------------------------------------------------------ > Minimize network downtime and maximize team effectiveness. > Reduce network management and security costs.Learn how to hire > the most talented Cisco Certified professionals. Visit the > Employer Resources Portal > http://www.cisco.com/web/learning/employer_resources/index.html_______________________________________________ > Clirr-devel mailing list > Cli...@li... > https://lists.sourceforge.net/lists/listinfo/clirr-devel |
From: Simon K. <ski...@ap...> - 2013-04-08 19:29:05
|
Wow, haven't received any emails about clirr for ages :-) As you can see from the sourceforge stats page, clirr hasn't had any updates for a long time. However I've been thinking of looking at it again, and this looks like a good reason to do it now. I'll have a look at clirr and at Luke's patches over the weekend and see if a release is possible. I was one of the regular developers, and still have admin rights..though Lars was the primary developer and admin. Lars, are you still on this list too? Cheers, Simon On 07/04/13 19:27, Uladzimir Mihura wrote: > Hello Guys, > > Writing this to ask about the status of the Clirr. Will we have a 0.7 > release? > > We've faced with an issue described here: > http://sourceforge.net/tracker/index.php?func=detail&aid=1377978&group_id=89627&atid=590799 and > I can see that it's fixed on Luke's github repo > <https://github.com/lukegb/clirr>. > > Do you have any blockers of pushing it to Maven Central? > > Thank you for the Clirr and in advance :) > > -vova > > |
From: Uladzimir M. <Ula...@ep...> - 2013-04-07 17:41:05
|
Hello Guys, Writing this to ask about the status of the Clirr. Will we have a 0.7 release? We've faced with an issue described here: http://sourceforge.net/tracker/index.php?func=detail&aid=1377978&group_id=89627&atid=590799 and I can see that it's fixed on Luke's github repo. Do you have any blockers of pushing it to Maven Central? Thank you for the Clirr and in advance :) -vova |
From: SourceForge.net <no...@so...> - 2012-08-18 08:24:45
|
Bugs item #3559214, was opened at 2012-08-18 01:24 Message generated for change (Tracker Item Submitted) made by capnnemo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590799&aid=3559214&group_id=89627 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: CapnNemo (capnnemo) Assigned to: Nobody/Anonymous (nobody) Summary: Wrong error message about changed method signature Initial Comment: Further to ID: 1373831, Clirr reports an error if a method is dropped in favour of a super-class implementation, and a new method added with a similar signature. Rather than checking for a super-implementation, it seems to check for signature changes first. One way round this is to keep the overloaded method, but just delegate to the parent. The overloaded method can be dropped in the next version, and Clirr does not then complain. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590799&aid=3559214&group_id=89627 |
From: SourceForge.net <no...@so...> - 2011-04-06 14:16:04
|
Feature Requests item #3269529, was opened at 2011-04-02 15:43 Message generated for change (Settings changed) made by sebbaz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590802&aid=3269529&group_id=89627 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interface Improvements (example) Group: None >Status: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: seb baz (sebbaz) Assigned to: Nobody/Anonymous (nobody) Summary: Optional source compatibility check Initial Comment: There are some changes which are binary compatible, but which are not source compatible - for example, throws clauses are checked at compile-time only. It would be very useful to be able to optionally report such changes. I realise that Clirr targets binary compatibility, but it's likely to be relatively easy to apply additional compatibility rules within Clirr, compared with writing a different tool to do the same job. ---------------------------------------------------------------------- Comment By: seb baz (sebbaz) Date: 2011-04-06 15:07 Message: Seems to be already implemented in SVN ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590802&aid=3269529&group_id=89627 |
From: SourceForge.net <no...@so...> - 2011-04-06 14:07:30
|
Feature Requests item #3269529, was opened at 2011-04-02 15:43 Message generated for change (Comment added) made by sebbaz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590802&aid=3269529&group_id=89627 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interface Improvements (example) Group: None Status: Open >Resolution: Fixed Priority: 5 Private: No Submitted By: seb baz (sebbaz) Assigned to: Nobody/Anonymous (nobody) Summary: Optional source compatibility check Initial Comment: There are some changes which are binary compatible, but which are not source compatible - for example, throws clauses are checked at compile-time only. It would be very useful to be able to optionally report such changes. I realise that Clirr targets binary compatibility, but it's likely to be relatively easy to apply additional compatibility rules within Clirr, compared with writing a different tool to do the same job. ---------------------------------------------------------------------- >Comment By: seb baz (sebbaz) Date: 2011-04-06 15:07 Message: Seems to be already implemented in SVN ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590802&aid=3269529&group_id=89627 |
From: SourceForge.net <no...@so...> - 2011-04-02 14:43:14
|
Feature Requests item #3269529, was opened at 2011-04-02 15:43 Message generated for change (Tracker Item Submitted) made by sebbaz You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590802&aid=3269529&group_id=89627 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interface Improvements (example) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: seb baz (sebbaz) Assigned to: Nobody/Anonymous (nobody) Summary: Optional source compatibility check Initial Comment: There are some changes which are binary compatible, but which are not source compatible - for example, throws clauses are checked at compile-time only. It would be very useful to be able to optionally report such changes. I realise that Clirr targets binary compatibility, but it's likely to be relatively easy to apply additional compatibility rules within Clirr, compared with writing a different tool to do the same job. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590802&aid=3269529&group_id=89627 |
From: Buy V. S. A. P. on www.zu14.c. <ove...@pa...> - 2010-02-02 17:51:35
|
respe cts nonli near cloak ed chamb er simpl eton sagel y fulfi ller fatig uing amalg amate d omnip resen t setsc rews trigo nomet ry unsol d unsta blene ss foile d sings altis simo ingro wing rhaps odisi ng decar buris ed boucl e eryng o chamb er mains tream sagel y antiq ue senti depre ciati on unarm ed manda mus sheen y valet a sequi tur indis tinct ly depre ciati on vermi culat ed mains tream aggra vatio ns attu dudis h bebel shirt s unsol d chanc y edged unsta cked manda mus seaml essly paral ytic valet a micru rgy proco nsul undis honor ed exagg erate rough house tetan ize uncle ared paras itism pratt ler extin ction trans onic picka x nutri tive aberr ancy skipj ack opule nt explo itati on boucl e frisk ily gruel ling radiu m pods proco nsul taill e specu lum intnl edged muzz outda zzle reini tiali se aerom eters adora bly tanta lize corre spond ed solid arism reno astou nded laund ered inter ring entob last |
From: Viagra on www.na47.c. <ich...@cm...> - 2010-01-26 11:54:14
|
estab lishe s trist ate palla dio |
From: Trennell N. <blu...@tk...> - 2010-01-18 22:53:17
|
To understand what it was that caused this sense of tremendous tension, he noticed a head or two in that array of faces drop suddenly as if in overwhelming emotion. He looked at the prisoner; but there was no movement there. The young mon |
From: Orris <glu...@pr...> - 2010-01-13 10:17:20
|
Ld see the reward of the care and trouble they have undergone for their children. Therefore children, in return for this care and trouble, must show forth charity and beneficence, and must implore pardon and forgiveness for their parents. So you ought, in return for the love and kindness shown you by your father, to give to the poor for his sake, with greatest submission and humility implore pardon and remission of sins, and ask for the supreme mercy. It is even possible that the condition of those who have died in sin and unbelief may become changed; that is to say, they may become the object of pardon through the bounty of God, not through His justice; for bounty is giving without desert, and justice is giving what is deserved. As we have power to pray for these souls here, so likewise we shall possess the same power in the other world, which is the Ki |