Skip to content

Commit 5dc2e25

Browse files
committed
feat: prepare to publish
1 parent 54e66c0 commit 5dc2e25

File tree

2 files changed

+134
-17
lines changed

2 files changed

+134
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -321,10 +321,10 @@ new Pagination.Builder()
321321

322322
# Checkout our other SDKs
323323
<!-- agregar links -->
324-
node sdk
324+
[node sdk](https://github.com/cryptomkt/cryptomkt-node)
325325

326-
python sdk
326+
[ruby sdk](https://github.com/cryptomkt/cryptomkt-ruby)
327327

328-
go sdk
328+
[go sdk](https://github.com/cryptomkt/cryptomkt-go)
329329

330-
ruby sdk
330+
[python sdk](https://github.com/cryptomkt/cryptomkt-python)

pom.xml

Lines changed: 130 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,102 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.cryptomarket.sdk</groupId>
4+
<groupId>com.cryptomkt.api</groupId>
55
<artifactId>cryptomarket</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0-SNAPSHOT</version>
8-
<name>cryptomarket</name>
9-
<url>http://maven.apache.org</url>
10-
<properties>
11-
<maven.compiler.source>8</maven.compiler.source>
12-
<maven.compiler.target>8</maven.compiler.target>
13-
</properties>
7+
<version>1.1.0</version>
8+
9+
<licenses>
10+
<license>
11+
<name>Apache License, Version 2.0</name>
12+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
13+
<distribution>repo</distribution>
14+
</license>
15+
</licenses>
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-compiler-plugin</artifactId>
22+
<version>3.8.1</version>
23+
<configuration>
24+
<target>1.8</target>
25+
<source>1.8</source>
26+
</configuration>
27+
</plugin>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-source-plugin</artifactId>
31+
<version>3.2.1</version>
32+
<executions>
33+
<execution>
34+
<id>attach-sources</id>
35+
<goals>
36+
<goal>jar-no-fork</goal>
37+
</goals>
38+
</execution>
39+
</executions>
40+
</plugin>
41+
<plugin>
42+
<groupId>org.apache.maven.plugins</groupId>
43+
<artifactId>maven-javadoc-plugin</artifactId>
44+
<version>3.1.1</version>
45+
<configuration>
46+
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
47+
<source>8</source>
48+
</configuration>
49+
<executions>
50+
<execution>
51+
<id>attach-javadocs</id>
52+
<goals>
53+
<goal>jar</goal>
54+
</goals>
55+
</execution>
56+
</executions>
57+
</plugin>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-gpg-plugin</artifactId>
61+
<version>1.6</version>
62+
<executions>
63+
<execution>
64+
<id>sign-artifacts</id>
65+
<phase>verify</phase>
66+
<goals>
67+
<goal>sign</goal>
68+
</goals>
69+
</execution>
70+
</executions>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.sonatype.plugins</groupId>
74+
<artifactId>nexus-staging-maven-plugin</artifactId>
75+
<version>1.6.8</version>
76+
<extensions>true</extensions>
77+
<configuration>
78+
<serverId>ossrh</serverId>
79+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
80+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
81+
</configuration>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-release-plugin</artifactId>
86+
<version>2.5.3</version>
87+
<configuration>
88+
<autoVersionSubmodules>true</autoVersionSubmodules>
89+
<useReleaseProfile>false</useReleaseProfile>
90+
<releaseProfiles>release</releaseProfiles>
91+
<goals>deploy</goals>
92+
</configuration>
93+
</plugin>
94+
</plugins>
95+
</build>
96+
97+
<name>CryptoMarket</name>
98+
<description>The CryptoMarket in Java</description>
99+
<url>https://github.com/cryptomkt/cryptomkt-java</url>
14100

15101
<dependencies>
16102
<dependency>
@@ -43,11 +129,42 @@
43129
<groupId>org.apache.commons</groupId>
44130
<artifactId>commons-lang3</artifactId>
45131
<version>3.11</version>
46-
</dependency>
47-
<dependency>
132+
</dependency>
133+
<dependency>
48134
<groupId>commons-codec</groupId>
49135
<artifactId>commons-codec</artifactId>
50136
<version>1.10</version>
51137
</dependency>
52138
</dependencies>
53-
</project>
139+
140+
<developers>
141+
<developer>
142+
<name>T. Ismael Verdugo</name>
143+
<email>[email protected]</email>
144+
<organization>CryptoMarket</organization>
145+
<organizationUrl>https://www.cryptomkt.com</organizationUrl>
146+
</developer>
147+
</developers>
148+
149+
<scm>
150+
<connection>scm:git:git://github.com/cryptomkt/cryptomkt-java.git</connection>
151+
<developerConnection>scm:git:ssh://github.com/cryptomkt/cryptomkt-java.git</developerConnection>
152+
<url>https://github.com/cryptomkt/cryptomkt-java/tree/master</url>
153+
</scm>
154+
155+
<distributionManagement>
156+
<snapshotRepository>
157+
<id>ossrh</id>
158+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
159+
</snapshotRepository>
160+
<repository>
161+
<id>ossrh</id>
162+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
163+
</repository>
164+
</distributionManagement>
165+
<properties>
166+
<maven.compiler.source>8</maven.compiler.source>
167+
<maven.compiler.target>8</maven.compiler.target>
168+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
169+
</properties>
170+
</project>

0 commit comments

Comments
 (0)