Skip to content

Commit 7b5da17

Browse files
committed
Update copyright to 2022.
1 parent bae6a21 commit 7b5da17

25 files changed

Lines changed: 401 additions & 393 deletions

.run/update-license-headers.run.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
</option>
1111
<option name="goals">
1212
<list>
13-
<option value="license:remove" />
1413
<option value="license:format" />
1514
</list>
1615
</option>
@@ -20,7 +19,7 @@
2019
<entry key="development" value="false" />
2120
</map>
2221
</option>
23-
<option name="resolveToWorkspace" value="true" />
22+
<option name="resolveToWorkspace" value="false" />
2423
<option name="workingDirPath" value="$PROJECT_DIR$" />
2524
</MavenRunnerParameters>
2625
</option>

config-values-bukkit/pom.xml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
<parent>
7-
<groupId>community.leaf.config-values</groupId>
8-
<artifactId>config-values-parent</artifactId>
9-
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
11-
</parent>
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>community.leaf.config-values</groupId>
8+
<artifactId>config-values-parent</artifactId>
9+
<version>${revision}</version>
10+
<relativePath>../pom.xml</relativePath>
11+
</parent>
12+
13+
<artifactId>config-values-bukkit</artifactId>
14+
15+
<repositories>
16+
<repository>
17+
<id>spigot-repo</id>
18+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
19+
</repository>
20+
</repositories>
21+
22+
<dependencies>
23+
<!-- Spigot API (via spigot-repo) -->
24+
<dependency>
25+
<groupId>org.spigotmc</groupId>
26+
<artifactId>spigot-api</artifactId>
27+
<version>${versions.minecraft.spigot}</version>
28+
<scope>provided</scope>
29+
</dependency>
30+
</dependencies>
1231

13-
<artifactId>config-values-bukkit</artifactId>
14-
15-
<repositories>
16-
<repository>
17-
<id>spigot-repo</id>
18-
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
19-
</repository>
20-
</repositories>
21-
22-
<dependencies>
23-
<!-- Spigot API (via spigot-repo) -->
24-
<dependency>
25-
<groupId>org.spigotmc</groupId>
26-
<artifactId>spigot-api</artifactId>
27-
<version>${versions.minecraft.spigot}</version>
28-
<scope>provided</scope>
29-
</dependency>
30-
</dependencies>
31-
32-
</project>
32+
</project>

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/DefaultYamlValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/ExampleYamlValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/YamlAccessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/YamlAccessors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/YamlAdapters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/YamlValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this

config-values-bukkit/src/main/java/community/leaf/configvalues/bukkit/YamlValues.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2021, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1+
/*
2+
* Copyright © 2021-2022, RezzedUp <https://github.com/LeafCommunity/ConfigValues>
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 community.leaf.configvalues.bukkit.data;
29

310
public enum Load
411
{
5-
NOW,
6-
LATER
12+
NOW,
13+
LATER
714
}

0 commit comments

Comments
 (0)