Java环境常用工具地址
背景
Java程序员必备工具
安装包
- JDK (mac 1.8):https://d6.injdk.cn/oraclejdk/8/jdk-8u301-macosx-x64.dmg
- JDK (mac 1.8): https://mirrors.huaweicloud.com/java/jdk/8u202-b08/jdk-8u202-macosx-x64.dmg
- maven 3.6.3:https://mirrors.aliyun.com/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip
pom文件
maven不支持第一个路径下没有jar时,自动搜索下一个路径。
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!-- 中央仓库1 -->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<!-- 中央仓库2 -->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>
</mirrors>
</settings>
Idea必备插件
- Maven Helper
字体
cp CustomizedFonts /usr/share/fonts/truetype
mkfontscale
mkfontdir
fc-cache