2014-11-05 135 views
2

我有一個NetBeans Web項目構建Java,JS和HTML文件。爲了使改造工作導入JSON API,我需要在項目的根目錄中的build.gradle文件中注入依賴項。我已經編寫了一個無頭build.gradle文件,我已經測試並正確處理了依賴關係,現在如何將項目從build.gradle文件而不是ANT每次都更改爲通過庫搜索來運行?將基於ANT的NetBeans項目轉換爲Gradle項目?

回答

1

你需要的build.gradle和settings.gradle文件,你必須刪除build.xml文件(可能的nbproject文件/目錄)

我建議使用NetBeans插件的gradle作出gradle這個項目,複製並修改build.gradle文件。

然後,你需要在你的build.gradle添加源集在您的來源 - gradle這個希望他們在不同的地方比NetBeans的螞蟻把它們

sourceSets { 
    main { 
    java { 
     srcDir 'src' 
    } 
    resources { 
     srcDir 'resources' 
    } 
    } 

    test { 
    java { 
     srcDir 'test' 
    } 
    resources { 
     srcDir 'testResources' 
    } 
    } 
} 

也,你需要使你的依賴。這是我的樣子:

dependencies { 
    testCompile group: 'junit', name: 'junit', version: '4.10+' 
    compile project(':logger') 
    compile project(':postalker') 
    compile group: 'org.yaml', name: 'snakeyaml', version: '1.15+' 
    compile group: 'commons-io', name: 'commons-io', version: '2.4+' 
    compile group: 'gov.nist.math', name: 'jama', version: '1.0.3+' 
    compile group: 'org.apache.commons', name: 'commons-imaging', version: '1.0-SNAPSHOT+' 
    compile group: 'com.itextpdf', name: 'itextpdf', version: '5.5.5+' 
    compile files('lib/jogl-runtime/jogl.jar') 
    compile files('lib/gluegen-runtime/gluegen-rt.jar') 
    compile files('lib/toxiclibscore.jar') 
    compile group: 'org.apache.commons', name: 'commons-math3', version: '3.5+' 
    compile group: 'commons-codec', name: 'commons-codec', version: '1.6' 
    compile group: 'commons-logging', name: 'commons-logging', version: '1.1.3' 
    compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.3.3' 
    compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.3.6' 
    compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.3.6' 
} 

最後, 我不得不關閉舊項目,關閉的NetBeans下來,然後重新打開NetBeans和項目。做一個重新加載項目,它已經啓動並正在運行!

對於想知道我是如何獲得jogl工作的人,我查看了jogl插件對螞蟻做了什麼,並用gradle對其進行了複製。我補充一點,包含了開發者的平臺PlatformPrivate.gradle文件,然後將相應的庫複製到構建目錄

我整個的build.gradle:

import com.protocase.files.FolderUtils 
import java.nio.file.Files 
import java.nio.file.Paths 
import com.protocase.designer.extractors.BuildInfoExtractor 
import com.protocase.designer.fileeditors.NSISInstallerModifier 
import com.protocase.designer.fileeditors.SignBatModifier 
import com.protocase.designer.ConfigureRun 
import com.protocase.finders.FindFiles 

apply plugin: 'java' 
apply plugin: 'application' 
apply plugin: 'groovy' 

apply from: "PlatformPrivate.gradle" 
apply from: "Platforms.gradle" 

sourceCompatibility = '1.6' 

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8' 

// NetBeans will automatically add "run" and "debug" tasks relying on the 
// "mainClass" property. You may however define the property prior executing 
// tasks by passing a "-PmainClass=<QUALIFIED_CLASS_NAME>" argument. 
// 
// Note however, that you may define your own "run" and "debug" task if you 
// prefer. In this case NetBeans will not add these tasks but you may rely on 
// your own implementation. 
if (!hasProperty('mainClass')) { 
    ext.mainClass = 'com.protocase.viewer.JDesigner' 
} 

if (! hasProperty('localPlatform')) { 
    throw new GradleException("Missing PlatformPrivate.gradle"); 
} 


mainClassName = ext.mainClass 

repositories { 
    mavenCentral() 
    maven { 
      url "https://repository.apache.org/content/repositories/snapshots/" 
    } 
} 

