Skip to content

Commit 4aebb0c

Browse files
authored
Local release (#309)
* Update distribution management repository URLs in pom.xml * Update version to 2.2.1-beta.0-SNAPSHOT in pom.xml * [maven-release-plugin] prepare release percy-appium-app-2.2.1-beta.0 * Bump version to 2.2.1-beta.1 in pom.xml and Environment.java * Update version to 2.2.1-beta.1-SNAPSHOT in pom.xml * [maven-release-plugin] prepare release percy-appium-app-2.2.1-beta.1 * [maven-release-plugin] prepare for next development iteration * Update version to 2.2.2-beta.2 in pom.xml and Environment.java * [maven-release-plugin] prepare release percy-appium-app-2.2.2-beta.2 * [maven-release-plugin] prepare for next development iteration * Update version to 2.2.2-beta.3-SNAPSHOT and add Nexus Staging Maven Plugin configuration * [maven-release-plugin] prepare release percy-appium-app-2.2.2-beta.3 * [maven-release-plugin] prepare for next development iteration * Update version to 2.2.3-beta.1-SNAPSHOT and SDK_VERSION to 2.2.1-beta.1 * [maven-release-plugin] prepare release percy-appium-app-2.2.3-beta.1 * [maven-release-plugin] prepare for next development iteration * Update version to 2.2.1-alpha.0-SNAPSHOT and SDK_VERSION to 2.2.1-alpha.1 * [maven-release-plugin] prepare release percy-appium-app-2.2.1-alpha.0 * [maven-release-plugin] prepare for next development iteration * release * Update version to 2.2.2-alpha.1 and SCM tag to percy-appium-app-2.1.7
1 parent afa84d2 commit 4aebb0c

File tree

2 files changed

+14
-17
lines changed

2 files changed

+14
-17
lines changed

pom.xml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.percy</groupId>
77
<artifactId>percy-appium-app</artifactId>
8-
<version>2.2.1-beta.0</version>
8+
<version>2.2.2-alpha.1</version>
99
<packaging>jar</packaging>
1010

1111
<name>${project.groupId}:${project.artifactId}</name>
@@ -84,12 +84,12 @@
8484

8585
<distributionManagement>
8686
<snapshotRepository>
87-
<id>ossrh</id>
88-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
87+
<id>central</id>
88+
<url>https://central.sonatype.com/repository/maven-snapshots</url>
8989
</snapshotRepository>
9090
<repository>
91-
<id>ossrh</id>
92-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
91+
<id>central</id>
92+
<url>https://central.sonatype.com/</url>
9393
</repository>
9494
</distributionManagement>
9595

@@ -181,17 +181,14 @@
181181
<version>3.0.0</version>
182182
</plugin>
183183
<plugin>
184-
<groupId>org.sonatype.plugins</groupId>
185-
<artifactId>nexus-staging-maven-plugin</artifactId>
186-
<version>1.6.13</version>
187-
<extensions>true</extensions>
188-
<configuration>
189-
<serverId>ossrh</serverId>
190-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
191-
<!-- set to 'false' if you want to manually inspect the repository before releasing -->
192-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
193-
</configuration>
194-
</plugin>
184+
<groupId>org.sonatype.central</groupId>
185+
<artifactId>central-publishing-maven-plugin</artifactId>
186+
<version>0.9.0</version>
187+
<extensions>true</extensions>
188+
<configuration>
189+
<publishingServerId>central</publishingServerId>
190+
</configuration>
191+
</plugin>
195192
<plugin>
196193
<groupId>org.apache.maven.plugins</groupId>
197194
<artifactId>maven-release-plugin</artifactId>

src/main/java/io/percy/appium/Environment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public class Environment {
66
private AppiumDriver driver;
7-
public static final String SDK_VERSION = "2.2.1-beta.0";
7+
public static final String SDK_VERSION = "2.2.1-alpha.1";
88
private static final String SDK_NAME = "percy-appium-app";
99
private static String percyBuildID;
1010
private static String percyBuildUrl;

0 commit comments

Comments
 (0)