commit c6dce27002b2dfe8d731fe87773065273db2a84346eae816de0a6b42c044aa5e Author: Fridrich Strba Date: Tue Aug 13 07:07:38 2024 +0000 OBS-URL: https://build.opensuse.org/package/show/Java:packages/apache-commons-cli?expand=0&rev=44 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/CLI-253-workaround.patch b/CLI-253-workaround.patch new file mode 100644 index 0000000..6cd252f --- /dev/null +++ b/CLI-253-workaround.patch @@ -0,0 +1,89 @@ +commit 77218790904f40395304669f5d79740f459c0a90 (HEAD -> cli-253, origin/cli-253) +Author: Michal Srb +AuthorDate: Mon Jun 22 15:01:30 2015 +0200 +Commit: Michal Srb +CommitDate: Mon Jun 22 15:04:05 2015 +0200 + + [CLI-253] Prevent "Unrecognized option: --null" when handling long opts in PosixParser + +--- a/src/main/java/org/apache/commons/cli/Options.java ++++ b/src/main/java/org/apache/commons/cli/Options.java +@@ -195,6 +195,20 @@ public class Options implements Serializ + return this; + } + ++ /* ++ * Retrieve the {@link Option} matching the long name specified. ++ * The leading hyphens in the name are ignored (up to 2). ++ * ++ * @param opt long name of the {@link Option} ++ * @return the option represented by opt ++ */ ++ Option getLongOption(String opt) ++ { ++ opt = Util.stripLeadingHyphens(opt); ++ ++ return longOpts.get(opt); ++ } ++ + /** + * Gets the options with a long name starting with the name specified. + * +--- a/src/main/java/org/apache/commons/cli/PosixParser.java ++++ b/src/main/java/org/apache/commons/cli/PosixParser.java +@@ -141,7 +141,7 @@ public class PosixParser extends Parser + } else if (matchingOpts.size() > 1) { + throw new AmbiguousOptionException(opt, matchingOpts); + } else { +- currentOption = options.getOption(matchingOpts.get(0)); ++ currentOption = options.getLongOption(matchingOpts.get(0)); + + tokens.add("--" + currentOption.getLongOpt()); + if (pos != -1) { +--- /dev/null ++++ b/src/test/java/org/apache/commons/cli/bug/BugCLI253Test.java +@@ -0,0 +1,44 @@ ++/* ++ * Licensed to the Apache Software Foundation (ASF) under one or more ++ * contributor license agreements. See the NOTICE file distributed with ++ * this work for additional information regarding copyright ownership. ++ * The ASF licenses this file to You 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. ++ */ ++ ++package org.apache.commons.cli.bug; ++ ++import static org.junit.Assert.assertTrue; ++ ++import org.apache.commons.cli.CommandLine; ++import org.apache.commons.cli.Option; ++import org.apache.commons.cli.Options; ++import org.apache.commons.cli.ParseException; ++import org.apache.commons.cli.PosixParser; ++import org.junit.Test; ++ ++@SuppressWarnings("deprecation") // tests some deprecated classes ++public class BugCLI253Test { ++ ++ @Test ++ public void testGroovyUseCase() throws ParseException { ++ CommandLine cli = new PosixParser().parse(getOptions(), new String[] { "--classpath" }); ++ assertTrue(cli.hasOption("--classpath")); ++ } ++ ++ private Options getOptions() { ++ Options options = new Options(); ++ options.addOption(Option.builder("classpath").build()); ++ options.addOption(Option.builder("cp").longOpt("classpath").build()); ++ return options; ++ } ++} diff --git a/apache-commons-cli-build.xml b/apache-commons-cli-build.xml new file mode 100644 index 0000000..d04800a --- /dev/null +++ b/apache-commons-cli-build.xml @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apache-commons-cli-rpmlintrc b/apache-commons-cli-rpmlintrc new file mode 100644 index 0000000..4fc39a5 --- /dev/null +++ b/apache-commons-cli-rpmlintrc @@ -0,0 +1 @@ +addFilter("apache-commons-cli-javadoc.noarch: W: package-with-huge-docs") \ No newline at end of file diff --git a/apache-commons-cli.changes b/apache-commons-cli.changes new file mode 100644 index 0000000..3d9c93c --- /dev/null +++ b/apache-commons-cli.changes @@ -0,0 +1,296 @@ +------------------------------------------------------------------- +Mon Aug 12 12:14:19 UTC 2024 - Gus Kenion + +- Update to 1.8.0 + * Fix Javadoc pathing #280. Fixes CLI-334. +- Revised CLI-253-workaround.patch for compatibility with 1.8.0 + +------------------------------------------------------------------- +Mon Apr 29 11:36:14 UTC 2024 - Gus Kenion + +- Rebased patch CLI-253-workaround.patch to new version. +- Updated apache-commons-cli-build.xml to new version. +- Update to 1.7: + * New features: + - Add and use a Converter interface and implementations without + using BeanUtils #216. Fixes CLI-321. Thanks to Claude Warren, + Gary Gregory. + - Add Maven property project.build.outputTimestamp for build + reproducibility. Thanks to Gary Gregory. + - Add '-' as an option char and implemented extensive tests + #217. Fixes CLI-322. Thanks to Claude Warren, Gary Gregory. + - Make adding OptionGroups and Options to existing Options + easier #230. Fixes CLI-324. Thanks to Claude Warren, Gary + Gregory. + - Added Supplier defaults for getParsedOptionValue #229. + Fixes CLI-323. Thanks to Claude Warren, Gary Gregory. + - Make Option.getKey() public #239. Fixes CLI-326. Thanks to + Claude Warren, Gary Gregory. + - Add builder factory CommandLine#builder(). Thanks to Claude + Warren, Gary Gregory. + * Fixes: + - Inconsistent behavior in key/value pairs (Java property + style). Fixes CLI-312. Thanks to Claude Warren, Gary Gregory. + - Avoid NullPointerException in + Util.stripLeadingAndTrailingQuotes(String). Thanks to Gary + Gregory. + - Awkward behavior of Option.builder() for multiple optional + args. Fixes CLI-320. Thanks to Paul King, Claude Warren. + - Properties from multiple arguments with value separator. + #237. Fixes CLI-325. Thanks to Claude Warren. + - Fix for expected textual date values. #244. Fixes CLI-327. + Thanks to Claude Warren, Gary Gregory. + - Option.Builder.option("") should throw + IllegalArgumentException instead of + ArrayIndexOutOfBoundsException. Thanks to Gary Gregory. + - Avoid NullPointerException in + CommandLine.getOptionValues(Option|String). Thanks to Gary + Gregory. + * Updates: + - Bump commons-parent from 64 to 69 #256. Thanks to Gary + Gregory. + - Update the tests to JUnit 5 #238. Thanks to Elric, Gary + Gregory. + - Bump tests commons-io:commons-io from 2.16.0 to 2.16.1 #258. + Thanks to Dependabot, Gary Gregory. +- Includes changes from version 1.6: + * Fixes: + - [StepSecurity] ci: Harden GitHub Actions #176. Thanks to + step-security-bot, Gary Gregory. + - Inconsistent date format in changes report. Fixes CLI-318. + Thanks to Alexander Veit, Gary Gregory. + - Fix NPE in CommandLine.resolveOption(String). Fixes CLI-283. + Thanks to Dilraj Singh, Gary Gregory. + - CommandLine.addOption(Option) should not allow a null Option. + Fixes CLI-283. Thanks to Dilraj Singh, Gary Gregory. + - CommandLine.addArgs(String) should not allow a null String. + Fixes CLI-283. Thanks to Gary Gregory. + - Site docs: "Usage Scenarios" refers to deprecated methods. + Fixes CLI-303. Thanks to Julian Schilling, Gary Gregory. + - NullPointerException thrown by CommandLineParser.parse(). + Fixes CLI-317. Thanks to Philippe Bastiani, Sruteesh Kumar + Paramata, Gary Gregory. + - StringIndexOutOfBoundsException thrown by + CommandLineParser.parse(). Fixes CLI-313. Thanks to Dominik + Stadler, HUNG LU, Sruteesh Kumar Paramata. + * Updates: + - Fix SpotBugs Error: Medium: Method intentionally throws + RuntimeException. [org.apache.commons.cli.Option] At + Option.java:[lines 417-423] + THROWS_METHOD_THROWS_RUNTIMEEXCEPTION Thanks to Gary Gregory. + - Fix SpotBugs Error: Medium: Method intentionally throws + RuntimeException. [org.apache.commons.cli.Option] At + Option.java:[lines 446-450] + THROWS_METHOD_THROWS_RUNTIMEEXCEPTION Thanks to Gary Gregory. + - Fix SpotBugs Error: Medium: Method intentionally throws + RuntimeException. [org.apache.commons.cli.Option] At + Option.java:[lines 474-478] + THROWS_METHOD_THROWS_RUNTIMEEXCEPTION Thanks to Gary Gregory. + - Use EMPTY_STRING_ARRAY constant. #102. Thanks to Ken Dombeck. + - Fix site links that are broken #155. Thanks to Arturo Bernal. + - Use Math.max() #111. Delete unused assignment #112. Thanks to + Arturo Bernal. + - Add github/codeql-action. Thanks to Dependabot, Gary Gregory. + - Bump Java from 7 to 8. Thanks to Gary Gregory. + - Bump actions/cache from 2.1.7 to 3.0.10 #97, #130, #132. + Thanks to Dependabot, Gary Gregory. + - Bump actions/checkout from 3 to 3.1.0 #133. Thanks to Gary + Gregory, Dependabot. + - Bump actions/setup-java from 2 to 3.6.0 #136. Thanks to Gary + Gregory. + - Bump spotbugs from 4.5.3 to 4.7.3 #96, #107, #113, #125, + #138. Thanks to Gary Gregory, Dependabot. + - Bump spotbugs-maven-plugin from 4.5.3.0 to 4.7.3.0 #98, #108, + #115, #117, #126, #145. Thanks to Dependabot. + - Bump commons-parent from 52 to 64 #100, #128, #151, #158. + Thanks to Dependabot, Gary Gregory. + - Bump maven-antrun-plugin from 3.0.0 to 3.1.0 #103. Thanks to + Dependabot. + - Bump maven-javadoc-plugin from 3.3.2 to 3.4.1 #105, #120. + Thanks to Dependabot. + - Bump maven-pmd-plugin from 3.16.0 to 3.19.0 #110, #124. + Thanks to Dependabot. + - Bump jacoco-maven-plugin from 0.8.7 to 0.8.8. Thanks to Gary + Gregory. + - Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0 #121. Thanks + to Gary Gregory. + - Bump japicmp-maven-plugin from 0.15.4 to 0.16.0. Thanks to + Gary Gregory. + - Update JUnit 4 to 5 vintage. Thanks to Gary Gregory. + +------------------------------------------------------------------- +Tue Feb 20 10:25:28 UTC 2024 - Dominique Leuenberger + +- Use %patch -P N instead of deprecated %patchN. + +------------------------------------------------------------------- +Thu Sep 21 05:39:25 UTC 2023 - Fridrich Strba + +- Build with java source/target levels 8 + +------------------------------------------------------------------- +Thu Dec 16 16:26:28 UTC 2021 - David Anes + +- Rebased patch CLI-253-workaround.patch to new version. +- Updated build XML file to new version. +- Harmonized the use of X.Y.X strings everywhere. +- Updated new source locations from Apache. +- Added 'apache-commons-cli-rpmlintrc' to silence 'package-with-huge-docs' warning (Javadoc generates many files...) + +- Update to 1.5: + * New features: + - (CLI-217) Accommodate toggling partial matching in DefaultParser. Thanks to Rubin Simons. + - (CLI-274) Option parser type EXISTING_FILE_VALUE not check file existing Thanks to Béla Schaum. + - (CLI-271) CommandLine.getXXX and CommandLine.hasXXX should accept an Option as a parameter Thanks to Christoph Läubrich. + - (CLI-276) Adjust access-modifier of checkRequiredOptions() to protected. Thanks to Jason Dillon. + - (CLI-282) TypeHandler should throw ParseException for an unsupported class. Thanks to Alex Nordlund. + - Added setter for Builder.option #33. Thanks to Waldemar Sojka, Gary Gregory. + - Add Option unit tests #76. Thanks to Waldemar Sojka, Gary Gregory. + * Fixed bugs: + - Fix NPE in DefaultParser.isLongOption(String). Thanks to Gary Gregory. + - (CLI-279) @param or @return lines should end with a period in CommandLine.java Thanks to Krishna Mohan Rao Kandunoori. + - Replace deprecated FindBugs with SpotBugs. Thanks to Gary Gregory. + - Replace CLIRR with JApiCmp. Thanks to Gary Gregory. + - Option Javadocs grammar nits #55. Thanks to Elliotte Rusty Harold. + - Minor Improvements #57, #61. Thanks to Arturo Bernal, Gary Gregory. + - (CLI-254) Input "test" gets parsed as test, quotes die #58. Thanks to stoty. + - (CLI-287) Allow whitespace-only header and footer #26. Thanks to MrQubo, Gary Gregory. + * Updates: + - (CLI-294) Update Java from version 5 to 7. + - Docs: Replace OptionBuilder in usage page #30. Thanks to Mincong Huang. + - Remove deprecated sudo setting. #36. Thanks to dengliming. + - Bump junit:junit from 4.12 to 4.13.2, #53, #60. Thanks to Gary Gregory, Dependabot. + - Bump commons-parent from 48 to 52. Thanks to Dependabot. + - Bump maven-pmd-plugin from 3.12.0 to 3.15.0, #44, #54, #67. Thanks to Dependabot. + - Bump actions/checkout from v2.3.1 to v2.3.5 #46, #72. Thanks to Dependabot. + - Bump actions/setup-java from v1.4.2 to v2 #50. Thanks to Dependabot, Gary Gregory. + - Bump maven-antrun-plugin from 1.7 to 3.0.0 #43. Thanks to Dependabot. + - Bump maven-checkstyle-plugin from 2.15 to 3.1.2 #41. Thanks to Gary Gregory. + - Bump checkstyle to 9.0.1 #68. Thanks to Gary Gregory. + - Bump actions/cache from 2 to 2.1.6 #64, #65. Thanks to Dependabot. + - Bump commons.animal-sniffer.version 1.19 -> 1.20. Thanks to Gary Gregory. + - Bump maven-bundle-plugin 5.1.1 -> 5.1.2. Thanks to Gary Gregory. + - Bump biz.aQute.bndlib.version 5.1.2 -> 6.0.0. Thanks to Gary Gregory. + - Bump spotbugs from 4.4.1 to 4.4.2 #70. Thanks to Dependabot. + - Bump spotbugs-maven-plugin from 4.4.1 to 4.4.2.2 #71. Thanks to Dependabot.- + +------------------------------------------------------------------- +Fri Feb 12 12:54:07 UTC 2021 - Fridrich Strba + +- Add OSGi manifest to the build files. +- Set java source/target levels to 6 + +------------------------------------------------------------------- +Mon Mar 25 17:19:16 UTC 2019 - Fridrich Strba + +- Remove pom parent, since we don't use it when not building with + maven + +------------------------------------------------------------------- +Tue Feb 5 13:30:36 UTC 2019 - Jan Engelhardt + +- Trim bias from description; update RPM groups. + +------------------------------------------------------------------- +Tue Feb 5 12:10:09 UTC 2019 - Fridrich Strba + +- Clean-up the spec file +- Removed patch: + * commons-cli-1.4-jdk9.patch + + not needed since we are not building with maven +- Added patch: + * CLI-253-workaround.patch + + [CLI-253] Prevent "Unrecognized option: --null" when handling + long opts in PosixParser + +------------------------------------------------------------------- +Tue Oct 23 17:55:39 UTC 2018 - Fridrich Strba + +- Upgrade to version 1.4 +- Modify the build.xml.tar.bz2 to build with source/target 8 and + adapt for the commons-cli-1.4 +- Modified patch: + * commons-cli-1.2-jdk9.patch -> commons-cli-1.4-jdk9.patch + + Rediff the remaining hunk to the changed context of pom.xml + +------------------------------------------------------------------- +Tue May 15 06:21:41 UTC 2018 - fstrba@suse.com + +- Modified patch: + * commons-cli-1.2-jdk9.patch + + Build with source and target 8 to prepare for a possible + removal of 1.6 compatibility +- Run fdupes on the documentation + +------------------------------------------------------------------- +Fri Sep 29 06:41:14 UTC 2017 - fstrba@suse.com + +- Don't condition the maven defines on release version, but on + _maven_repository being defined + +------------------------------------------------------------------- +Thu Sep 14 09:33:27 UTC 2017 - fstrba@suse.com + +- Added patch: + * commons-cli-1.2-jdk9.patch + - Specify java source and target level 1.6 in order to allow + building with jdk9 + +------------------------------------------------------------------- +Fri May 19 08:41:33 UTC 2017 - tchvatal@suse.com + +- Fix build with new javapackages-tools + +------------------------------------------------------------------- +Wed Mar 18 09:37:41 UTC 2015 - tchvatal@suse.com + +- Fix build with new javapackages-tools + +------------------------------------------------------------------- +Thu Dec 4 18:55:52 UTC 2014 - p.drouand@gmail.com + +- Remove java-devel dependency; not needed anymore + +------------------------------------------------------------------- +Fri Jun 27 11:14:46 UTC 2014 - tchvatal@suse.com + +- Fix the pom providing on 13.2 + +------------------------------------------------------------------- +Sat Mar 8 18:22:40 UTC 2014 - badshah400@gmail.com + +- For openSUSE >= 13.1 remove all references to maven scripts as + these do not work; fixes building for openSUSE >= 13.1 +- Lots of specfile formatting cleanups +- Move old %changelog section entries to .changes with proper + formatting +- Add copyright info to spec file. + +------------------------------------------------------------------- +Mon Dec 12 23:47:58 UTC 2011 - dmacvicar@suse.de + +- rename apache-cli to apache-commons-cli +- add java() provides + +------------------------------------------------------------------- +Tue Jul 19 10:07:32 UTC 2011 - dmacvicar@suse.de + +- converted to build with ant:ant +- removed reference to non existing target/osgi/MANIFEST + in maven-build.xml + +------------------------------------------------------------------- +Tue Nov 09 00:00:00 UTC 2010 - chris.spike@arcor.de + +- Removed maven* BRs in favour of apache-commons-parent +- Added deprecated groupId to depmap for compatibility reasons + +------------------------------------------------------------------- +Mon Oct 18 00:00:00 UTC 2010 - chris.spike@arcor.de + +- Removed Epoch + +------------------------------------------------------------------- +Sun Oct 03 00:00:00 UTC 2010 - chris.spike@arcor.de + +- Rename and rebase from jakarta-commons-cli diff --git a/apache-commons-cli.spec b/apache-commons-cli.spec new file mode 100644 index 0000000..f6c4b18 --- /dev/null +++ b/apache-commons-cli.spec @@ -0,0 +1,88 @@ +# +# spec file for package apache-commons-cli +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%global base_name cli +%global short_name commons-%{base_name} +Name: apache-commons-cli +Version: 1.8.0 +Release: 0 +Summary: Command Line Interface Library for Java +License: Apache-2.0 +Group: Development/Libraries/Java +URL: https://commons.apache.org/%{base_name}/ +Source0: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz +Source1: %{name}-build.xml +Source2: apache-commons-cli-rpmlintrc +Patch0: CLI-253-workaround.patch +BuildRequires: ant +BuildRequires: fdupes +BuildRequires: javapackages-local >= 6 +Provides: jakarta-%{short_name} = %{version}-%{release} +Obsoletes: jakarta-%{short_name} < %{version}-%{release} +Provides: apache-cli = %{version}-%{release} +Obsoletes: apache-cli < %{version}-%{release} +BuildArch: noarch + +%description +The CLI library provides an API for working with the +command line arguments and options. + +%package javadoc +Summary: Javadoc for %{name} +Group: Documentation/HTML +Provides: jakarta-%{short_name}-javadoc = %{version}-%{release} +Obsoletes: jakarta-%{short_name}-javadoc < %{version}-%{release} + +%description javadoc +This package contains the API documentation for %{name}. + +%prep +%setup -q -n %{short_name}-%{version}-src +cp %{SOURCE1} build.xml +%patch -P 0 -p1 + +%pom_remove_parent + +%build +%{ant} package javadoc + +%install +# jars +install -Dpm 644 target/%{short_name}-%{version}.jar %{buildroot}%{_javadir}/%{short_name}.jar +ln -sf %{short_name}.jar %{buildroot}%{_javadir}/%{name}.jar + +# pom +install -d -m 755 %{buildroot}%{_mavenpomdir} +%{mvn_install_pom} pom.xml %{buildroot}%{_mavenpomdir}/%{short_name}.pom +%add_maven_depmap %{short_name}.pom %{short_name}.jar -a "org.apache.commons:%{short_name}" + +# javadoc +install -d -m 0755 %{buildroot}%{_javadocdir}/%{name} +cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name} +%fdupes -s %{buildroot}%{_javadocdir}/%{name} + +%files -f .mfiles +%license LICENSE.txt NOTICE.txt +%doc README.md RELEASE-NOTES.txt +%{_javadir}/%{name}.jar + +%files javadoc +%license LICENSE.txt +%{_javadocdir}/%{name} + +%changelog diff --git a/commons-cli-1.7.0-src.tar.gz b/commons-cli-1.7.0-src.tar.gz new file mode 100644 index 0000000..f19f76b --- /dev/null +++ b/commons-cli-1.7.0-src.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ff1d3f5a41c2d71734468e350b3d30642e75c504cdcd8a97ca7caaa4730cdf +size 177969 diff --git a/commons-cli-1.8.0-src.tar.gz b/commons-cli-1.8.0-src.tar.gz new file mode 100644 index 0000000..005d80f --- /dev/null +++ b/commons-cli-1.8.0-src.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff484c5b318df2d451c0f746a44f4839cedc953f4d4143c04176a3436e0a1ba +size 180524