<dependencies>
<dependency>
<groupId>%bundleName</groupId>
<artifactId>%bundleName-core</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
import %bundleName.*;
public class Example {
public static void main(String[] args) {
HttpClient client = new HttpClient();
String response = client.get("https://www.example.com");
System.out.println(response);
String data = "Hello, World!";
String encryptedData = CryptoUtils.encrypt(data, "password");
System.out.println(encryptedData);
}
}