Maven: Artifact has not been packaged yet -
i letting maven copy dependency files  specific location gwt proejct. maven-dependency-plugin job , far works. problem i'm getting error eclipse says:
artifact has not been packaged yet. when used on reactor artifact, copy should executed after packaging: see mdep-187.
i have tried change <phase> did not work. how can rid of error , why there because maven builds intended.
    <plugins>         <plugin>             <artifactid>maven-dependency-plugin</artifactid>             <executions>                 <execution>                     <phase>install</phase>                     <goals>                         <goal>copy-dependencies</goal>                     </goals>                     <configuration>                         <outputdirectory>${project.basedir}/war/web-inf/lib</outputdirectory>                     </configuration>                 </execution>             </executions>         </plugin>     </plugins> 
i got same error , solved issue workaround. have compiled , installed project maven in console outside eclipse ide. after have refreshed project inside eclise ide , error has disappeared.
Comments
Post a Comment