1 Star 0 Fork 1.3K

zhshw/northstar

forked from dromara/northstar 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dev-env.ps1 2.82 KB
一键复制 编辑 原始数据 按行查看 历史
Huangwl 提交于 2023-04-08 23:20 . 增加日志输出
#检查env.ps1脚本是否已经运行过,没有的话就运行,确保环境准备好
Invoke-WebRequest https://gitee.com/dromara/northstar/raw/master/env.ps1 -OutFile env.ps1;
. .\env.ps1
$BasePath = "c:\northstar_env\"
$WorkspacePath = "c:\northstar_workspace\"
If(!(test-path $WorkspacePath))
{
New-Item -Path $WorkspacePath -ItemType Directory
}
#Node14下载地址
$Node14DownloadUrl = "https://registry.npmmirror.com/-/binary/node/latest-v14.x/node-v14.19.0-x64.msi"
#Maven下载地址
$MavenDownloadUrl = "https://mirrors.bfsu.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip"
#Git下载地址
$GitDownloadUrl = "https://npm.taobao.org/mirrors/git-for-windows/v2.32.0.windows.1/Git-2.32.0-64-bit.exe"
#Eclipse地址
$EclipseDownloadUrl = "https://download.springsource.com/release/STS4/4.14.0.RELEASE/dist/e4.23/spring-tool-suite-4-4.14.0.RELEASE-e4.23.0-win32.win32.x86_64.self-extracting.jar"
#northstar仓库地址
$NorthstarRepository = "https://gitee.com/dromara/northstar.git"
# Maven环境安装
If(checkCommand mvn *){
"Maven installed"
} else {
$targetFile = "apache-maven-3.6.3-bin.zip"
if(!(test-path "C:\northstar_env\apache-maven-3.6.3")){
"Start downloading $targetFile"
Invoke-WebRequest -Uri $MavenDownloadUrl -OutFile "$BasePath$targetFile"
Expand-Archive $BasePath$targetFile -DestinationPath $BasePath
"Unzipped $targetFile"
Remove-Item "$BasePath$targetFile"
}
$mvnPath = getInstallPath $BasePath *maven*
setEnvironment Maven "$mvnPath\bin"
}
# Node14环境安装
If(checkCommand node.exe 14*){
"Node14 installed"
} else {
downloadAndInstallMSI $Node14DownloadUrl $BasePath node-v14.19.0-x64.msi
$nodePath = "C:\Program Files\nodejs"
setEnvironment Node $nodePath
npm config set registry https://registry.npm.taobao.org
npm config set unsafe-perm=true
}
# Git环境安装
If(checkCommand git.exe *){
"Git installed"
} else {
$gitFile = "Git-2.35.1.2-64-bit.exe"
if(!(test-path $BasePath$gitFile)){
"Start downloading Git"
Invoke-WebRequest $GitDownloadUrl -OutFile $BasePath$gitFile
}
"Start installing Git"
Start-Process $BasePath$gitFile -ArgumentList "/silent" -wait
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
}
"Cloning repository"
git clone $NorthstarRepository $WorkspacePath\northstar
cd $WorkspacePath\northstar
Start-Process mvn -ArgumentList "clean install -Dmaven.test.skip=true"
$stsJarName = "spring-tool-suite-4-4.14.0.RELEASE-e4.23.0-win32.win32.x86_64.self-extracting.jar"
if(test-path $BasePath$stsJarName){
"STS package is ready"
} else {
"Start downloading STS"
Invoke-WebRequest $EclipseDownloadUrl -OutFile $BasePath$stsJarName
}
if(test-path "$BasePath\sts-4.14.0.RELEASE"){
"STS is installed"
} else {
cd $BasePath
java -jar $BasePath$stsJarName
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zhshw/northstar.git
git@gitee.com:zhshw/northstar.git
zhshw
northstar
northstar
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385