Why is maven compilation so slow?
黄舟
黄舟 2017-06-12 09:22:43
0
4
876


Always stuck at 99%. What is the problem?

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(4)
扔个三星炸死你

Turn it off and use the maven command line to operate maven. Do not use it directly in the IDE

为情所困

It’s a common problem in eclipse, but it’s not found in idea! You can also download the jar package to the local warehouse, and then specify your local warehouse

某草草

Modify Maven's central warehouse and let Maven download dependency packages from the domestic Alibaba warehouse, which will make it much faster.
Find settings.xml and add the following code to the mirrors tag

<mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>       
    </mirror>
大家讲道理

This situation is usually because some files cannot be found, the download times out, etc.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!