|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>org.example</groupId> |
8 | | - <artifactId>rave-java-v2</artifactId> |
9 | | - <version>1.0-SNAPSHOT</version> |
| 7 | + <groupId>com.flutterwave</groupId> |
| 8 | + <artifactId>f4b-java</artifactId> |
| 9 | + <version>3.0</version> |
| 10 | + <packaging>jar</packaging> |
| 11 | + <name>${project.groupId}:${project.artifactId}</name> |
| 12 | + <description> The Java library provides easy access to Flutterwave for Business (F4B) v3 APIs for your Java codebase. It abstracts the complexity involved in direct integration and allows you to make quick calls to the APIs.</description> |
| 13 | + <url>https://github.com/Flutterwave/Java</url> |
| 14 | + |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>MIT License</name> |
| 19 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>Cleopatra Douglas</name> |
| 26 | + <email>developers@flutterwavego.com</email> |
| 27 | + <organization>Flutterwave</organization> |
| 28 | + <organizationUrl>https://flutterwave.com</organizationUrl> |
| 29 | + </developer> |
| 30 | + </developers> |
| 31 | + |
| 32 | + <scm> |
| 33 | + <connection>scm:git:git://github.com/Flutterwave/Java.git</connection> |
| 34 | + <developerConnection>scm:git:ssh://github.com:Flutterwave/Java.git</developerConnection> |
| 35 | + <url>https://github.com/Flutterwave/Java/tree/main</url> |
| 36 | + </scm> |
| 37 | + |
| 38 | + <!-- <distributionManagement>--> |
| 39 | + <!-- <snapshotRepository>--> |
| 40 | + <!-- <id>ossrh</id>--> |
| 41 | + <!-- <url>https://oss.sonatype.org/content/repositories/snapshots</url>--> |
| 42 | + <!-- </snapshotRepository>--> |
| 43 | + <!-- <repository>--> |
| 44 | + <!-- <id>ossrh</id>--> |
| 45 | + <!-- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>--> |
| 46 | + <!-- </repository>--> |
| 47 | + <!-- </distributionManagement>--> |
10 | 48 |
|
11 | 49 | <dependencies> |
12 | 50 | <dependency> |
13 | 51 | <groupId>org.junit.jupiter</groupId> |
14 | 52 | <artifactId>junit-jupiter-engine</artifactId> |
15 | | - <version>5.8.1</version> |
| 53 | + <version>5.9.0</version> |
16 | 54 | <scope>test</scope> |
17 | 55 | </dependency> |
18 | 56 | <dependency> |
19 | 57 | <groupId>org.hibernate.validator</groupId> |
20 | 58 | <artifactId>hibernate-validator</artifactId> |
21 | | - <version>6.0.21.Final</version> |
| 59 | + <version>8.0.0.Final</version> |
22 | 60 | </dependency> |
23 | 61 | <dependency> |
24 | 62 | <groupId>javax.validation</groupId> |
|
35 | 73 | <artifactId>httpclient</artifactId> |
36 | 74 | <version>4.5.13</version> |
37 | 75 | <type>jar</type> |
38 | | - </dependency> <dependency> |
39 | | - <groupId>org.apache.httpcomponents</groupId> |
40 | | - <artifactId>httpcore</artifactId> |
41 | | - <version>4.4.9</version> |
42 | | - <type>jar</type> |
43 | | - </dependency> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.apache.httpcomponents</groupId> |
| 79 | + <artifactId>httpcore</artifactId> |
| 80 | + <version>4.4.15</version> |
| 81 | + <type>jar</type> |
| 82 | + </dependency> |
44 | 83 | <dependency> |
45 | 84 | <groupId>org.projectlombok</groupId> |
46 | 85 | <artifactId>lombok</artifactId> |
47 | | - <version>1.18.20</version> |
| 86 | + <version>1.18.24</version> |
48 | 87 | </dependency> |
49 | 88 | <dependency> |
50 | 89 | <groupId>org.apache.commons</groupId> |
|
55 | 94 | <dependency> |
56 | 95 | <groupId>com.fasterxml.jackson.core</groupId> |
57 | 96 | <artifactId>jackson-databind</artifactId> |
58 | | - <version>2.13.2.2</version> |
| 97 | + <version>2.14.0</version> |
59 | 98 | </dependency> |
60 | 99 | <dependency> |
61 | 100 | <groupId>com.google.code.gson</groupId> |
62 | 101 | <artifactId>gson</artifactId> |
63 | | - <version>2.9.1</version> |
| 102 | + <version>2.10</version> |
64 | 103 | </dependency> |
65 | 104 | <dependency> |
66 | 105 | <groupId>org.jetbrains</groupId> |
67 | 106 | <artifactId>annotations</artifactId> |
68 | | - <version>RELEASE</version> |
| 107 | + <version>23.0.0</version> |
69 | 108 | <scope>compile</scope> |
70 | 109 | </dependency> |
71 | 110 | </dependencies> |
|
0 commit comments