基本信息:
Artifactory ver。 4.12.2
操作系统 - Ubuntu 16
在服务器上只安装Artifactory。连接直接在我的主机和服务器之间。没有代理人。当我做:
mvn clean install
我有下载速度的信息,而且速度很慢 e.g:
已下载:http://IP:PORT/XXXX(235 KB,0.3 KB /秒)
这种下载速度需要很长时间来构建我的项目。
在我的主机上安装了maven ver。 3.3.9和java 1.8
以下是我的settings.xml文件
<properties>
<deploy.snapshot.id>repo</deploy.snapshot.id>
<deploy.snapshot.url>http://IP:PORT/artifactory/libs-snapshot-local</deploy.snapshot.url>
<deploy.release.id>repo</deploy.release.id>
<deploy.release.url>http://IP:PORT/artifactory/libs-release-local</deploy.release.url>
</properties>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
<id>central</id>
<name>libs-release</name>
<url>http://IP:PORT/artifactory/libs-release</url>
</repository>
<repository>
<snapshots />
<id>snapshots</id>
<name>libs-snapshot</name>
<url>http://IP:PORT/artifactory/libs-snapshot</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
<id>central</id>
<name>plugins-release</name>
<url>http://IP:PORT/artifactory/plugins-release</url>
</pluginRepository>
<pluginRepository>
<snapshots />
<id>snapshots</id>
<name>plugins-snapshot</name>
<url>http://IP:PORT/artifactory/plugins-snapshot</url>
</pluginRepository>
</pluginRepositories>
<id>artifactory</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>artifactory</activeProfile>
</activeProfiles>
</settings>