Skip to content

Commit 8b4ac29

Browse files
authored
Add files via upload
1 parent 6d94300 commit 8b4ac29

File tree

6 files changed

+31
-6
lines changed

6 files changed

+31
-6
lines changed

JavaDestinyAPI/pom.xml

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,41 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>org.dec4234</groupId>
7+
<groupId>com.github.dec4234</groupId>
88
<artifactId>JavaDestinyAPI</artifactId>
99
<version>1.0</version>
10+
<packaging>jar</packaging>
11+
12+
<name>JavaDestinyAPI</name>
13+
<description>A Java wrapper for bungie.net platform api, allowing users to get data about the video games Destiny and Destiny 2</description>
14+
<url>https://github.com/dec4234/JavaDestinyAPI</url>
15+
16+
<licenses>
17+
<license>
18+
<name>MIT License</name>
19+
<url>https://www.opensource.org/licenses/mit-license.php</url>
20+
</license>
21+
</licenses>
22+
23+
<developers>
24+
<developer>
25+
<name>dec4234</name>
26+
<organizationUrl>https://github.com/dec4234/JavaDestinyAPI</organizationUrl>
27+
</developer>
28+
</developers>
29+
30+
<scm>
31+
<connection>scm:git:git://github.com/dec4234/JavaDestinyAPI.git</connection>
32+
<developerConnection>scm:git:ssh://github.com:dec4234.git</developerConnection>
33+
<url>https://github.com/dec4234/JavaDestinyAPI/tree/master/JavaDestinyAPI</url>
34+
</scm>
1035

1136
<properties>
1237
<maven.compiler.source>1.14</maven.compiler.source>
1338
<maven.compiler.target>1.14</maven.compiler.target>
1439
</properties>
1540

1641
<dependencies>
17-
<dependency>
18-
<groupId>com.google.code.gson</groupId>
19-
<artifactId>gson</artifactId>
20-
<version>2.8.0</version>
21-
</dependency>
2242
<dependency>
2343
<groupId>org.jetbrains</groupId>
2444
<artifactId>annotations</artifactId>
@@ -31,4 +51,5 @@
3151
<version>3.8.1</version>
3252
</dependency>
3353
</dependencies>
54+
3455
</project>

JavaDestinyAPI/src/main/java/material/user/Character.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ private void assignValues() {
7474
public String getEmblemBackgroungPath() { return emblemBackgroungPath; }
7575
public String getEmblemHash() { return emblemHash; }
7676

77+
/**
78+
* A very resource intensive task, use at your own risk
79+
* Needs work because not all activities return the same JSON info
80+
= */
7781
public List<Activity> getAllActivities() {
7882
if(allActivities != null) return allActivities;
7983
allActivities = new ArrayList<>();
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
-155 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)