Skip to content

Commit 73b2b5b

Browse files
committed
Replaced occurences of 'Jakarta'
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x@680503 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0823e11 commit 73b2b5b

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

README.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
Jakarta Commons CLI
1+
Apache Commons CLI
22
===================
33

4-
Welcome to the CLI component of the Jakarta Commons project.
4+
Welcome to the CLI component of the Apache Commons project.
55

66
The information in this file is relevant if you have
77
downloaded a CLI source distribution.
88

99
For testing the project, you will need JUnit (if you use
10-
maven this will be automatically installed and configured
10+
Maven this will be automatically installed and configured
1111
for you):
1212

13-
http://www.junit.org/
13+
http://www.junit.org
1414

15-
There are two ways to build CLI, either with Ant or Maven 1.
15+
There are two ways to build CLI, either with Ant or Maven 2.
1616

1717
Ant can be found here :
1818

19-
http://jakarta.apache.org/ant
19+
http://ant.apache.org
2020

2121
and to build and test the system use:
2222

2323
ant dist
2424

25-
Maven 1 can be found here :
25+
Maven 2 can be found here :
2626

2727
http://maven.apache.org
2828

2929
and to build and test the system use:
3030

31-
maven clean jar
31+
mvn clean package
3232

3333
The system will build and test itself.
3434

3535
For complete documentation type:
3636

37-
maven site
37+
mvn site
3838

3939
Good luck!
4040

41-
-The CLI Team
41+
- The Apache Commons Team

RELEASE-NOTES.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
$Id$
22

3-
Commons CLI Package
4-
Version 1.1
5-
Release Notes
3+
Commons CLI Package
4+
Version 1.1
5+
Release Notes
66

77

88
INTRODUCTION:
@@ -20,7 +20,7 @@ CLI 1.1 is a bugfix release of CLI. The following changes notable API changes we
2020

2121
The jar should be API backwards compatible, though if you were calling addValue(String) then you won't be happy. Please let us know your use case if that is so.
2222

23-
For more information, read the documentation on the project site at http://jakarta.apache.org/commons/cli/
23+
For more information, read the documentation on the project site at http://commons.apache.org/cli/
2424

2525
NEW FEATURES:
2626

src/conf/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Implementation-Title: Jakarta Commons CLI
2-
Specification-Title: Jakarta Commons CLI
1+
Implementation-Title: Apache Commons CLI
2+
Specification-Title: Apache Commons CLI
33
Specification-Vendor: Apache Software Foundation
44
Specification-Version: 1.1

src/test/org/apache/commons/cli/PatternOptionBuilderTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class PatternOptionBuilderTest extends TestCase
3535
public void testSimplePattern() throws Exception
3636
{
3737
Options options = PatternOptionBuilder.parsePattern("a:b@cde>f+n%t/");
38-
String[] args = new String[]{"-c", "-a", "foo", "-b", "java.util.Vector", "-e", "build.xml", "-f", "java.util.Calendar", "-n", "4.5", "-t", "http://jakarta.apache.org/"};
38+
String[] args = new String[]{"-c", "-a", "foo", "-b", "java.util.Vector", "-e", "build.xml", "-f", "java.util.Calendar", "-n", "4.5", "-t", "http://commons.apache.org"};
3939

4040
CommandLineParser parser = new PosixParser();
4141
CommandLine line = parser.parse(options, args);
@@ -48,7 +48,7 @@ public void testSimplePattern() throws Exception
4848
assertEquals("file flag e", new File("build.xml"), line.getOptionObject("e"));
4949
assertEquals("class flag f", Calendar.class, line.getOptionObject("f"));
5050
assertEquals("number flag n", new Double(4.5), line.getOptionObject("n"));
51-
assertEquals("url flag t", new URL("http://jakarta.apache.org/"), line.getOptionObject("t"));
51+
assertEquals("url flag t", new URL("http://commons.apache.org"), line.getOptionObject("t"));
5252

5353
// tests the char methods of CommandLine that delegate to the String methods
5454
assertEquals("flag a", "foo", line.getOptionValue('a'));
@@ -59,7 +59,7 @@ public void testSimplePattern() throws Exception
5959
assertEquals("file flag e", new File("build.xml"), line.getOptionObject('e'));
6060
assertEquals("class flag f", Calendar.class, line.getOptionObject('f'));
6161
assertEquals("number flag n", new Double(4.5), line.getOptionObject('n'));
62-
assertEquals("url flag t", new URL("http://jakarta.apache.org/"), line.getOptionObject('t'));
62+
assertEquals("url flag t", new URL("http://commons.apache.org"), line.getOptionObject('t'));
6363

6464
/// DATES NOT SUPPORTED YET.
6565
// assertEquals("number flag t", new Date(1023400137276L), line.getOptionObject('z'));

0 commit comments

Comments
 (0)