Skip to content

Commit 57069f9

Browse files
committed
Update copyrights
1 parent 1b3ebd0 commit 57069f9

Some content is hidden

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

52 files changed

+914
-11
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
1717
*/
1818

19+
20+
1921
/*
2022
* This has to be here... It will not be taken into account in common.gradle!
2123
*

gradle/wrapper/gradle-wrapper.properties

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
#
4+
# This software is dual-licensed under:
5+
#
6+
# - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
# later version;
8+
# - the Apache Software License (ASL) version 2.0.
9+
#
10+
# The text of both licenses is available under the src/resources/ directory of
11+
# this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
#
13+
# Direct link to the sources:
14+
#
15+
# - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
# - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
#
18+
119
#Tue Apr 08 12:56:01 CEST 2014
220
distributionBase=GRADLE_USER_HOME
321
distributionPath=wrapper/dists

project.gradle

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
/*
220
* Project-specific settings. Unfortunately we cannot put the name in there!
321
*/

settings.gradle

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
/*
2-
* Copyright (c) 2013, Francis Galiegue <fgaliegue@gmail.com>
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as
6-
* published by the Free Software Foundation, either version 3 of the
7-
* License, or (at your option) any later version.
4+
* This software is dual-licensed under:
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* Lesser GNU General Public License for more details.
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
139
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
1617
*/
1718

1819
rootProject.name = "json-schema-avro";

src/main/java/com/github/fge/avro/Avro2JsonSchemaProcessor.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro;
220

321
import com.fasterxml.jackson.databind.JsonNode;

src/main/java/com/github/fge/avro/IllegalAvroSchemaException.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro;
220

321
import com.github.fge.jsonschema.exceptions.ProcessingException;

src/main/java/com/github/fge/avro/MutableTree.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro;
220

321
import com.fasterxml.jackson.databind.JsonNode;

src/main/java/com/github/fge/avro/translators/ArrayTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.fasterxml.jackson.databind.node.ObjectNode;

src/main/java/com/github/fge/avro/translators/AvroTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.fasterxml.jackson.databind.node.JsonNodeFactory;

src/main/java/com/github/fge/avro/translators/AvroTranslators.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.github.fge.jackson.NodeType;

src/main/java/com/github/fge/avro/translators/ByteTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.github.fge.avro.MutableTree;

src/main/java/com/github/fge/avro/translators/EnumTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.fasterxml.jackson.databind.node.ArrayNode;

src/main/java/com/github/fge/avro/translators/FixedTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.github.fge.avro.MutableTree;

src/main/java/com/github/fge/avro/translators/IntTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.github.fge.avro.MutableTree;

src/main/java/com/github/fge/avro/translators/LongTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.github.fge.avro.MutableTree;

src/main/java/com/github/fge/avro/translators/MapTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.fasterxml.jackson.databind.node.ObjectNode;

src/main/java/com/github/fge/avro/translators/NamedAvroTypeTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.github.fge.avro.MutableTree;

src/main/java/com/github/fge/avro/translators/RecordTranslator.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of both licenses is available under the src/resources/ directory of
11+
* this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively).
12+
*
13+
* Direct link to the sources:
14+
*
15+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
16+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
17+
*/
18+
119
package com.github.fge.avro.translators;
220

321
import com.fasterxml.jackson.databind.node.ArrayNode;

0 commit comments

Comments
 (0)