how to edit `.class` file in Maven dependency in Eclipse

后端 未结 5 865
臣服心动
臣服心动 2021-01-12 16:32

Ok, so I have my Java projects, and under the Maven dependency project folder on the project explorer, I encounter a jar folder, and in it there is a .cla

5条回答
  •  一生所求
    2021-01-12 17:11

    You cannot edit jars and source jars directly. You'd need to download the source code, and edit that. You'd then have to go through the build process to re-build the jar, and install it as a new version in your maven repository.

提交回复
热议问题