Skip to content

Commit 0e8e017

Browse files
committed
#22 - Update copyright and dependencies
1 parent e589ac1 commit 0e8e017

Some content is hidden

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

48 files changed

+202
-151
lines changed

pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright (c) dec4234 2021. Access is granted, without any express warranties or guarentees of
4-
~ any kind, to all wishing to use this software for their benefit. No one may specifically claim credit, or
5-
~ ownership of this software without the explicit permission of the author.
3+
~ Copyright (c) 2024. dec4234
4+
~ A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
65
~
7-
~ GitHub -> https://github.com/dec4234/JavaDestinyAPI
6+
~ Github -> https://github.com/dec4234/JavaDestinyAPI
87
-->
98

109
<project xmlns="http://maven.apache.org/POM/4.0.0"
@@ -51,7 +50,7 @@
5150
<dependency>
5251
<groupId>com.google.code.gson</groupId>
5352
<artifactId>gson</artifactId>
54-
<version>2.8.6</version>
53+
<version>2.8.9</version>
5554
</dependency>
5655
<dependency>
5756
<groupId>org.jetbrains</groupId>
@@ -62,7 +61,7 @@
6261
<dependency>
6362
<groupId>org.apache.maven.plugins</groupId>
6463
<artifactId>maven-compiler-plugin</artifactId>
65-
<version>3.8.1</version>
64+
<version>3.11.0</version>
6665
</dependency>
6766
</dependencies>
6867

src/main/java/net/dec4234/javadestinyapi/exceptions/APIException.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
4+
*
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
6+
*/
7+
18
package net.dec4234.javadestinyapi.exceptions;
29

310
/**

src/main/java/net/dec4234/javadestinyapi/exceptions/APIOfflineException.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*
2-
* Copyright (c) dec4234 2021. Access is granted, without any express warranties or guarantees of
3-
* any kind, to all wishing to use this software for their benefit. No one may specifically claim credit, or
4-
* ownership of this software without the explicit permission of the author.
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
54
*
6-
* GitHub -> https://github.com/dec4234/JavaDestinyAPI
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
76
*/
87

98
package net.dec4234.javadestinyapi.exceptions;

src/main/java/net/dec4234/javadestinyapi/exceptions/JsonParsingError.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
4+
*
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
6+
*/
7+
18
package net.dec4234.javadestinyapi.exceptions;
29

310
import com.google.gson.JsonSyntaxException;

src/main/java/net/dec4234/javadestinyapi/jdaSrc/JavaDestinyAPIMain.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*
2-
* Copyright (c) dec4234 2021. Access is granted, without any express warranties or guarantees of
3-
* any kind, to all wishing to use this software for their benefit. No one may specifically claim credit, or
4-
* ownership of this software without the explicit permission of the author.
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
54
*
6-
* GitHub -> https://github.com/dec4234/JavaDestinyAPI
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
76
*/
87

98
package net.dec4234.javadestinyapi.jdaSrc;

src/main/java/net/dec4234/javadestinyapi/material/DestinyAPI.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*
2-
* Copyright (c) dec4234 2021. Access is granted, without any express warranties or guarantees of
3-
* any kind, to all wishing to use this software for their benefit. No one may specifically claim credit, or
4-
* ownership of this software without the explicit permission of the author.
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
54
*
6-
* GitHub -> https://github.com/dec4234/JavaDestinyAPI
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
76
*/
87

98
package net.dec4234.javadestinyapi.material;

src/main/java/net/dec4234/javadestinyapi/material/clan/Clan.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*
2-
* Copyright (c) dec4234 2021. Access is granted, without any express warranties or guarantees of
3-
* any kind, to all wishing to use this software for their benefit. No one may specifically claim credit, or
4-
* ownership of this software without the explicit permission of the author.
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
54
*
6-
* GitHub -> https://github.com/dec4234/JavaDestinyAPI
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
76
*/
87

98
package net.dec4234.javadestinyapi.material.clan;
@@ -39,7 +38,7 @@ public class Clan extends ContentFramework {
3938
private int memberCount = -1;
4039

4140
private List<BungieUser> admins, members;
42-
private net.dec4234.javadestinyapi.material.clan.ClanManagement clanManagement;
41+
private ClanManagement clanManagement;
4342
private JsonObject jj;
4443

4544
public Clan(long clanId) {

src/main/java/net/dec4234/javadestinyapi/material/clan/ClanChatSecuritySetting.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
4+
*
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
6+
*/
7+
18
package net.dec4234.javadestinyapi.material.clan;
29

310
public enum ClanChatSecuritySetting {

src/main/java/net/dec4234/javadestinyapi/material/clan/ClanManagement.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*
2-
* Copyright (c) dec4234 2021. Access is granted, without any express warranties or guarantees of
3-
* any kind, to all wishing to use this software for their benefit. No one may specifically claim credit, or
4-
* ownership of this software without the explicit permission of the author.
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
54
*
6-
* GitHub -> https://github.com/dec4234/JavaDestinyAPI
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
76
*/
87

98
package net.dec4234.javadestinyapi.material.clan;

src/main/java/net/dec4234/javadestinyapi/material/clan/ClanMember.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2024. dec4234
3+
* A standard open MIT license applies. Modififcation and usage permitted with credit. No warranties or express guarentees are given in any way.
4+
*
5+
* Github -> https://github.com/dec4234/JavaDestinyAPI
6+
*/
7+
18
package net.dec4234.javadestinyapi.material.clan;
29

310
import com.google.gson.JsonObject;

0 commit comments

Comments
 (0)