view build.gradle @ 501:57ee5c26e8eb

fix multicastput
author oshiro
date Sun, 17 Feb 2019 18:39:28 +0900
parents 520a9a3e4975
children
line wrap: on
line source

plugins {
  id "edu.sc.seis.macAppBundle" version "2.1.7"
}

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


sourceCompatibility = 1.11
targetCompatibility = 1.11
version = '2.7.2'

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

defaultTasks 'clean', 'dist'
macAppBundle {
    mainClassName = "com.glavsoft.viewer.TreeViewer"
    icon = "src/viewer_swing/resources/TreeVNC.png.icns"
    bundleJRE = true
    javaProperties.put("apple.laf.useScreenMenuBar", "true")
    //backgroundImage = "doc/macbackground.png"
}

//convasion jar file for .app
//https://github.com/crotwell/gradle-macappbundle/wiki/Intro
//icon create web applecation
//https://iconverticons.com/online/ 
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'
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.+', ext: 'jar'
    viewerSwingRuntime configurations.viewerSwingCompile
}

def manifestAttributes = ['Main-Class': 'com.glavsoft.viewer.TreeViewer',
        '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 {
        
    }
	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]
}

// set mainclass to Application Plugin
mainClassName = 'com.glavsoft.viewer.TreeViewer'
applicationName = 'TreeVNC'