dependencies { 
    testCompile group: 'junit', name: 'junit', version: '4.10+' 
    compile project(':logger') 
    compile project(':postalker') 
    compile group: 'org.yaml', name: 'snakeyaml', version: '1.15+' 
    compile group: 'commons-io', name: 'commons-io', version: '2.4+' 
    compile group: 'gov.nist.math', name: 'jama', version: '1.0.3+' 
    compile group: 'org.apache.commons', name: 'commons-imaging', version: '1.0-SNAPSHOT+' 
    compile group: 'com.itextpdf', name: 'itextpdf', version: '5.5.5+' 
    compile files('lib/jogl-runtime/jogl.jar') 
    compile files('lib/gluegen-runtime/gluegen-rt.jar') 
    compile files('lib/toxiclibscore.jar') 
    compile group: 'org.apache.commons', name: 'commons-math3', version: '3.5+' 
    compile group: 'commons-codec', name: 'commons-codec', version: '1.6' 
    compile group: 'commons-logging', name: 'commons-logging', version: '1.1.3' 
    compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.3.3' 
    compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.3.6' 
    compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.3.6' 
} 

task copyDistLibs(type: Copy) { 
    def outputDir = file("${buildDir}/libs") 

    from configurations.runtime 

    into outputDir 
} 

task updateBuildInfoBeta (type: Exec) { 
    workingDir "${projectDir}/perl" 
    commandLine './updateBuildInfo' 
    def extractor = new BuildInfoExtractor(projectFile: new File("${projectDir}")) 

    def version = extractor.getBetaVersion() 

    def installerModifier = new NSISInstallerModifier(NSISFile: new File("${projectDir}/winRunFiles/JDesigner.nsi")) 
    installerModifier.setOutputFileVersion(version) 

    def signBatModifier = new SignBatModifier(signBatFile: new File("${projectDir}/sign.bat")) 
    signBatModifier.setOutputFileVersion(version) 

    println "" 
    println "Making Beta Version: " + version 
    println "branch: " + extractor.getReleaseVersion() + " date: " + extractor.getBuildDate() 
    println "" 
} 

task makeBeta(dependsOn: updateBuildInfoBeta) { 

    def distFolderLinux64 = makeOneDistBeta("linux-amd64") 

    def ditsFolderLinux32 = makeOneDistBeta("linux-i586") 

    def distFolderWin32 = makeOneDistBeta("windows-i586") 
    FolderUtils.copyFolderContents(new File("${projectDir}/jre"), new File(distFolderWin32, "jre")) 
    FolderUtils.copyFolderContents(new File("${projectDir}/src/main/resources/library"), new File(distFolderWin32, "library")) 
    FolderUtils.copyFolderContents(new File("${projectDir}/winRunFiles"), distFolderWin32) 
    Files.copy(Paths.get("${projectDir}/license.txt"), Paths.get(new File(distFolderWin32, "license.txt").path)) 
    Files.copy(Paths.get("${projectDir}/Protocase Designer.ico"), Paths.get(new File(distFolderWin32, "Protocase Designer.ico").path)) 


    def distFolderMac = makeOneDistBeta("macosx-universal") 

} 

private File makeOneDistBeta(def nativePlatform) { 
    def plat = new com.protocase.designer.Platform(natives: nativePlatform, libFolder: 'lib', genericBuildDir: new File("${buildDir}")) 
    println plat.getNativeDistDir() 
    plat.makeAndPopulateBuildDir() 
    plat.copyLibraryFiles() 
    plat.getNativeDistDir() 

} 


makeBeta.dependsOn(jar) 
makeBeta.dependsOn(copyDistLibs) 

task makeWin32Beta(dependsOn: makeBeta, type: Exec) { 
    def wineDir = new File("${projectDir}/../../.wine/drive_c/") 
    println wineDir.exists() 
    def nsisFile = FindFiles.findFirstFileByNameWithoutDirectory(wineDir, "makensis.exe", "users") 
    println nsisFile.path 

    def MAKENSIS = nsisFile.getPath().replaceFirst("(.*)drive_c/", "c:\\\\") 
    println MAKENSIS 
    MAKENSIS = MAKENSIS.replaceAll("/","\\\\") 

    def extractor = new BuildInfoExtractor(projectFile: new File("${projectDir}")) 
    def version = extractor.getBetaVersion() 

    workingDir "${buildDir}/windows-i586" 


    def fullCommand = 'WINEDEBUG=fixme-win,fixme-sync,fixme-heap /usr/bin/wine "' + MAKENSIS + '" /V1 /DVER_STR=' + version + ' /X"SetCompressor /FINAL lzma" ./JDesigner.nsi' 

    println "makensis command:" 
    println MAKENSIS 
    println fullCommand 
    println "" 

    commandLine fullCommand 
} 



