Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 0d9bd28

Browse files
author
Raja Maragani
authored
Removed protocol interface functionalities from remrem-shared (#9)
* Removed protocol-interface functionalities and added loadJar method * Modified Class name and build version
1 parent a2b8196 commit 0d9bd28

File tree

4 files changed

+18
-22
lines changed

4 files changed

+18
-22
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## 0.2.0
2+
- Removed protocol-interface functionalities from Shared and added load jar functionality.
3+
14
## 0.1.4
25
- Extended for get the eventid

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ plugins{
1212
id 'java'
1313
id 'com.github.johnrengelman.shadow' version '1.2.3'
1414
id 'maven'
15+
id 'eclipse'
1516
}
1617

1718
jar {
1819
baseName = 'remrem-shared'
19-
version = '0.1.4'
20+
version = '0.2.0'
2021
}
2122

2223
group 'com.ericsson.eiffel.remrem'
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.ericsson.eiffel.remrem.shared;
2+
3+
public class JarLoaderUtility {
4+
5+
/**
6+
* Dynamic jar loading from the jar path.
7+
* @param String jarPath
8+
* @return void after loading the jar into class path.
9+
*/
10+
void loadJar(String jarPath){
11+
12+
}
13+
}

src/main/java/com/ericsson/eiffel/remrem/shared/MsgService.java

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)