All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.jaddress.GradleStructure Maven / Gradle / Ivy

The newest version!
package org.unlaxer.jaddress;

public enum GradleStructure{
	
	main("src/main"),
	test("src/test"),
	mainJava("src/main/java"),
	testJava("src/test/java"),
	mainLua("src/main/lua"),
	testLua("src/test/lua"),
	mainResources("src/main/resources"),
	testResources("src/test/resources"),
	build("build"),

	;
	String relativePath;

	private GradleStructure(String relativePath) {
		this.relativePath = relativePath;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy