Commit 82c65aae authored by Uwe Peuker's avatar Uwe Peuker
Browse files

Update auf DuA 2.0 (noch nicht komplett!!!)

git-svn-id: svn://ntoserver/Datenverteiler/VRZ3/trunk/de.bsvrz.dua.progglaette@62685 40c0be50-5d29-0410-901d-fb59edb5cafc
parent 5611ea09
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<package name="de.bsvrz.dua.progglaette">
  <license name="GPL" />
  <release name="DuA Version 2.0.0" />
  <version number="2.0.0-201605311503" />
  <revision number="861d8fc820b8df226e60bf608bf03b1f31ce60db" />
  <compile time="31.05.2016 15:13:43" />
  <depends-on-compiled packages="de.bsvrz.dav.daf, de.bsvrz.dav.dav, de.bsvrz.sys.funclib.commandLineArgs, de.bsvrz.sys.funclib.debug, de.bsvrz.sys.funclib.application, de.bsvrz.sys.funclib.operatingMessage, de.bsvrz.sys.funclib.bitctrl.dua, de.bsvrz.sys.funclib.bitctrl" />
  <depends-on-source packages="" />
  <depends-on-lib jars="" />
  <jvm version="1.8" />
</package>
+674 −0

File added.

Preview size limit exceeded, changes collapsed.

+5 −5
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
	<modelVersion>4.0.0</modelVersion>
	<groupId>de.bsvrz.dua</groupId>
	<artifactId>de.bsvrz.dua.progglaette</artifactId>
	<version>1.4.0-SNAPSHOT</version>
	<version>2.0.0</version>


	<name>Glaettewarnung und -prognose</name>
@@ -16,7 +16,7 @@

	<licenses>
		<license>
			<name>GNU General Public License, Version 2</name>
			<name>GNU General Public License, Version 3</name>
			<url>LICENSE.txt</url>
		</license>
	</licenses>
@@ -46,7 +46,7 @@
		<dependency>
			<groupId>de.bsvrz.dav</groupId>
			<artifactId>de.bsvrz.dav.daf</artifactId>
			<version>3.6.2</version>
			<version>3.8.0</version>
		</dependency>
		<dependency>
			<groupId>de.bsvrz.sys</groupId>
@@ -56,12 +56,12 @@
		<dependency>
			<groupId>de.bsvrz.dua</groupId>
			<artifactId>de.bsvrz.dua.guete</artifactId>
			<version>1.2.0</version>
			<version>2.0.0</version>
		</dependency>
		<dependency>
			<groupId>de.bsvrz.dua</groupId>
			<artifactId>de.bsvrz.dua.plloglve</artifactId>
			<version>[1.2.1,2.0.0)</version>
			<version>2.0.1</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>

release-notes.pdf

0 → 100644
+228 KiB

File added.

No diff preview for this file type.

+14 −0
Original line number Diff line number Diff line

            package de.bsvrz.dua.progglaette;
            public class PackageRuntimeInfo {
            public static String getLicence() { return "GPL";}
            public static String getRelease() { return "DuA Version 2.0.0";}
            public static String getVersion() { return "2.0.0";}
            public static String getRevision() { return "861d8fc820b8df226e60bf608bf03b1f31ce60db";}
            public static String getCompileTime() { return "31.05.2016 15:13:43";}
            public static String getDependsOnCompiled() { return "de.bsvrz.dav.daf, de.bsvrz.dav.dav, de.bsvrz.sys.funclib.commandLineArgs, de.bsvrz.sys.funclib.debug, de.bsvrz.sys.funclib.application, de.bsvrz.sys.funclib.operatingMessage, de.bsvrz.sys.funclib.bitctrl.dua, de.bsvrz.sys.funclib.bitctrl";}
            public static String getDependsOnSource() { return "";}
            public static String getDependsOnLib() { return "";}
            public static String getJvmVersion() { return "1.8";}
            }
        
 No newline at end of file
Loading