How to use the tmt.EclipseProject.getJars function in tmt

To help you get started, we’ve selected a few tmt examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github thewca / tnoodle / winstone / tmtproject.py View on Github external
def getJars(self, includeCompileTimeOnlyDependencies=False):
        jars = tmt.EclipseProject.getJars(self, includeCompileTimeOnlyDependencies=includeCompileTimeOnlyDependencies)
        if self.needsDb():
            jars.append(tmt.TmtProject.projects['h2-1.3.169.jar'])

        return jars