Skip to content

Commit 062ee68

Browse files
committed
Changing name from Jakarta Commons to Apache Commons
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@560738 13f79535-47bb-0310-9956-ffa450edef68
1 parent c7efeaf commit 062ee68

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.

src/conf/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Implementation-Title: Jakarta Commons CLI2
1+
Implementation-Title: Apache Commons CLI2
22

33
Name: org/apache/commons/cli2/
4-
Specification-Title: Jakarta Commons CLI2
4+
Specification-Title: Apache Commons CLI2
55
Specification-Vendor: Apache Software Foundation
66
Specification-Version: 2.0

src/test/org/apache/commons/cli2/util/HelpFormatterTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class HelpFormatterTest
5454
public void setUp() {
5555
helpFormatter = new HelpFormatter("|*", "*-*", "*|", 80);
5656
helpFormatter.setDivider("+------------------------------------------------------------------------------+");
57-
helpFormatter.setHeader("Jakarta Commons CLI");
57+
helpFormatter.setHeader("Apache Commons CLI");
5858
helpFormatter.setFooter("Copyright 2003\nApache Software Foundation");
5959
helpFormatter.setShellCommand("ant");
6060

@@ -102,7 +102,7 @@ public void testPrint()
102102
helpFormatter.getDivider());
103103

104104
// test header
105-
assertEquals("incorrect header", "Jakarta Commons CLI", helpFormatter.getHeader());
105+
assertEquals("incorrect header", "Apache Commons CLI", helpFormatter.getHeader());
106106

107107
// test footer
108108
assertEquals("incorrect footer", "Copyright 2003\nApache Software Foundation",
@@ -116,7 +116,7 @@ public void testPrint()
116116
final BufferedReader reader = new BufferedReader(new StringReader(writer.toString()));
117117
assertEquals("+------------------------------------------------------------------------------+",
118118
reader.readLine());
119-
assertEquals("|*Jakarta Commons CLI *|",
119+
assertEquals("|*Apache Commons CLI *|",
120120
reader.readLine());
121121
assertEquals("+------------------------------------------------------------------------------+",
122122
reader.readLine());
@@ -169,7 +169,7 @@ public void testComparator()
169169
final BufferedReader reader = new BufferedReader(new StringReader(writer.toString()));
170170
assertEquals("+------------------------------------------------------------------------------+",
171171
reader.readLine());
172-
assertEquals("|*Jakarta Commons CLI *|",
172+
assertEquals("|*Apache Commons CLI *|",
173173
reader.readLine());
174174
assertEquals("+------------------------------------------------------------------------------+",
175175
reader.readLine());
@@ -311,7 +311,7 @@ public void testPrintHeader()
311311
final BufferedReader reader = new BufferedReader(new StringReader(writer.toString()));
312312
assertEquals("+------------------------------------------------------------------------------+",
313313
reader.readLine());
314-
assertEquals("|*Jakarta Commons CLI *|",
314+
assertEquals("|*Apache Commons CLI *|",
315315
reader.readLine());
316316
assertNull(reader.readLine());
317317
}

xdocs/cvs-usage.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424
<!-- ================================================== -->
2525
<section name="Source repository">
2626
<p>
27-
Jakarta Commons CLI is hosted on the Apache
27+
Apache Commons CLI is hosted on the Apache
2828
<a href="http://subversion.tigris.org/">subversion</a> repository.
2929
</p>
3030
<p>

xdocs/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- ================================================== -->
2929
<section name="Commons CLI">
3030
<p>
31-
The Jakarta Commons CLI library provides an API for processing command line interfaces.
31+
The Apache Commons CLI library provides an API for processing command line interfaces.
3232
</p>
3333
</section>
3434
<!-- ================================================== -->

xdocs/navigation.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<body>
2424
<links>
25-
<item name="Jakarta Commons" href="http://jakarta.apache.org/commons/"/>
25+
<item name="Apache Commons" href="http://jakarta.apache.org/commons/"/>
2626
</links>
2727

2828
<menu name="Commons CLI">

0 commit comments

Comments
 (0)