private void configureRun (def task) { 
    apply from: 'PlatformPrivate.gradle' 
    def confRun = new ConfigureRun(localPlatform: localPlatform) 

    confRun.configureRun(task, mainClass, sourceSets) 
} 

run { 
    configureRun(it) 
} 

task(debug, dependsOn: 'classes', type: JavaExec) { 
    configureRun(it) 
    debug = true 
} 

的PlatformPrivate.gradle

ext { 
    localPlatform='linux-amd64' 
} 

com.protocase.designer.Platform:

package com.protocase.designer 

import com.protocase.files.FolderUtils 
import org.gradle.api.GradleException 
import static groovy.io.FileType.FILES 
import java.nio.file.StandardCopyOption 
import java.io.File 
import java.nio.file.Files 
import java.nio.file.Paths 

public class Platform { 
    def natives 
    def libFolder 
    def genericBuildDir 

    String gluegenDir() { 
    def dirName = 'gluegen-rt.jar-natives-' + natives 
    dirName 
    } 

    String joglDir() { 
    def dirName = "jogl.jar-natives-" + natives 
    dirName 
    } 

    def getExtension() { 
    def result = "" 
    switch (natives) 
    { 
     case 'linux-amd64': 
     case 'linux-i586': 
     case 'solaris-i586': 
     case 'solaris-sparc': 
     case 'solaris-sparcv9': 
     result = 'so' 
     break; 

     case 'macosx-universal': 
     case 'macosx-ppc': 
     result = 'jnilib' 
     break; 

     case 'windows-i586': 
     case 'windows-amd64': 
     result = 'dll' 
     break; 

     default: 
     throw new GradleException ('programmer missed a case or bad platform: ' + natives) 
    } 

    result 
    } 

    def getNativeDistDir() { 
    def buildDir = new File(genericBuildDir, natives) 
    } 

    def makeAndPopulateBuildDir() { 
    def sourceDir = new File(genericBuildDir, 'libs') 
    def nativeDistDir = getNativeDistDir() 

    if (nativeDistDir.exists()) { 
     FolderUtils.deleteFolder(nativeDistDir) 
    } 

    FolderUtils.copyFolderContents(sourceDir, nativeDistDir) 
    } 

    def getLibraryDirs() { 
    def dirList = [] 

    def dir = new File(new File(libFolder, "gluegen-runtime"), gluegenDir()) 

    dirList << dir 

    dir = new File(new File(libFolder, "jogl-runtime"), joglDir()) 

    dirList << dir 

    dirList 
    } 

    def getLibraryFiles() { 
    def fileList = [] 

    def dirs = getLibraryDirs() 

    dirs.each { 
     it.eachFile(FILES) { 
    file -> fileList << file 
     } 
    } 

    fileList 
    } 

    def copyLibraryFiles() { 

    def copyOptions = [StandardCopyOption.REPLACE_EXISTING, StandardCopyOption.COPY_ATTRIBUTES] 
    def destinationFolder = new File(getNativeDistDir(), 'lib') 

    getLibraryDirs().each { 
     FolderUtils.copyFolderContents(it, destinationFolder) 
    } 
    } 

} 
+0

嗨,我有問題得到喬吉爾和gradle一起工作,我在你的'dependencies'中看到你使用它...你介意顯示完整的'build.gradle'嗎? – elect 2015-10-29 07:49:22

+1

我添加了完整的build.gradle和我製作的其他一些gradle文件。如果我錯過了什麼,請告訴我。 – vextorspace 2015-10-30 12:56:08

+0

非常感謝,男士!我會在接下來的日子裏挖掘它.. – elect 2015-10-30 16:02:50

相關問題