Skip to content

Commit

Permalink
version 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarrero committed Oct 11, 2024
1 parent 84e2213 commit fe9e198
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
25 changes: 18 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.conekta</groupId>
<artifactId>conekta-java</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.2.3</version>
<packaging>jar</packaging>
<name>conekta-java</name>
<description>This is a java library that allows interaction with https://api.conekta.io API.</description>
<url>https://www.conekta.io</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<url>https://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
Expand All @@ -25,7 +25,7 @@
<scm>
<connection>scm:git:[email protected]:conekta/conekta-java.git</connection>
<developerConnection>scm:git:[email protected]:conekta/conekta-java.git</developerConnection>
<url>http://github.com/conekta/conekta-java/tree/master</url>
<url>https://github.com/conekta/conekta-java/tree/master</url>
<tag>HEAD</tag>
</scm>
<build>
Expand Down Expand Up @@ -84,6 +84,10 @@
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>1CB9EF02</keyname>
<passphraseServerId>1CB9EF02</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
Expand All @@ -100,6 +104,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
Expand Down Expand Up @@ -134,9 +149,5 @@
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project>
3 changes: 3 additions & 0 deletions src/io/conekta/Conekta.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public abstract class Conekta {
public static void setApiKey(String apiKey) {
Conekta.apiKey = apiKey;
}
public static void setApiBase(String apiBase) {
Conekta.apiBase = apiBase;
}

public static void setApiVerion(String version) {
Conekta.apiVersion = version;
Expand Down

0 comments on commit fe9e198

Please sign in to comment.