Skip to content
Open

Test #17

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
11 changes: 11 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 19.3b0
hooks:
- id: black
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ To use the built in server adapters of Eclipse, instead of doing "Run As -> Mave
- Select the server you want to run on, e.g. Apache Tomcat 8 and click ok
- *Do not use the suggested J2EE Preview server* as it is outdated, deprecated and does not support Servlet 3, which is required for this application

*** End of documentation
*** End of documentation
2 changes: 2 additions & 0 deletions TestSCMPoll.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hello hi
hello hi
20 changes: 10 additions & 10 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
# Copyright 2015, Seshagiri Sriram. All rights reserved.
#
# Created on: Feb 02, 2015, Seshagiri Sriram
# Created on: Feb 02, 2015, Seshagiri Sriram
# Updated: June 20,2016 fixed some property paths..
# File Name : build.properties
#
Expand All @@ -23,22 +23,22 @@
# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
# The below are general for *** ALL *** Projects and defined inside build.xml or passed via -D options. DO NOT CHANGE
# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
# |Property Description
# |Property Description
# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------
# |build.basesrcdir Location where the project is found. Passed to this script via -Dbasesrcdir=<value>
# |maven.build.finalName Final name - hardcoded into build.xml e.g. X-1.0.0-SNAPSHOT.jar
# |maven.build.finalName Final name - hardcoded into build.xml e.g. X-1.0.0-SNAPSHOT.jar
# |maven.build.dir Location relative to buildsrcdir where build will be done. usually target
# |maven.build.outputDir Usually target/classes.
# |maven.build.outputDir Usually target/classes.
# |maven.build.srcdir location of source under buid.basesrcdir
# |maven.build.resourceDir location of resources under build.basesrcdir
# |maven.build.testDir Location of test classes
# |maven.build.testResourceDir Location of test resources
# |maven.build.resourceDir location of resources under build.basesrcdir
# |maven.build.testDir Location of test classes
# |maven.build.testResourceDir Location of test resources
# |maven.build.testOutputDir Location of test class compilation
# |maven.test.reports Where test reports (from JUNIT) will be located.
# |maven.build.pmddir Location where PMD rules and XSL will belocated.
# |maven.test.reports Where test reports (from JUNIT) will be located.
# |maven.build.pmddir Location where PMD rules and XSL will belocated.
# |maven.reporting.outputDirectory Location of reports from PMD
# |project.3rdpartylibdir lib under build.basesrcdir
# |build.type dev,qa, or prod. passed via -Dbuildtype={dev|qa|prod}
# |build.type dev,qa, or prod. passed via -Dbuildtype={dev|qa|prod}
# |environment.type.default Value if build.type is not passed. defaults to dev -- DO NOT CHANGE
# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------

Expand Down
Loading