Commit e64e0418 authored by Ashijin's avatar Ashijin
Browse files

ccblob

No related merge requests found
<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>
......
......@@ -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>
......
......@@ -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>
......
......@@ -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 DigitalInventory cosmeticInventory = new DigitalInventory();
@Getter private ProfileInventory cosmeticInventory = new ProfileInventory();
@Getter private transient Player player;
......
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 DigitalInventory implements CosmeticInventory {
public class ProfileInventory implements CosmeticInventory {
@Getter private transient CosmeticProfile profile;
......
package io.lumine.cosmetics.players.inventory;
public class ItemInventory {
}
......@@ -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>
......
......@@ -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>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment