【问题标题】:Cannot build osmdroid repository无法构建 osmdroid 存储库
【发布时间】:2016-01-13 03:55:35
【问题描述】:

我已经从 https://github.com/osmdroid/osmdroid 而且我无法构建它。我专注于存储库中的 OpenStreetMapViewer 项目。

我认为问题的根源在于我无法使用 maven,因为我在防火墙后面。对于我创建或克隆的所有 Android Studio 项目,我必须通过删除来修改 build.gradle mavenCentral 而是使用:

jcenter {
    url "http://jcenter.bintray.com/"
}

对于这个项目,build.gradle 将此行包含在 dependencies 块中:

dependencies {
    compile 'com.android.support:appcompat-v4:22.2.+'
    compile 'org.osmdroid:osmdroid-android:4.3'
    compile 'org.osmdroid:osmdroid-third-party:4.3'
}

但是,在这里浏览 jcenter: https://bintray.com/bintray/jcenter 我没有看到 v4,只有 v7 (android-support-v7-appcompat)

我尝试将 v7 作为依赖项:

compile 'com.android.support:appcompat-v7:23.0.1'

这需要将 compileskdversion 更改为 23。

这样做我得到这个构建错误:

Error:A problem occurred configuring root project 'OpenStreetMapViewer'.
> Could not resolve all dependencies for configuration ':_debugCompile'.
   > Could not resolve android.support:compatibility-v4:21.0.3.
     Required by:
         :OpenStreetMapViewer:unspecified > org.osmdroid:osmdroid-third-party:4.3
      > Could not GET 'https://repo1.maven.org/maven2/android/support/compatibility-v4/21.0.3/compatibility-v4-21.0.3.pom'.
         > peer not authenticated
   > Could not resolve com.google.android.gms:google-play-services:22.0.0.
     Required by:
         :OpenStreetMapViewer:unspecified > org.osmdroid:osmdroid-third-party:4.3
      > Could not GET 'https://repo1.maven.org/maven2/com/google/android/gms/google-play-services/22.0.0/google-play-services-22.0.0.pom'.
         > peer not authenticated

看来 osmdroid 确实需要 v4,而不是 v7

在 Android SDK 管理器中,我安装了 Extras > Android Support Repository 22 和 > Android Support Library 23.0.1

我能做什么?

编辑 -------------------------------------------------------
我想我应该以尝试在不修改任何 build.gradle 或清单的情况下导入项目时发生的错误开始这个问题。关键是“How to Maven”的说明在这种情况下不起作用。

Error: Cause: peer not authenticated
Untrusted Server's certificate - Server's certificate not trusted.
Issued to: Common Name plugins.jetgrains.com
Organization: Jetbrains.s.r.o
Locality: Praha 4 - Nusle
Country: CZ
ST: Praha 4 - Nusle

编辑 2 --------------------------------------------- -----------------
如前所述,我从这里克隆了 osmdroid:
https://github.com/osmdroid/osmdroid
我将系统环境变量 M2_HOME 设置为克隆的 osmdroid 项目的位置。

在settings.xml中:

<localRepository>D:\Users\myusername\AndroidstudioProjects\maven-android-sdk-deployer</localRepository>

我从这里下载了maven:
http://maven.apache.org/download.cgi
解压后的 D:\Program Files\apache-maven-3.3.3\bin,然后我也将其包含在 path 系统变量中。

在 DOS 窗口中,我转到 M2_HOME 并执行以下命令:

mvn 安装

我收到此错误:

[INFO] Scanning for projects...
Downloading: https://repo.maven.apache.org/maven2/com/simpligility/maven/progressive-organization-pom/3.0.0/progressive-organization-pom-3.0.0.pom

[ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for com.simpligility.android.sdk-deployer:maven-android-sdk-deployer:2.8.0: Could not transfer artifact com.simpligility.maven:progressive-organization-pom:pom:3.0.0 from/to central (https://repo.maven.apache.org/maven2): 
sun.security.validator.ValidatorException: 
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: 
unable to find valid certification path to requested target and 'parent.relativePath' points at wrong local POM @ line 5, column 11
@ 
The build could not read 1 project -> [Help 1]

The project com.simpligility.android.sdk-deployer:maven-android-sdk-deployer:2.8.0 (D:\maven-android-sdk-deployer\pom.xml) has 1 error
Non-resolvable parent POM for com.simpligility.android.sdk-deployer:maven-android-sdk-deployer:2.8.0: Could not transfer artifact com.simpligility.maven:progressive-organization-pom:pom:3.0.0 from/to central (https://repo.maven.apache.org/maven2): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: 
unable to find valid certification path to requested target and 'parent.relativePath' points at wrong local POM @ line 5, column 11 -> [Help 2]

[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException

编辑 3 --------------------------------------------- --------------
D:\Program Files\apache-maven-3.3.3\conf/settings.xml,我补充说:

<localRepository>D:\Users\myusername\AndroidstudioProjects\maven-android-sdk-deployer</localRepository>

这没有任何区别。这样做是否正确?

编辑 4 --------------------------------------------- --------------- 尝试将参数添加到证书的命令中:

mvn install -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true

编辑 5 --------------------------------------------- ----------------
以上所有可能都是必要的,但还不够。它的工作原理是让网络人员为 maven 的防火墙添加一个例外并添加 Sun Certs。 http://www.mkyong.com/webservices/jax-ws/suncertpathbuilderexception-unable-to-find-valid-certification-path-to-requested-target/

编辑 6 --------------------------------------------- -----------------
将 M2_HOME 设置为 maven 的位置,例如:
C:\Program 文件 (x86)\apache-maven-3.3.9\ 将 mvn 命令的位置添加到系统变量中的路径:
C:\Program Files (x86)\apache-maven-3.3.9\bin

【问题讨论】:

    标签: android android-studio osmdroid jcenter


    【解决方案1】:

    Osmdroid 使用 maven。 (见https://github.com/osmdroid/osmdroid/wiki/HowToMaven

    基本上,您需要获取 maven(至少 3.2.1 版本)、maven-android-sdk-deployer (https://github.com/simpligility/maven-android-sdk-deployer) 和 osmdroid 代码。

    git clone https://github.com/simpligility/maven-android-sdk-deployer

    cd maven-android-sdk-deployer

    mvn install -fn

    构建osmdroid

    git clone https://github.com/osmdroid/osmdroid.git

    cd osmdroid

    mvn clean install

    编辑:示例应用程序有一些 gradle 支持文件,但您需要先使用 maven 构建其余的东西。 gradle 位是为了方便使用 android studio。

    编辑:如果您在 Windows 框中。试试下面的

    maven 路径

    set M2_HOME=D:\Program Files\apache-maven-3.3.3
    set PATH=%PATH%;D:\Program Files\apache-maven-3.3.3\bin
    set ANDROID_HOME=D:\whereever\android-sdk
    

    maven-android-sdk-deployer 的路径

    cd D:\...\maven-android-sdk-deployer
    

    运行部署器

    mvn install -fn
    

    构建osmdroid

    cd D:\...\osmdroid
    mvn clean install`
    

    另一种选择:

    我最近刚刚推送了一些 gradle 支持文件以及 gradle 包装器。它目前只构建了最低限度,但它可能会让你继续前进。

    git clone https://github.com/osmdroid/osmdroid.git

    cd osmdroid

    gradlew build

    【讨论】:

    • 感谢您的回复。我现在已经从github.com/simpligility/maven-android-sdk-deployer 克隆了。然后我得到error 'mvn' is not a recognized as an internal or external command. 我添加了系统环境变量ANDROID_HOME(指向SDK)和M2_HOME(指向我克隆的地方),但这没有帮助。接下来是什么? (Windows 7,顺便说一句)
    • 进度...见上面的编辑2...你知道现在出了什么问题吗?
    • 错误的目录。需要与 pom 位于同一目录中
    • M2_HOME 的值?如果我将它设置为 pom.xml 的目录,我会得到“请设置 M2_HOME 变量以匹配 Maven 安装的位置”
    • M2 是您将 maven 解压缩到的位置。工作目录需要是部署 maven sdk 的位置
    【解决方案2】:

    SDK 库(包括 com.android.support:appcompat)在 JCenter(或任何其他存储库)中不可用,在 ver7 和 ver4 中不可用。它们是 SDK 的一部分,需要预先安装。请参阅this official doc 了解更多信息。

    【讨论】:

      猜你喜欢
      • 2017-12-02
      • 1970-01-01
      • 2015-11-15
      • 1970-01-01
      • 2021-10-19
      • 2016-09-21
      • 2016-06-24
      • 2021-06-27
      • 1970-01-01
      相关资源
      最近更新 更多