-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.properties
59 lines (52 loc) · 2.2 KB
/
build.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# ======================================================================
#
# Copyright 2015 Roland Gisler
# Hochschule Luzern Technik & Architektur, Switzerland
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# ======================================================================
# HINWEIS:
# In dieser Datei veraendern Sie die projektspezifischen Ant-Properties,
# so dass sie das build.xml jederzeit (ohne Anpassung) aktualisieren
# koennen.
# ======================================================================
# HSLU T&A Modulname ('vsk' oder 'appe')
# Wird f�r eindeutige Namensgebung verwendet..
# Beispiel: proj.modul=vsk
proj.modul=vsk
# Ihre Gruppennummer im Format 'gXX' (XX = 01..99).
# Wird f�r eindeutige Namensgebung verwendet..
# Beispiel: proj.group=g01
proj.group=gxx
# Name des Projektes.
# Wird z.B. fuer das JAR und die Distribution verwendent.
# Beispiel: proj.name=vsk_logger
proj.name=vsk-strategy-demo
# Version des Projektes.
# Wird z.B. fuer das JAR und die Distribution verwendent.
# Beispiel: proj.version=1.0.0
proj.version=1.0.0
# Name der Startklasse (main-Methode) des Projektes.
# Wird ins Manifest eingetragen und von 'run'-Target verwendet.
# beispiel: proj.startclass=ch.hslu.skw.g01.logger.Server
proj.startclass=ch.hslu.vsk.tutorials.Main
# Name des/der Autors/en.
# Wird ins Manifest eingetragen.
# Beispiel: proj.autor=Thomas Muster, Peter Beispiel (G01/VSK)
proj.autor=Patrick Siegfried (${proj.group}/${proj.modul})
# Encoding der Java-Sources. Achtung: In IDE auch setzen!!!
# Notwendig f�r Compiler, Coverage etc. bei plattformuebergreifender Entwicklung
# Beispiel: proj.encoding=cp1252 (fuer Windows Only)
# proj.encoding=UTF-8 (empfohlen fuer Windows UND Linux)
proj.encoding=UTF-8