I am trying to compile the source code of Proguard 4.6 in a maven project. The code has a dependency on:
<dependency>
<groupId>com.sun.kvem</groupId>
<artifactId>kenv</artifactId>
<version>2.2</version>
<optional>true</optional>
<type>jar</type>
</dependency>
When I try compile it, I get:
Failed to execute goal on project proguard:
Could not resolve dependencies for project net.sf.proguard:proguard:jar:4.6:
Could not find artifact com.sun.kvem:kenv:jar:2.2 in central
(http://repo1.maven.org/maven2) -> [Help 1]
When I browse central (here), there is indeed no such jar in the central repository.
I don't know what kvem is. Why is it declared as type=jar
in the pom.xml and why isn't it in central repository? How do I solve this issue?
you need to do: