Skip to content

Commit 2e3eee8

Browse files
committed
mvn license:format
1 parent e092bad commit 2e3eee8

21 files changed

+148
-0
lines changed

release.sh

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
#!/bin/sh
2+
#
3+
# Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
4+
#
5+
# This Source Code Form is subject to the terms of the Mozilla Public
6+
# License, v. 2.0. If a copy of the MPL was not distributed with this
7+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8+
#
9+
210

311
mvn release:clean release:prepare release:perform

src/main/java/com/gistlabs/mechanize/DefaultPageFactory.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize;
29

310
import java.util.Collection;

src/main/java/com/gistlabs/mechanize/MechanizeInitializer.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize;
29

310
import java.util.ArrayList;

src/main/java/com/gistlabs/mechanize/PageFactory.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize;
29

310
import java.util.Collection;

src/main/java/com/gistlabs/mechanize/exceptions/MechanizeExceptionFactory.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.exceptions;
29

310
import java.io.IOException;

src/main/java/com/gistlabs/mechanize/html/HtmlElement.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.html;
29

310
import java.util.ArrayList;

src/main/java/com/gistlabs/mechanize/html/HtmlElements.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.html;
29

310
import java.util.HashMap;

src/main/java/com/gistlabs/mechanize/html/HtmlNode.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.html;
29

310
import org.jsoup.nodes.Node;

src/main/java/com/gistlabs/mechanize/html/HtmlPageFactory.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.html;
29

310
import java.util.Collection;

src/main/java/com/gistlabs/mechanize/html/HtmlTextNode.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.html;
29

310
import org.jsoup.nodes.TextNode;

src/main/java/com/gistlabs/mechanize/image/ImageCollection.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.image;
29

310
import java.util.HashSet;

src/main/java/com/gistlabs/mechanize/json/JsonPageFactory.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.json;
29

310
import java.util.Collection;

src/main/java/com/gistlabs/mechanize/sequence/AbstractSequence.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.sequence;
29

310
import com.gistlabs.mechanize.MechanizeAgent;

src/main/java/com/gistlabs/mechanize/sequence/Sequence.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.sequence;
29

310
import com.gistlabs.mechanize.MechanizeAgent;

src/main/java/com/gistlabs/mechanize/sequence/SequenceCollection.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.sequence;
29

310
import java.util.ArrayList;

src/main/java/com/gistlabs/mechanize/util/Assert.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.util;
29

310
/**

src/main/java/com/gistlabs/mechanize/util/Collections.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.util;
29

310
import java.util.Collection;

src/main/java/com/gistlabs/mechanize/util/NullOutputStream.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.util;
29

310
import java.io.IOException;

src/test/java/com/gistlabs/mechanize/json/JsonTest.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.json;
29

310
import static org.junit.Assert.*;

src/test/java/com/gistlabs/mechanize/query/QueryBuilderTest.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.query;
29

310
public class QueryBuilderTest {

src/test/java/com/gistlabs/mechanize/sequence/SequenceCollectionTest.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (C) 2012 Gist Labs, LLC. (http://gistlabs.com)
3+
*
4+
* This Source Code Form is subject to the terms of the Mozilla Public
5+
* License, v. 2.0. If a copy of the MPL was not distributed with this
6+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
7+
*/
18
package com.gistlabs.mechanize.sequence;
29

310
import static org.junit.Assert.*;

0 commit comments

Comments
 (0)