Here you can find the source of getManifestFileLocation(String moduleDir)
protected static String getManifestFileLocation(String moduleDir)
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static final String META_INF_DIR_NAME = "META-INF"; public static final String MANIFEST_FILE_NAME = "MANIFEST.MF"; protected static String getManifestFileLocation(String moduleDir) { String manifestLocation = new StringBuilder(moduleDir) .append(File.separator).append(META_INF_DIR_NAME) .append(File.separator).append(MANIFEST_FILE_NAME) .toString();/*from w ww . j a v a2s .c o m*/ return manifestLocation; } }