-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Seed SeLion 2.0.0-SNAPSHOT with Selenium 3-beta
- Update SeLion grid to be Selenium 3-beta compatible - Update Java version to 8 - Update Maven version to 3.2.x - Add .editorconfig rules - Add github new issue and PR templates - Update README.MD
- Loading branch information
Doug Simmons
committed
Nov 2, 2016
1 parent
9d9a587
commit de96989
Showing
49 changed files
with
800 additions
and
520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{java,xml}] | ||
indent_style = space | ||
indent_size = 4 | ||
continuation_indent_size = 4 | ||
|
||
[*.{js,html,css,yml,yaml.json}] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### SeLion Version | ||
|
||
### Component | ||
|
||
### Expected Behavior | ||
|
||
### Actual Behavior | ||
|
||
### Steps to Reproduce | ||
|
||
<!-- | ||
Please be sure to include an SSCCE (Short, Self Contained, Correct [compilable] example) http://sscce.org/ | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- [ ] By placing an `X` in the preceding checkbox, I verify that I am a PayPal employee or | ||
I have signed the [Contributor License Agreement](https://github.com/paypal/SeLion#contributing) | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
server/src/main/java/com/paypal/selion/grid/ProcessLauncherConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/*-------------------------------------------------------------------------------------------------------------------*\ | ||
| Copyright (C) 2016 PayPal | | ||
| | | ||
| 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. | | ||
\*-------------------------------------------------------------------------------------------------------------------*/ | ||
|
||
package com.paypal.selion.grid; | ||
|
||
import com.beust.jcommander.Parameter; | ||
import com.paypal.selion.pojos.SeLionGridConstants; | ||
|
||
public class ProcessLauncherConfiguration { | ||
public static final String NO_CONTINUOUS_RESTART = "noContinuousRestart"; | ||
@Parameter( | ||
names = "-" + NO_CONTINUOUS_RESTART, | ||
description = "<Boolean> : Disables continuous restart of the SeLion grid sub-process" | ||
) | ||
public boolean noContinuousRestart; | ||
|
||
public static final String SELION_CONFIG = "selionConfig"; | ||
@Parameter( | ||
names = "-" + SELION_CONFIG, | ||
description = "<String> filename : A SeLion Grid configuration JSON file" | ||
) | ||
public String selionConfig = SeLionGridConstants.SELION_CONFIG_FILE; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.