44 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
55 <modelVersion >4.0.0</modelVersion >
66
7- <groupId >com.litesoftwares </groupId >
7+ <groupId >net.osslabz </groupId >
88 <artifactId >coingecko-java</artifactId >
9- <version >1.0-SNAPSHOT</version >
9+ <version >1.0.0</version >
10+
11+ <name >${project.groupId} :${project.artifactId} </name >
12+ <description >Allows to decode raw input data from an EVM smart contract call (on Ethereum or a compatible chain like
13+ Avalanche, BSC etc.) into a processable format obtained from the contract's ABi definition (JSON).
14+ </description >
15+ <url >https://github.com/osslabz/coingecko-client</url >
1016
1117 <properties >
12- <maven .compiler.source>1.8</maven .compiler.source>
13- <maven .compiler.target>1.8</maven .compiler.target>
18+ <maven .compiler.release>8</maven .compiler.release>
1419 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20+
21+ <retrofit .version>2.9.0</retrofit .version>
1522 </properties >
1623
24+ <licenses >
25+ <license >
26+ <name >MIT License</name >
27+ <url >https://opensource.org/license/mit/</url >
28+ </license >
29+ </licenses >
30+
31+ <developers >
32+ <developer >
33+ <name >Philip Okugbe</name >
34+ 35+ <organization >Philipinho/CoinGecko-Java</organization >
36+ <organizationUrl >https://github.com/Philipinho/CoinGecko-Java</organizationUrl >
37+ </developer >
38+ </developers >
39+
40+ <scm >
41+ <
connection >scm:git:ssh://
[email protected] /osslabz/coingecko-client.git</
connection >
42+ <
developerConnection >scm:git:ssh://
[email protected] /osslabz/coingecko-client.git</
developerConnection >
43+ <url >https://github.com/osslabz/coingecko-client</url >
44+ <tag >HEAD</tag >
45+ </scm >
46+
1747 <dependencies >
1848
1949 <dependency >
2050 <groupId >com.squareup.retrofit2</groupId >
2151 <artifactId >retrofit</artifactId >
22- <version >2.9.0 </version >
52+ <version >${retrofit.version} </version >
2353 </dependency >
2454
2555 <dependency >
2656 <groupId >com.squareup.retrofit2</groupId >
2757 <artifactId >converter-jackson</artifactId >
28- <version >2.9.0 </version >
58+ <version >${retrofit.version} </version >
2959 </dependency >
3060
3161 <dependency >
3262 <groupId >org.projectlombok</groupId >
3363 <artifactId >lombok</artifactId >
34- <version >1.18.28 </version >
64+ <version >1.18.30 </version >
3565 <scope >provided</scope >
3666 </dependency >
3767
3868 </dependencies >
69+
70+ <profiles >
71+ <profile >
72+ <id >release</id >
73+ <build >
74+ <plugins >
75+ <plugin >
76+ <groupId >org.apache.maven.plugins</groupId >
77+ <artifactId >maven-source-plugin</artifactId >
78+ <version >3.3.0</version >
79+ <executions >
80+ <execution >
81+ <id >attach-sources</id >
82+ <goals >
83+ <goal >jar-no-fork</goal >
84+ </goals >
85+ </execution >
86+ </executions >
87+ </plugin >
88+ <plugin >
89+ <groupId >org.apache.maven.plugins</groupId >
90+ <artifactId >maven-javadoc-plugin</artifactId >
91+ <version >3.5.0</version >
92+ <executions >
93+ <execution >
94+ <id >attach-javadocs</id >
95+ <goals >
96+ <goal >jar</goal >
97+ </goals >
98+ <configuration >
99+ <doclint >none</doclint >
100+ <failOnError >false</failOnError >
101+ </configuration >
102+ </execution >
103+ </executions >
104+ </plugin >
105+ <plugin >
106+ <groupId >org.apache.maven.plugins</groupId >
107+ <artifactId >maven-gpg-plugin</artifactId >
108+ <version >3.1.0</version >
109+ <executions >
110+ <execution >
111+ <id >sign-artifacts</id >
112+ <phase >verify</phase >
113+ <goals >
114+ <goal >sign</goal >
115+ </goals >
116+ </execution >
117+ </executions >
118+ </plugin >
119+ <plugin >
120+ <groupId >org.sonatype.plugins</groupId >
121+ <artifactId >nexus-staging-maven-plugin</artifactId >
122+ <version >1.6.13</version >
123+ <extensions >true</extensions >
124+ <configuration >
125+ <serverId >ossrh</serverId >
126+ <nexusUrl >https://s01.oss.sonatype.org/</nexusUrl >
127+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
128+ </configuration >
129+ </plugin >
130+ </plugins >
131+ </build >
132+ </profile >
133+ </profiles >
134+
39135 <build >
40136 <plugins >
41137 <plugin >
42138 <groupId >org.apache.maven.plugins</groupId >
43139 <artifactId >maven-compiler-plugin</artifactId >
44140 <version >3.11.0</version >
45141 <configuration >
46- <source >1.8</source >
47- <target >1.8</target >
142+ <release >${maven.compiler.release} </release >
48143 </configuration >
49144 </plugin >
50145 </plugins >
51146 </build >
52- </project >
147+
148+ <distributionManagement >
149+ <snapshotRepository >
150+ <id >ossrh</id >
151+ <url >https://s01.oss.sonatype.org/content/repositories/snapshots</url >
152+ </snapshotRepository >
153+ <repository >
154+ <id >ossrh</id >
155+ <url >https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url >
156+ </repository >
157+ </distributionManagement >
158+
159+ </project >
0 commit comments