Skip to content

Commit

Permalink
Merge pull request #29 from WhiteOrganization/hotfix-javadocs-tests
Browse files Browse the repository at this point in the history
Deployment Hotfix
  • Loading branch information
obed-vazquez authored Dec 17, 2022
2 parents 524177b + 8e072e6 commit be5dcac
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,15 @@ for SNAPSHOT's use:

mvn clean deploy -D target=sonatype
mvn release:clean release:prepare -D target=sonatype
For Releases use version set if required:
For Releases use version set **if required** (if you didn't manually setted in last commit):

mvn versions:set -DnewVersion=1.x.x -D target=sonatype
Followed by:
Followed by the DEPLOY command:

mvn clean deploy -D target=sonatype

And if you want to bump to SNAPSHOT version:

mvn release:perform -D target=sonatype

### Contribution guidelines ###
Expand Down
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@
<value>sonatype</value>
</property>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
<distributionManagement>
<!-- region Sonatype -->
<!-- You need to configure credentials for the organization ossrh in your maven settings to deploy to the repo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ public class WebDriverUtilsTest {

@BeforeAll
public static void setUp() {
setProperty("white-selenium-framework.execute.web-driver.chrome", "true");
setProperty("white-selenium-framework.execute.web-driver.chrome", "false");
setProperty("white-selenium-framework.execute.web-driver.ie", "false");
setProperty("white-selenium-framework.execute.web-driver.edge", "false");
setProperty("white-selenium-framework.execute.web-driver.firefox", "false");
setProperty("white-selenium-framework.execute.web-driver.browserless", "false");
setProperty("white-selenium-framework.execute.web-driver.browserless", "true");
setProperty("white-selenium-framework.close-on-error", "true");
}

Expand Down

0 comments on commit be5dcac

Please sign in to comment.