Java Path Relative Get getRelativePathToTestModule()

Here you can find the source of getRelativePathToTestModule()

Description

get Relative Path To Test Module

License

Open Source License

Return

relative path to TestModule that runs verticles

Declaration

public static String getRelativePathToTestModule() 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.io.File;

public class Main {
    /**//from   ww w .jav  a  2  s.c o m
     *
     * @return relative path to TestModule that runs verticles
     */
    public static String getRelativePathToTestModule() {
        String relativePathToModule = "." + File.separator + "MainServer" + File.separator + "OurPlatformManager"
                + File.separator + "target" + File.separator + "TestModule-0.4-SNAPSHOT-mod.zip";

        return relativePathToModule;
    }
}

Related

  1. getRelativePath(String targetPath, String basePath, String pathSeparator)
  2. getRelativePath(String targetPath, String basePath, String pathSeparator)
  3. getRelativePathOfZipEntry(final File fileToZip, final File base)
  4. getRelativePathRecursive(File file, File baseDir, String prefix)
  5. getRelativePathToBase(File path, File basePath)
  6. getRelativePathToWWW(String fileName)