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