Commit 3a4ab886 authored by Uwe Peuker's avatar Uwe Peuker
Browse files

Anpassungen an funclib.bitctrl.dua 2

parent 86b2c236
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ Versionsverlauf

## [Noch nicht veröffentlicht]

- Version 2.1 erfordert die Installation von Version 2.1 der SWE de.bsvrz.dua.guete.

## [Version 2.0.3]

+21 −17
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@
// NERZ-SWE-Plugin
//--------------------------------------------------------------------
plugins {
  id "de.bsvrz.gradle.nerzswe" version "0.12.0"
  id "de.bsvrz.gradle.nerzswe" version "0.15.0"
  id "com.github.spotbugs" version "1.6.10"
}

//--------------------------------------------------------------------
@@ -10,7 +11,7 @@ plugins {
//--------------------------------------------------------------------
description 'Fehleranalyse bei fehlenden Messdaten an TLS-DE'
group 'de.bsvrz.dua'
version '2.0.4-SNAPSHOT'
version '2.1.0-SNAPSHOT'

// Properties des NERZ-SWE-Plugins:
nerzswe {
@@ -28,20 +29,23 @@ repositories {
//--------------------------------------------------------------------
// Abhängigkeiten
//--------------------------------------------------------------------
String kernsoftware_version = '3.9.7'

dependencies { 
  //------
  // Source:
//  compile group: 'de.bsvrz.dav', name: 'de.bsvrz.dav.daf', version: kernsoftware_version
//  compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.application', version: kernsoftware_version
//  compile group: 'de.bsvrz.sys', name: 'de.bsvrz.sys.funclib.operatingMessage', version: kernsoftware_version
  compile group: 'de.bsvrz.dua', name: 'de.bsvrz.dua.guete', version: '2.0.4-SNAPSHOT'
//  compile group: 'com.bitctrl', name: 'com.bitctrl', version: '2.0.2'

  //------
  // Test:
  testCompile group: 'junit', name: 'junit', version: '4.12'
//  testCompile group: 'de.bsvrz.dav', name: 'de.bsvrz.dav.dav', version: kernsoftware_version
  testCompile group: 'de.bsvrz.dua', name: 'de.bsvrz.dua.tests', version: '2.1.2-SNAPSHOT'
//  testCompile group: 'com.nimbusds', name: 'srp6a', version: '2.0.0'

	compile 'de.bsvrz.dua:de.bsvrz.dua.guete:2.1.0-SNAPSHOT'

	testCompile 'junit:junit:4.12'
	testCompile 'de.bsvrz.dua:de.bsvrz.dua.tests:2.2.0-SNAPSHOT'
}

tasks.withType(com.github.spotbugs.SpotBugsTask) {
	ignoreFailures = true
	
	effort = 'max'
	reportLevel = 'medium'
	
	reports {
		xml.enabled = true
		html.enabled = false
	}
}
+777 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-4.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
+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