pitest / pitclipse

Mutation testing for Java in Eclipse IDE. Based on PIT (Pitest).
https://pitest.org
Apache License 2.0
59 stars 17 forks source link

Don't store pitest JARs in the Git repository #99

Closed LorenzoBettini closed 4 years ago

LorenzoBettini commented 4 years ago

Motivation

Currently the pitest JARs are part of the Git repository and I guess updating to a new version of pitest requires manually downloading JARs and updating the MANIFEST

Proposed Solution

By using maven-dependency-plugin we can specify pitest dependencies in the POM and then have the Maven plugin create a libs folder inside the project (which would be excluded from Git); JARs can also be copied without their version, so that updating to a new version of pitest is just a matter of changing the version in the POM.

I'll provide a PR ASAP