Skip to content

Commit

Permalink
Prepare 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug Simmons committed Nov 18, 2015
1 parent 1e02915 commit 721b6c5
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 13 deletions.
4 changes: 2 additions & 2 deletions archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -101,7 +101,7 @@
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<versionRange>[1.8,)</versionRange>
<versionRange>[2.0.0,)</versionRange>
<goals>
<goal>install</goal>
<goal>run</goal>
Expand Down
2 changes: 1 addition & 1 deletion archetype/src/main/resources/archetype-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skipTests>false</skipTests>
<suiteXmlFile>src/test/resources/SampleSuite.xml</suiteXmlFile>
<selion.version>1.0.0-SNAPSHOT</selion.version>
<selion.version>1.0.0</selion.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,9 @@ public static enum ConfigProperty {
SELENIUM_PROXY_PORT("proxyServerPort", "", true),

/**
* Use this parameter to indicate if your remote runs are to be run against the sauce lab grid or against the QI
* owned grid/your own grid. This flag is required because when running against Sauce lab furnished grid, we are
* to ensure that fetching of WebDriver node IP and Port is to be disabled.
* Use this parameter to indicate if your remote runs are to be run against the sauce lab grid or against your
* own grid. This flag is required when running against the Sauce lab grid because we need to disable fetching
* of the WebDriver node IP and Port details.
*/
SELENIUM_USE_SAUCELAB_GRID("useSauceLabGrid", "false", true),

Expand Down
2 changes: 1 addition & 1 deletion codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dataproviders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
23 changes: 22 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>SeLion Parent POM</name>
<description>The SeLion Parent POM</description>
Expand Down Expand Up @@ -133,6 +133,27 @@
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
Expand Down
2 changes: 1 addition & 1 deletion project-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.paypal.selion</groupId>
<artifactId>SeLion-Parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit 721b6c5

Please sign in to comment.