如何使用gradle构建时解决'package not found'错误?

时间:2014-05-03 17:25:34

标签: java groovy gradle build.gradle vnc-viewer

我正在尝试从源代码构建TightVNC Java Viewer(我从这里下载了正式版:http://www.tightvnc.com/download.php)。

使用提供的gradle文件构建时,我收到此错误:包com.jcraft.jsch不存在。

文件'src / libs / jsch-0.1.50.jar'存在于项目中。我无法弄清楚它为什么不编译,因为它包含在build.gradle文件中。我正在使用gradle build命令构建。我错过了什么?

这是提供的构建gradle文件,最初在gradle包中提供:

apply plugin:'java'
apply plugin: 'eclipse'

sourceCompatibility = 1.6
targetCompatibility = 1.6
version = '2.7.2'

project.ext.baseName = 'tightvnc-jviewer'
def buildNo = processBuildNo(version)

defaultTasks 'clean', 'dist'

configurations {
    viewerSwingCompile { extendsFrom compile }
    viewerSwingRuntime { extendsFrom viewerSwingCompile, runtime }
}

sourceSets {
    viewerSwing {
        java {
            srcDir 'src/viewer_swing/java'
        }
        resources {
            srcDir 'src/viewer_swing/resources'
        }
    }
    main {
        java.srcDirs += viewerSwing.java.srcDirs
        resources.srcDirs += viewerSwing.resources.srcDirs
    }
}

repositories {
    flatDir {
        dirs 'src/libs/'
    }
}

dependencies {
    viewerSwingCompile group: 'com.jcraft', name: 'jsch', version: '0.1.+', ext: 'jar'
    viewerSwingRuntime configurations.viewerSwingCompile
    testCompile group: 'junit', name: 'junit', version: '4.+'
}

def manifestAttributes = ['Main-Class': 'com.glavsoft.viewer.Viewer',
        'Implementation-Version': "${project.version} (${buildNo})",
        'Implementation-Title': 'TightVNC Viewer',
        'Implementation-Vendor': 'GlavSoft LLC.']

jar {
    baseName = project.baseName
    version = null
    manifest {
        attributes manifestAttributes
    }
    def runtimeDeps = configurations.viewerSwingRuntime.collect {
        it.isDirectory() ? it : zipTree(it)
    }
    from(runtimeDeps) {
        exclude 'META-INF/**'
    }
}

task noSshJar (type: Jar, dependsOn: classes) {
    baseName = 'nossh/' + project.baseName
    version = null
    manifest {
        attributes manifestAttributes
    }
    from sourceSets.main.output
}

artifacts {
    archives file('src/web/viewer-applet-example.html')
    archives noSshJar
}

uploadArchives {
    repositories {
        add(new org.apache.ivy.plugins.resolver.FileSystemResolver()) {
            addArtifactPattern("$projectDir/dist/${project.baseName}-${project.version}/[artifact].[ext]")
        }
    }
    uploadDescriptor = false
}

task dist(dependsOn: uploadArchives)

def processBuildNo(currentVersion) {
    final String VERSION = 'version'
    final String BUILD = 'build'

    def lastVersion = currentVersion
    def lastBuild = 0
    def buildNoFile = new File('.build_no')
    if ( ! buildNoFile.exists()) {
        buildNoFile.createNewFile()
        buildNoFile << "${VERSION}=${lastVersion}\n${BUILD}=${lastBuild}"
    }
    def versions = [:]
    buildNoFile.eachLine {
        def splitted = it.split('=')
        if (splitted.size() == 2) {
            def (key, value) = splitted
            switch(key.trim()) {
                case VERSION:
                    lastVersion = value.trim()
                    break
                case BUILD:
                    try {
                        lastBuild = value != null ? value.trim() as Integer : 0
                    } catch (NumberFormatException) {}
                    versions[lastVersion] = lastBuild
                    break
            }
        }
    }
    lastVersion = versions[currentVersion]
    if (null == lastVersion) {
        versions[currentVersion] = 0
    }
    ++versions[currentVersion]
    def outString = ''
    versions.each { v, b ->
        outString += "${VERSION}=${v}\n${BUILD}=${b}\n\n"
    }
    buildNoFile.write(outString)
    versions[currentVersion]
}

1 个答案:

答案 0 :(得分:1)

经过大量的反复试验,我补充道:

compile fileTree(dir: 'src/libs', include: '*.jar')

在依赖项部分,它工作正常!