Skip to content

Commit

Permalink
started with dependencies enum
Browse files Browse the repository at this point in the history
  • Loading branch information
ezTxmMC committed Dec 28, 2024
1 parent 70ab085 commit a226f11
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package eu.smoothcloud.launcher.dependency;

public enum Dependency {
NETTY("io.netty", "netty5-all", "5.0.0.Alpha5");

private final String groupId;
private final String artifactId;
private final String version;

Dependency(String groupId, String artifactId, String version) {
this.groupId = groupId;
this.artifactId = artifactId;
this.version = version;
}

public String getGroupId() {
return groupId;
}

public String getArtifactId() {
return artifactId;
}

public String getVersion() {
return version;
}
}

0 comments on commit a226f11

Please sign in to comment.