Commit da8fed6b authored by Uwe Peuker's avatar Uwe Peuker
Browse files

Abhängigkeiten vereinfacht

- de.bsvrz.sys.funclib.bitctrl und
- com.bitctrl eliminiert
parent 17df27c1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@ Versionsverlauf

## [Noch nicht veröffentlicht]

- Abhängigkeit zu de.bsvrz.sys.funclib.bitctrl und com.bitctrl entfernt

- CONTRIBUTING.md mit NERZ-Text ergänzt

- Kompatibilität für die Verwendung mit de.bsvrz.sys.funclib.bitctrl in Version 1 und
+19 −10
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@
// NERZ-SWE-Plugin
//--------------------------------------------------------------------
plugins {
    id "de.bsvrz.gradle.nerzswe" version "0.9.0"
    id "de.bsvrz.gradle.nerzswe" version "0.15.0"
    id "com.github.spotbugs" version "1.6.10"
}


@@ -17,7 +18,7 @@ repositories {
//--------------------------------------------------------------------
description 'DUA BitCtrl Funktionsbibliothek'
group 'de.bsvrz.sys'
version '1.9.3-SNAPSHOT'
version '2.0.0-SNAPSHOT'

// Properties des NERZ-SWE-Plugins:
nerzswe {
@@ -31,14 +32,22 @@ nerzswe {
//--------------------------------------------------------------------
String kernsoftware_version = '3.9.2'
dependencies {
    //------
    // Source:
    compile group: 'de.bsvrz.dav', name: 'de.bsvrz.dav.daf', version: kernsoftware_version

    compile group: 'com.bitctrl', name: 'com.bitctrl', version:'2.0.+'
    compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.bitctrl', version:'1.5.+'
    compile "de.bsvrz.dav:de.bsvrz.dav.daf:$kernsoftware_version"
    compile "de.bsvrz.sys:de.bsvrz.sys.funclib.application:$kernsoftware_version"
    compile "de.bsvrz.sys:de.bsvrz.sys.funclib.operatingMessage:$kernsoftware_version"

    //------
    // Test:
     testCompile group: 'junit', name: 'junit', version: '4.12'
    testCompile 'junit:junit:4.12'
}

tasks.withType(com.github.spotbugs.SpotBugsTask) {
    ignoreFailures = true
    
    effort = 'max'
    reportLevel = 'medium'
    
    reports {
        xml.enabled = true
        html.enabled = false
    }
}
+857 B (53.9 KiB)

File changed.

No diff preview for this file type.

+1 −1
Original line number Diff line number Diff line
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
DEFAULT_JVM_OPTS='"-Xmx64m"'

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
Loading