Skip to content

Commit

Permalink
[INJIMOB-1599] - Add lombok and remove json dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Swati Goel <meet2swati@gmail.com>
  • Loading branch information
swatigoel committed Jul 26, 2024
1 parent f0a0bf8 commit c9706ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 29 deletions.
9 changes: 4 additions & 5 deletions kernel/kernel-config-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,17 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220924</version>
</dependency>
</dependencies>

<distributionManagement>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,30 +1,9 @@
package io.mosip.kernel.config.server;

import lombok.Data;

@Data
public class GitUri {
public String uri;
public String branch;

public GitUri() {
}

public GitUri(String uri, String branch) {
this.uri = uri;
this.branch = branch;
}

public String getUri() {
return uri;
}

public void setUri(String uri) {
this.uri = uri;
}

public String getBranch() {
return branch;
}

public void setBranch(String branch) {
this.branch = branch;
}
}

0 comments on commit c9706ce

Please sign in to comment.