dependencies - Missing clover jar:1.3-rc4 -


where can find jar: clover:jar:1.3-rc4? have arrived @ point after there errors caused missing files, want try last thing of manually installing clover:jar:1.3-rc4 did stax

to resolve issue similar finding missing maven artifacts downloaded these jars add them manually similar question answered;

stax:stax:jar:1.0  stax:stax-ri:jar:1.0    

however not find

clover:clover:jar:1.3-rc4 

so got ask question. workaround , realized following errors:

missing artifact stax:stax:jar:1.0     missing artifact clover:clover:jar:1.3-rc4 missing artifact stax:stax-ri:jar:1.0 

were caused following dependency in pom.xml

<dependency>   <groupid>dom4j</groupid>   <artifactid>dom4j</artifactid>   <version>20040902.021138</version> </dependency> 

the solution issues resolved using different version of dom4j,

<dependency>     <groupid>dom4j</groupid>     <artifactid>dom4j</artifactid>     <version>1.6.1</version> </dependency> 

Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -