Skip to content

Commit 751f172

Browse files
committed
update pom.xml
1 parent 953b90f commit 751f172

1 file changed

Lines changed: 54 additions & 15 deletions

File tree

pom.xml

Lines changed: 54 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,59 @@
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>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>-->
1048

1149
<dependencies>
1250
<dependency>
1351
<groupId>org.junit.jupiter</groupId>
1452
<artifactId>junit-jupiter-engine</artifactId>
15-
<version>5.8.1</version>
53+
<version>5.9.0</version>
1654
<scope>test</scope>
1755
</dependency>
1856
<dependency>
1957
<groupId>org.hibernate.validator</groupId>
2058
<artifactId>hibernate-validator</artifactId>
21-
<version>6.0.21.Final</version>
59+
<version>8.0.0.Final</version>
2260
</dependency>
2361
<dependency>
2462
<groupId>javax.validation</groupId>
@@ -35,16 +73,17 @@
3573
<artifactId>httpclient</artifactId>
3674
<version>4.5.13</version>
3775
<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>
4483
<dependency>
4584
<groupId>org.projectlombok</groupId>
4685
<artifactId>lombok</artifactId>
47-
<version>1.18.20</version>
86+
<version>1.18.24</version>
4887
</dependency>
4988
<dependency>
5089
<groupId>org.apache.commons</groupId>
@@ -55,17 +94,17 @@
5594
<dependency>
5695
<groupId>com.fasterxml.jackson.core</groupId>
5796
<artifactId>jackson-databind</artifactId>
58-
<version>2.13.2.2</version>
97+
<version>2.14.0</version>
5998
</dependency>
6099
<dependency>
61100
<groupId>com.google.code.gson</groupId>
62101
<artifactId>gson</artifactId>
63-
<version>2.9.1</version>
102+
<version>2.10</version>
64103
</dependency>
65104
<dependency>
66105
<groupId>org.jetbrains</groupId>
67106
<artifactId>annotations</artifactId>
68-
<version>RELEASE</version>
107+
<version>23.0.0</version>
69108
<scope>compile</scope>
70109
</dependency>
71110
</dependencies>

0 commit comments

Comments
 (0)