Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Session renewer change ready for release #43

Merged
merged 3 commits into from
Jun 29, 2016
Merged
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ On successful completion - the command should give you build success and it shou
Users can populate class names in the Manifest file and/or provide regular expressions(regexes)
Please refer https://github.com/forcedotcom/ApexUnit/wiki/Manifest-file-vs-regex for the usecases where manifest file(s) and regex(es) option can be used

#Addional options

Use src/main/resources/config.properties to set the below parameters.

1. API_VERSION(Default value: 36.0) : The Partner API version in use for the org.

2. MAX_TIME_OUT_IN_MS(Default value : 1200000 ==> 20 minutes) : Time out setting for the session, Once timeout occurs, session renewer module is invoked which renews the session. Helpful when you face connection exception during query executions.

## Integrating with CI pipeline
CI engines like Jenkins(https://jenkins-ci.org/) can be used to seamlessly integrate ApexUnit with CI pipelines.
Please find the details here: https://github.com/forcedotcom/ApexUnit/wiki/Integrating-with-CI-pipeline
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.sforce.cd.ApexUnit</groupId>
<artifactId>ApexUnit-core</artifactId>
<version>2.3.4-SNAPSHOT</version>
<version>2.3.4</version>
<name>ApexUnit</name>
<description>Apex Unit v 2.0 with enhanced metrics and advanced features</description>
<!-- Fail fast for older Maven versions -->
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
# POSSIBILITY OF SUCH DAMAGE.
#
API_VERSION=36.0
MAX_TIME_OUT_IN_MS=20000
MAX_TIME_OUT_IN_MS=1200000