gpt4 book ai didi

java - 带有 maven 和无法解析的构建扩展的 Android : Plugin com. jayway.maven.plugins.android.generation2 :android-maven-plugin:3. 9.0-rc.3

转载 作者:行者123 更新时间:2023-11-30 01:16:08 27 4
gpt4 key购买 nike

我正在 Eclipse IDE 中的 Maven 上为 Android 项目创建 POM 文件。我还修改了 settings.xml 文件中的代理设置。我在命令提示符下收到两个错误:1)

Project build error: Unresolveable build extension: Plugin 
com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.9.0-rc.3 or one of its dependencies
could not be resolved: The following artifacts could not be resolved:
com.jayway.maven.plugins.android.generation2:android-maven-plugin:jar:3.9.0-rc.3,
com.google.guava:guava:jar:13.0.1, com.android.tools:sdklib:jar:22.4.2, org.apache.commons:commons-
compress:jar:1.0, com.android.tools.build:builder:jar:0.7.3, org.bouncycastle:bcpkix-jdk15on:jar:1.48,
net.sf.kxml:kxml2:jar:2.3.0, com.android.tools.ddms:ddmlib:jar:22.4.2, com.android.tools.lint:lint:jar:22.4.2,
org.codehaus.plexus:plexus-interpolation:jar:1.14, org.sonatype.sisu:sisu-guice:jar:3.1.0,
org.sonatype.sisu.inject:guice-bean-locators:jar:2.3.0, javax.enterprise:cdi-api:jar:1.0,
org.sonatype.sisu.inject:guice-plexus-locators:jar:2.3.0: Failure to transfer
com.jayway.maven.plugins.android.generation2:android-maven-plugin:jar:3.9.0-rc.3 from http://
repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the
update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact
com.jayway.maven.plugins.android.generation2:android-maven-plugin:jar:3.9.0-rc.3 from/to central (http://
repo1.maven.org/maven2): No response received after 60000

和 2)

Project build error: Unknown packaging: apk

对于第二个错误,我尝试了Android with maven? Apk上的提示。未知,但无济于事。这是我的 pom 文件:

<?xml version="1.0" encoding="utf-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0">
<parent>
<artifactId>verification-samples-android</artifactId>
<groupId>com.neurotec.samples</groupId>
<version>9.0.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>face-verification-sample-android</artifactId>
<packaging>apk</packaging>
<name>FaceVerification Sample</name>
<build>
<finalName>face-verification-sample</finalName>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target
name="copy and rename file">
<copy
file="${product.bin.data.directory}/FacesDetectSegmentsFeaturePointsDetect.ndf"
tofile="${project.asset.data.directory}/FacesDetectSegmentsFeaturePointsDetect.ndf.jet" />
<copy
file="${product.bin.data.directory}/FacesDetectSegmentsFeaturePointsTrack.ndf"
tofile="${project.asset.data.directory}/FacesDetectSegmentsFeaturePointsTrack.ndf.jet" />
<copy
file="${product.bin.data.directory}/FacesDetectSegmentsLiveness.ndf"
tofile="${project.asset.data.directory}/FacesDetectSegmentsLiveness.ndf.jet" />
<copy
file="${product.bin.data.directory}/FacesCreateTemplateSmall.ndf"
tofile="${project.asset.data.directory}/FacesCreateTemplateSmall.ndf.jet" />
<copy
file="${product.bin.data.directory}/FacesCreateTemplateMedium.ndf"
tofile="${project.asset.data.directory}/FacesCreateTemplateMedium.ndf.jet" />
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-native-libraries</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<overwrite>true</overwrite>
<outputDirectory>${basedir}/libs</outputDirectory>
<resources>
<resource>
<directory>${product.lib.android.directory}</directory>
<includes>
<include>**/libjnidispatch.so</include>
<include>**/libNCore.so</include>
<include>**/libNLicensing.so</include>
<include>**/libNBiometricClient.so</include>
<include>**/libNBiometrics.so</include>
<include>**/libNDevices.so</include>
<include>**/libNFaceVerification.so</include>
<include>**/libNGui.so</include>
<include>**/libNMedia.so</include>
<include>**/libNMediaProc.so</include>
<include>**/libopenblas.so</include>
</includes>
<excludes>
<exclude>armeabi/**</exclude>
<exclude>x86_64/**</exclude>
</excludes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>standalone</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>${product.bin.directory}</outputDirectory>
<finalName>Android</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/standalone.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-core-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-biometrics-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-media-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-media-processing-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-biometrics-client-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-face-verification-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-face-verification-gui-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-devices-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-devices-media-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-biometrics-gui-android</artifactId>
</dependency>
<dependency>
<groupId>com.neurotec</groupId>
<artifactId>neurotec-gui-android</artifactId>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
</dependency>
</dependencies>
<properties>
<product.root.directory>${basedir}/../../../..</product.root.directory>
<project.asset.data.directory>${project.build.directory}/generated-sources/combined-assets/data</project.asset.data.directory>
</properties>
</project>

我非常感谢您的建议和意见。此外,我正在使用以下版本的 maven 和 java:

最佳答案

运行命令

mvn eclipse:eclipse

确保 eclipse 可以看到库。这意味着转到 eclipse 中的 projectsetup/buildpath/libraries 编辑器并添加变量 M2_REPO 以指向本地 Maven 存储库(例如 /home/nacho3d/.m2/repository)

实际上,在我看来,您的错误就像是 maven 无法找到 android-maven-plugin 的依赖项。

如果不行,那么你需要设置代理:Configuring a proxy

Setting.xml文件位置

settings.xml 文件可能位于两个位置:

The Maven install: $M2_HOME/conf/settings.xml

A user's install: ${user.home}/.m2/settings.xml

关于java - 带有 maven 和无法解析的构建扩展的 Android : Plugin com. jayway.maven.plugins.android.generation2 :android-maven-plugin:3. 9.0-rc.3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37850526/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com