Maven failed to resolve dependencies - javax.activation

后端 未结 3 1661
悲哀的现实
悲哀的现实 2021-01-18 01:38

I have a working maven web application which uses many jars. Trying to add javax.activation and do a mvn clean install fails.

I get \"Failed to execute goal on proje

3条回答
  •  迷失自我
    2021-01-18 02:18

    The artifact you need is javax.activation:activation:jar:1.0.2 (pay attention to the jar part), while the artifact you have in your repo is javax.activation:activation:pom:1.0.2. Either place a jar one into your repo or add pom to your .

提交回复
热议问题