Skip to content

Commit 4ad996f

Browse files
committed
changed license header to represent the projects dual license
1 parent 373c6cb commit 4ad996f

File tree

554 files changed

+3472
-2232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

554 files changed

+3472
-2232
lines changed

pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,6 @@
142142
<canUpdateDescription>false</canUpdateDescription>
143143
<licenseName>dual_lgpl_ap2</licenseName>
144144
<licenseResolver>${project.baseUri}/src/license</licenseResolver>
145-
<roots>
146-
<root>src/main/java</root>
147-
</roots>
148145
</configuration>
149146
<executions>
150147
<execution>

src/license/licenses.properties

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
dual_lgpl_ap2=Dual License GNU LGPL 2.1 or Apache License 2.0
1+
###
2+
# #%L
3+
# JSQLParser library
4+
# %%
5+
# Copyright (C) 2004 - 2019 JSQLParser
6+
# %%
7+
# Dual licensed under GNU LGPL 2.1 or Apache License 2.0
8+
# #L%
9+
###
10+
dual_lgpl_ap2=Dual License GNU LGPL 2.1 or Apache License 2.0

src/main/java/net/sf/jsqlparser/JSQLParserException.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2013 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
99
*/
1010
package net.sf.jsqlparser;
1111

12-
/**
13-
* An exception class with stack trace informations
14-
*/
1512
public class JSQLParserException extends Exception {
1613

17-
/* The serial class version */
1814
private static final long serialVersionUID = -1099039459759769980L;
1915
private Throwable cause = null;
2016

src/main/java/net/sf/jsqlparser/expression/Alias.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2014 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
99
*/
1010
package net.sf.jsqlparser.expression;
1111

12-
/**
13-
*
14-
* @author toben
15-
*/
1612
public class Alias {
1713

1814
private String name;

src/main/java/net/sf/jsqlparser/expression/AllComparisonExpression.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2013 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%

src/main/java/net/sf/jsqlparser/expression/AnalyticExpression.java

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2013 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
@@ -15,14 +15,6 @@
1515
import java.util.List;
1616
import net.sf.jsqlparser.expression.operators.relational.ExpressionList;
1717

18-
/**
19-
* Analytic function. The name of the function is variable but the parameters following the special
20-
* analytic function path. e.g. row_number() over (order by test). Additional there can be an
21-
* expression for an analytical aggregate like sum(col) or the "all collumns" wildcard like
22-
* count(*).
23-
*
24-
* @author tw
25-
*/
2618
public class AnalyticExpression extends ASTNodeAccessImpl implements Expression {
2719

2820
private final OrderByClause orderBy = new OrderByClause();

src/main/java/net/sf/jsqlparser/expression/AnalyticType.java

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,14 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2017 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
99
*/
10-
/*
11-
* Copyright (C) 2017 JSQLParser.
12-
*
13-
* This library is free software; you can redistribute it and/or
14-
* modify it under the terms of the GNU Lesser General Public
15-
* License as published by the Free Software Foundation; either
16-
* version 2.1 of the License, or (at your option) any later version.
17-
*
18-
* This library is distributed in the hope that it will be useful,
19-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
20-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21-
* Lesser General Public License for more details.
22-
*
23-
* You should have received a copy of the GNU Lesser General Public
24-
* License along with this library; if not, write to the Free Software
25-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
26-
* MA 02110-1301 USA
27-
*/
2810
package net.sf.jsqlparser.expression;
2911

30-
/**
31-
*
32-
* @author Tobias Warneke ([email protected])
33-
*/
3412
public enum AnalyticType {
3513
OVER,
3614
WITHIN_GROUP

src/main/java/net/sf/jsqlparser/expression/AnyComparisonExpression.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2013 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
@@ -12,11 +12,6 @@
1212
import net.sf.jsqlparser.parser.ASTNodeAccessImpl;
1313
import net.sf.jsqlparser.statement.select.SubSelect;
1414

15-
/**
16-
* Combines ANY and SOME expressions.
17-
*
18-
* @author toben
19-
*/
2015
public class AnyComparisonExpression extends ASTNodeAccessImpl implements Expression {
2116

2217
private final SubSelect subSelect;

src/main/java/net/sf/jsqlparser/expression/AnyType.java

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,14 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2015 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
99
*/
10-
/*
11-
* Copyright (C) 2015 JSQLParser.
12-
*
13-
* This library is free software; you can redistribute it and/or
14-
* modify it under the terms of the GNU Lesser General Public
15-
* License as published by the Free Software Foundation; either
16-
* version 2.1 of the License, or (at your option) any later version.
17-
*
18-
* This library is distributed in the hope that it will be useful,
19-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
20-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21-
* Lesser General Public License for more details.
22-
*
23-
* You should have received a copy of the GNU Lesser General Public
24-
* License along with this library; if not, write to the Free Software
25-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
26-
* MA 02110-1301 USA
27-
*/
2810
package net.sf.jsqlparser.expression;
2911

30-
/**
31-
*
32-
* @author toben
33-
*/
3412
public enum AnyType {
3513

3614
ANY,

src/main/java/net/sf/jsqlparser/expression/BinaryExpression.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
1+
/*-
22
* #%L
33
* JSQLParser library
44
* %%
5-
* Copyright (C) 2004 - 2013 JSQLParser
5+
* Copyright (C) 2004 - 2019 JSQLParser
66
* %%
77
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
88
* #L%
@@ -11,10 +11,6 @@
1111

1212
import net.sf.jsqlparser.parser.ASTNodeAccessImpl;
1313

14-
/**
15-
* A basic class for binary expressions, that is expressions having a left member and a right member
16-
* which are in turn expressions.
17-
*/
1814
public abstract class BinaryExpression extends ASTNodeAccessImpl implements Expression {
1915

2016
private Expression leftExpression;

0 commit comments

Comments
 (0)