- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Maven 的 site:deploy 功能将项目站点部署到本地网络上的服务器。服务器运行的是 Windows Server 2012。
我已经在其上成功设置了 Apache Archiva Maven 存储库,并且我能够部署我的项目并从中提取依赖项。
当我运行mvn site:deploy
时,我明白了:
[INFO] --- maven-site-plugin:3.6:deploy (default-deploy) @ piserver ---
[INFO] Pushing C:\Users\Eric\Development\Projects\Java\PiServerJava\target\site
[INFO] >>> to scp://192.168.1.215/inetpub/wwwroot/software/projects/piserver/./
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.631 s
[INFO] Finished at: 2016-11-30T10:11:55-07:00
[INFO] Final Memory: 22M/219M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-
plugin:3.6:deploy (default-deploy) on project piserver: Error uploading
site: Error performing commands for file transfer: Exit code: 0 - The syntax
of the command is incorrect.
我的 POM <distributionManagement>
部分如下所示:
<distributionManagement>
<site>
<id>etv-site</id>
<url>scp://192.168.1.215/inetpub/wwwroot/software/projects/piserver/</url>
</site>
</distributionManagement>
和我的settings.xml <server>
部分如下所示:
<server>
<id>etv-site</id>
<username>********</username>
<password>********</password>
</server>
对于我的货车提供商,我使用
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.10</version>
</dependency>
</dependencies>
</plugin>
无论我如何尝试获取 <distributionManagement>
中的网址, 我犯了同样的错误。我试过了
scp://192.168.1.215/inetpub/wwwroot/software/projects/piserver/
scp://192.168.1.215/C:/inetpub/wwwroot/software/projects/piserver/
scp://192.168.1.215/software/projects/piserver/
等等。
我尝试过的其他事情:
scp:http://192.168.1.215/inetpub/wwwroot/software/projects/piserver/
;错误:Cannot connect. Reason: java.net.UnknownHostException
.sftp://192.168.1.215/inetpub/wwwroot/software/projects/piserver/
;错误:Error uploading site: Exit code: 0 - 'chmod' is not recognized as an internal or external command,
[ERROR] operable program or batch file.
作为引用,我的 Archiva 存储库 URL 如下所示:
<repository>
<id>etv-internal</id>
<url>http://192.168.1.215:8080/repository/internal</url>
</repository>
<snapshotRepository>
<id>etv-snapshots</id>
<url>http://192.168.1.215:8080/repository/snapshots</url>
</snapshotRepository>
<小时/>
sftp://
解决方案成功部署了我的网站,但我仍然收到 chmod 错误。不过,我仍然想使用 scp 而不是 sftp。
最佳答案
取消删除答案并保留问题中编辑内容的状态。您应该执行命令
mvn site:deploy
使用site-plugin部署包
为了将站点部署的 chmod
设置为 false,您可以使用以下配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<chmod>false</chmod>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.10</version>
</dependency>
</dependencies>
</plugin>
这也不需要更改插件的执行
阶段。
关于java - Maven 站点 :deploy error: "Error uploading site: Error performing commands for file transfer: Exit code: 0 - The syntax of the command is incorrect.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40894795/
我相信所有这些(甚至是 die() 或 die(0))都是相同的。如果它们不相同,那么哪个更适合成功退出脚本?如果它们相同,是否有任何首选标准表明脚本成功完成?我倾向于使用 exit;. 编辑:所有答
我想知道Java中以下之间的区别 System.exit(0);System.exit(-1);System.exit(1); 我什么时候必须适本地使用上面的代码?
我注意到 Powershell 中有一个奇怪的行为。有两个 .ps1 文件: main.ps1: echo "running exit.ps1" $myexitcode = & ".\exit.p
Anylogic Process Modeling Library 中很少有像“Source”这样的 block 具有“On exit”和“On at exit”这样的操作。两者有什么区别? 我试图创
所以我有这个 Bash 脚本: #!/bin/bash PID=`ps -u ...` if [ "$PID" = "" ]; then echo $(date) Server off: no
(gdb) info symbol exit exit in section .text of /lib64/libc.so.6 (gdb) info symbol _exit _exit in se
如果我想启动一个简单的应用程序,几周前我使用它没有出现错误,我会收到错误消息。那是他的错误描述: Launching lib\main.dart on SM J530F in debug mode..
这个问题已经有答案了: Using Platform.exit() and System.exit(int) together (3 个回答) 已关闭 5 年前。 这里有人建议使用后者。我是java新
我的理解是,在 bash 中,一个普通的 exit 将完成一个具有最后一个命令的退出状态的脚本。但我也看到有人使用 exit $? 并且当我建议它具有相同的行为时被质疑。 这两个脚本之间有什么有意义的
我看到一些代码是这样做的: if(something){ echo 'exit from program'; die; } ...more code 和其他只使用 die 的人: if
exit和exit有什么区别!在 ruby 中? 最佳答案 一些事情: 退出处理程序以“退出”形式而非“退出!”形式运行。这意味着分配给“清理”的任何代码都不会使用“退出!”运行 “退出状态”在“退出
我们有一堆 .bat构建脚本由基于 PowerShell 的 GitLab 运行程序调用,这些脚本最近从以下内容重构: program args if !errorlevel! neq 0 exit
我想关闭具有指定返回码的 javafx 应用程序。浏览 SO 上的答案,我发现了以下成语: Platform.exit(); System.exit(0); 例如这里: Stop threads be
exit 和 C++ 中的 std::exit 有什么区别?我已经对其进行了研究,但我找不到任何东西。 这两个代码有什么区别: 1: if(SDL_Init(SDL_INIT_EVERYTHING)
我需要一个替代方法来在线程函数内终止 python 脚本。我的意图是在客户端输入 0 时终止服务器...这是否不起作用,因为线程尚未终止?这是我的代码: socket = socket.socket(
我想在崩溃后重新启动应用程序。我正在使用下面的代码来执行该任务。 Intent mStartActivity = new Intent(HomeActivity.this, SplashScreen
在Delphi中,你可以退出一个函数并给它一个返回值,这与C/C++/Java/C#等中的return关键字非常相似 Exit(1); 但是,我通常会写这样的内容: Result := 1; Exit
我想知道是否有任何方法可以处理浏览器退出事件。 例如,我想在用户单击交叉退出或关闭浏览器时发送查询。 最佳答案 我想我已经找到了解决办法。我没有在 IE 上测试过它,但它似乎在 Firefox 上运行
我在 Archlinux 的 mkinitcpio 脚本中找到了以下代码片段。 cleanup() { if [[ $workdir ]]; then # when PRESE
我使用以下代码计算数据帧所有行之间的余弦相似度: from pyspark.ml.feature import Normalizer from pyspark.mllib.linalg.distrib
我是一名优秀的程序员,十分优秀!