At the moment for a project I'm working on I'm using a Maven style project.
I'm using Maven for all my dependencies.
One of my dependencies is a jar
file (ExtentReports).
I want to edit an XML file within this jar
file. How can I achieve this?
I've seen online about using a ZIP tool, but would it not be overwritten once the program is re-run as I'm using Maven? Or is my concept of Maven wrong?
Thanks in advance.
EDIT:
<?xml version="1.0" encoding="UTF-8"?>
<extentreports>
<configuration>
<!-- report theme -->
<!-- standard, dark -->
<theme>standard</theme>
I want to change the above to
<?xml version="1.0" encoding="UTF-8"?>
<extentreports>
<configuration>
<!-- report theme -->
<!-- standard, dark -->
<theme>dark</theme>