Group id now properly prefixes reversed domain.

This commit is contained in:
Harrison Deng 2022-01-20 03:58:59 -06:00
parent 8649d388e2
commit ceda11de84

View File

@ -30,7 +30,7 @@ def project_gen() -> int:
groupId = input("groupId (package): xyz.reslate.")
while (len(groupId) == 0 or (not groupId.islower() and not groupId.isupper()) or (groupId.isupper())):
print("GroupId cannot be empty and must be all lowercase.")
groupId = input("groupId (package): xyz.reslate.")
groupId = "xyz.reslate." + input("groupId (package): xyz.reslate.")
artifactId = input("artifactId (name of plugin): ")
while (len(artifactId) == 0 or (not artifactId.islower() and not artifactId.isupper()) or (artifactId.isupper())):