在尝试使用pom.xml
安装功能部件时出现构建失败。
WSO2 API管理器2.6.0。
已安装最新版本的apache maven和ant。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.sample</groupId>
<artifactId>sample-feature-installation</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>New feature</name>
<url>http://wso2.org</url>
<build>
<plugins>
<plugin>
<groupId>org.wso2.maven</groupId>
<artifactId>carbon-p2-plugin</artifactId>
<version>1.5.4</version>
<executions>
<execution>
<id>feature-install</id>
<phase>package</phase>
<goals>
<goal>p2-profile-gen</goal>
</goals>
<configuration>
<profile>default</profile>
<metadataRepository>http://product-dist.wso2.com/p2/carbon/releases/wilkes/</metadataRepository>
<artifactRepository>http://product-dist.wso2.com/p2/carbon/releases/wilkes/</artifactRepository>
<destination>wso2am-2.6.0/repository/components</destination>
<deleteOldProfileFiles>false</deleteOldProfileFiles>
<features>
<feature>
<id>org.wso2.carbon.hl7.feature.group</id>
<version>4.6.6</version>
</feature>
</features>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<tasks>
<replace token="false" value="true" dir="wso2am-2.6.0/wso2/components/default/configuration/org.eclipse.equinox.simpleconfigurator">
<include name="**/bundles.info"/>
</replace>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>wso2-nexus</id>
<name>WSO2 internal Repository</name>
<url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
<checksumPolicy>ignore</checksumPolicy>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>wso2-maven-releases-repository</id>
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url>
</pluginRepository>
<pluginRepository>
<id>wso2-maven-snapshots-repository</id>
<url>http://maven.wso2.org/nexus/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
</project>
[错误]无法在项目sample-feature-installation上执行目标org.wso2.maven:carbon-p2-plugin:1.5.4:p2-profile-gen(功能安装):P2发布者返回代码为13 -> [帮助1] org.apache.maven.lifecycle.LifecycleExecutionException:无法在项目样本功能安装上执行目标org.wso2.maven:carbon-p2-plugin:1.5.4:p2-profile-gen(功能安装):P2发布者返回码是13 在org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215) 在org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:156) 在org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:148) 在org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117) 在org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:81) 在org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:56)
[错误] [帮助1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException