Group id now properly prefixes reversed domain.
This commit is contained in:
parent
8649d388e2
commit
ceda11de84
@ -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())):
|
||||
|
Loading…
Reference in New Issue
Block a user