Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
MythicCraft
MythicCosmetics
Commits
e64e0418
Commit
e64e0418
authored
3 years ago
by
Ashijin
Browse files
Options
Download
Email Patches
Plain Diff
ccblob
parent
ec0a8177
master
Terminated/dev
dev
No related merge requests found
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
29 deletions
+9
-29
api/pom.xml
api/pom.xml
+1
-0
dist/pom.xml
dist/pom.xml
+2
-9
plugin/pom.xml
plugin/pom.xml
+2
-3
plugin/src/main/java/io/lumine/cosmetics/players/Profile.java
...in/src/main/java/io/lumine/cosmetics/players/Profile.java
+1
-2
plugin/src/main/java/io/lumine/cosmetics/players/ProfileInventory.java
...in/java/io/lumine/cosmetics/players/ProfileInventory.java
+2
-2
plugin/src/main/java/io/lumine/cosmetics/players/inventory/ItemInventory.java
.../io/lumine/cosmetics/players/inventory/ItemInventory.java
+0
-5
pom.xml
pom.xml
+1
-1
v1_18_R2/pom.xml
v1_18_R2/pom.xml
+0
-7
No files found.
api/pom.xml
View file @
e64e0418
<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"
>
<modelVersion>
4.0.0
</modelVersion>
<name>
MCCosmetics-API
</name>
<artifactId>
MCCosmetics-API
</artifactId>
<parent>
<groupId>
io.lumine
</groupId>
...
...
This diff is collapsed.
Click to expand it.
dist/pom.xml
View file @
e64e0418
...
...
@@ -27,24 +27,17 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
io.lumine
</groupId>
<artifactId>
MCCosmetics-API
</artifactId>
<version>
${project.parent.version}
</version>
<scope>
compile
</scope>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
io.lumine
</groupId>
<artifactId>
MCCosmetics
</artifactId>
<version>
${
project.parent
.version}
</version>
<version>
${
mccosmetics
.version}
</version>
<scope>
compile
</scope>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
io.lumine
</groupId>
<artifactId>
MCCosmetics-v1_18_R2
</artifactId>
<version>
${
project.parent
.version}
</version>
<version>
${
mccosmetics
.version}
</version>
<scope>
compile
</scope>
</dependency>
</dependencies>
...
...
This diff is collapsed.
Click to expand it.
plugin/pom.xml
View file @
e64e0418
...
...
@@ -162,12 +162,11 @@
</pluginRepository>
</pluginRepositories>
<dependencies>
<!-- Main dependencies -->
<dependency>
<groupId>
io.lumine
</groupId>
<artifactId>
MCCosmetics-API
</artifactId>
<version>
${
project.parent
.version}
</version>
<scope>
provided
</scope>
<version>
${
mccosmetics
.version}
</version>
<scope>
compile
</scope>
</dependency>
<dependency>
<groupId>
io.lumine
</groupId>
...
...
This diff is collapsed.
Click to expand it.
plugin/src/main/java/io/lumine/cosmetics/players/Profile.java
View file @
e64e0418
...
...
@@ -6,7 +6,6 @@ import org.bukkit.entity.Player;
import
io.lumine.cosmetics.api.cosmetics.Cosmetic
;
import
io.lumine.cosmetics.api.players.CosmeticProfile
;
import
io.lumine.cosmetics.players.inventory.DigitalInventory
;
import
lombok.Getter
;
public
class
Profile
implements
CosmeticProfile
,
io
.
lumine
.
utils
.
storage
.
players
.
Profile
{
...
...
@@ -15,7 +14,7 @@ public class Profile implements CosmeticProfile,io.lumine.utils.storage.players.
@Getter
private
String
name
;
@Getter
private
long
timestamp
=
System
.
currentTimeMillis
();
@Getter
private
Digital
Inventory
cosmeticInventory
=
new
Digital
Inventory
();
@Getter
private
Profile
Inventory
cosmeticInventory
=
new
Profile
Inventory
();
@Getter
private
transient
Player
player
;
...
...
This diff is collapsed.
Click to expand it.
plugin/src/main/java/io/lumine/cosmetics/players/
inventory/Digital
Inventory.java
→
plugin/src/main/java/io/lumine/cosmetics/players/
Profile
Inventory.java
View file @
e64e0418
package
io.lumine.cosmetics.players
.inventory
;
package
io.lumine.cosmetics.players
;
import
java.util.Collection
;
import
java.util.List
;
...
...
@@ -17,7 +17,7 @@ import io.lumine.cosmetics.managers.hats.Hat;
import
io.lumine.utils.serialize.Optl
;
import
lombok.Getter
;
public
class
Digital
Inventory
implements
CosmeticInventory
{
public
class
Profile
Inventory
implements
CosmeticInventory
{
@Getter
private
transient
CosmeticProfile
profile
;
...
...
This diff is collapsed.
Click to expand it.
plugin/src/main/java/io/lumine/cosmetics/players/inventory/ItemInventory.java
deleted
100644 → 0
View file @
ec0a8177
package
io.lumine.cosmetics.players.inventory
;
public
class
ItemInventory
{
}
This diff is collapsed.
Click to expand it.
pom.xml
View file @
e64e0418
...
...
@@ -13,7 +13,7 @@
</organization>
<properties>
<mccosmetics.version>
0.0
.1
-SNAPSHOT
</mccosmetics.version>
<mccosmetics.version>
1.
0.0-SNAPSHOT
</mccosmetics.version>
<paperapi.version>
1.18.2-R0.1-SNAPSHOT
</paperapi.version>
<lumineutils.version>
1.18-SNAPSHOT
</lumineutils.version>
<lombok.version>
1.18.22
</lombok.version>
...
...
This diff is collapsed.
Click to expand it.
v1_18_R2/pom.xml
View file @
e64e0418
...
...
@@ -75,13 +75,6 @@
<dependencies>
<!-- Modules -->
<dependency>
<groupId>
io.lumine
</groupId>
<artifactId>
MCCosmetics-API
</artifactId>
<version>
${project.parent.version}
</version>
<scope>
provided
</scope>
</dependency>
<!-- Main dependencies -->
<dependency>
<groupId>
io.lumine
</groupId>
<artifactId>
LumineUtils
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment