We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9329004 commit 3ab2eaeCopy full SHA for 3ab2eae
build.gradle
@@ -71,7 +71,7 @@ allprojects {
71
publications {
72
maven(MavenPublication) {
73
groupId = "com.noahhusby.lib"
74
- artifactId = "HusbyLib".equalsIgnoreCase(project.name) ? "husbylib" : "husbylib-" + project.name
+ artifactId = "HusbyLib".equalsIgnoreCase(project.name) ? "all" : project.name
75
version = project.version
76
77
from components.java
common/src/main/java/com/noahhusby/lib/common/util/HusbyUtil.java
@@ -29,9 +29,11 @@
29
*/
30
@UtilityClass
31
public class HusbyUtil {
32
+ public final String VERSION;
33
public final Gson GSON;
34
35
static {
36
+ VERSION = HusbyUtil.class.getPackage().getImplementationVersion();
37
GSON = new GsonBuilder()
38
.setPrettyPrinting()
39
.create();
0 commit comments