Skip to content

Commit 01a11e7

Browse files
committed
#20 License header for non-Java files.
1 parent 13f6261 commit 01a11e7

File tree

6 files changed

+78
-0
lines changed

6 files changed

+78
-0
lines changed

.checkstyle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3+
<!--
4+
Copyright (c) 2021, 2022 John Whaley and others
5+
6+
See the CONTRIBUTORS file(s) distributed with this work for additional
7+
information regarding copyright ownership.
8+
9+
This program and the accompanying materials are made available under the
10+
terms of the GNU Library General Public License v2 or later, which is
11+
available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12+
13+
SPDX-License-Identifier: LGPL-2.0-or-later
14+
-->
15+
316
<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
417
<local-check-config name="JavaBDD Checkstyle" location="checkstyle.xml" type="project" description="JavaBDD Checkstyle.">
518
<additional-data name="protect-config-file" value="false"/>

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
##############################################################################
2+
# Copyright (c) 2020, 2022 John Whaley and others
3+
#
4+
# See the CONTRIBUTORS file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the GNU Library General Public License v2 or later, which is
9+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
#
11+
# SPDX-License-Identifier: LGPL-2.0-or-later
12+
##############################################################################
13+
114
/target/
215
/pom.xml.releaseBackup
316
/release.properties

build.properties

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
##############################################################################
2+
# Copyright (c) 2020, 2022 John Whaley and others
3+
#
4+
# See the CONTRIBUTORS file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the GNU Library General Public License v2 or later, which is
9+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
#
11+
# SPDX-License-Identifier: LGPL-2.0-or-later
12+
##############################################################################
13+
114
source.. = src/main/java/
215
bin.includes = .,\
316
META-INF/

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
<!--
2+
Copyright (c) 2020, 2022 John Whaley and others
3+
4+
See the CONTRIBUTORS file(s) distributed with this work for additional
5+
information regarding copyright ownership.
6+
7+
This program and the accompanying materials are made available under the
8+
terms of the GNU Library General Public License v2 or later, which is
9+
available at https://spdx.org/licenses/LGPL-2.0-or-later.html
10+
11+
SPDX-License-Identifier: LGPL-2.0-or-later
12+
-->
13+
114
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
215

316
<modelVersion>4.0.0</modelVersion>

release-perform

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
#!/usr/bin/bash
22

3+
##############################################################################
4+
# Copyright (c) 2020, 2022 John Whaley and others
5+
#
6+
# See the CONTRIBUTORS file(s) distributed with this work for additional
7+
# information regarding copyright ownership.
8+
#
9+
# This program and the accompanying materials are made available under the
10+
# terms of the GNU Library General Public License v2 or later, which is
11+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12+
#
13+
# SPDX-License-Identifier: LGPL-2.0-or-later
14+
##############################################################################
15+
316
if [[ ! -f release.properties ]]; then
417
echo "Need to prepare release first."
518
exit 1

release-prepare

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
#!/usr/bin/bash
22

3+
##############################################################################
4+
# Copyright (c) 2020, 2022 John Whaley and others
5+
#
6+
# See the CONTRIBUTORS file(s) distributed with this work for additional
7+
# information regarding copyright ownership.
8+
#
9+
# This program and the accompanying materials are made available under the
10+
# terms of the GNU Library General Public License v2 or later, which is
11+
# available at https://spdx.org/licenses/LGPL-2.0-or-later.html
12+
#
13+
# SPDX-License-Identifier: LGPL-2.0-or-later
14+
##############################################################################
15+
316
mvn clean
417
rm -f pom.xml.releaseBackup
518
rm -f release.properties

0 commit comments

Comments
 (0)