|
| 1 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 2 | +# Copyright 2015, Seshagiri Sriram. All rights reserved. |
| 3 | +# |
| 4 | +# Created on: Feb 02, 2015, Seshagiri Sriram |
| 5 | +# Updated: June 20,2016 fixed some property paths.. |
| 6 | +# File Name : build.properties |
| 7 | +# |
| 8 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 9 | +# ****** NOTE: ALL PARAMETERS AND VALUES IN THIS FILE ARE CASE SENSITIVE ****** |
| 10 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 11 | +# Properties file |
| 12 | +# Modify the following properties before calling the ant build |
| 13 | +# |
| 14 | +# This build drops all the existing directories (mentioned in this properties file) before creating them |
| 15 | +# The JAR file structure created by this build is |
| 16 | +# |-- ReportGenerator.jar This is defined in build.xml |
| 17 | +# | |-- META-INF |
| 18 | +# |-- lib Third party jars |
| 19 | +# |-- All property files go in here..... |
| 20 | +# |
| 21 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 22 | +# Build Details |
| 23 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 24 | +# The below are general for *** ALL *** Projects and defined inside build.xml or passed via -D options. DO NOT CHANGE |
| 25 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 26 | +# |Property Description |
| 27 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 28 | +# |build.basesrcdir Location where the project is found. Passed to this script via -Dbasesrcdir=<value> |
| 29 | +# |maven.build.finalName Final name - hardcoded into build.xml e.g. X-1.0.0-SNAPSHOT.jar |
| 30 | +# |maven.build.dir Location relative to buildsrcdir where build will be done. usually target |
| 31 | +# |maven.build.outputDir Usually target/classes. |
| 32 | +# |maven.build.srcdir location of source under buid.basesrcdir |
| 33 | +# |maven.build.resourceDir location of resources under build.basesrcdir |
| 34 | +# |maven.build.testDir Location of test classes |
| 35 | +# |maven.build.testResourceDir Location of test resources |
| 36 | +# |maven.build.testOutputDir Location of test class compilation |
| 37 | +# |maven.test.reports Where test reports (from JUNIT) will be located. |
| 38 | +# |maven.build.pmddir Location where PMD rules and XSL will belocated. |
| 39 | +# |maven.reporting.outputDirectory Location of reports from PMD |
| 40 | +# |project.3rdpartylibdir lib under build.basesrcdir |
| 41 | +# |build.type dev,qa, or prod. passed via -Dbuildtype={dev|qa|prod} |
| 42 | +# |environment.type.default Value if build.type is not passed. defaults to dev -- DO NOT CHANGE |
| 43 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 44 | + |
| 45 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 46 | +# Per User configuration..... Change for local environmnent |
| 47 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 48 | +# |
| 49 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 50 | +ant.home=c:/Apps/ant |
| 51 | +project.build.outputDirectory=${maven.build.outputDir} |
| 52 | +project.build.directory=${maven.build.dir} |
| 53 | +maven.repo.local=e\:/repos |
| 54 | +maven.settings.offline=false |
| 55 | +project.build.sourceEncoding=UTF-8 |
| 56 | +maven.settings.interactiveMode=false |
| 57 | +maven.build.version=V1.2 |
| 58 | +maven.test.skip=false |
| 59 | +pmd.installpath=c:/Apps/pmd-bin-5.2.3/lib |
| 60 | +# ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
0 commit comments