xml 修改和更新教程,描述如何使用Maven插件进行Apache UIMA PEAR打包。这是完整版
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 修改和更新教程,描述如何使用Maven插件进行Apache UIMA PEAR打包。这是完整版相关的知识,希望对你有一定的参考价值。
<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>com.mariodiana.uima</groupId>
<artifactId>hello-pear</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>HelloPear</name>
<description>A simple example for creating a UIMA PEAR file using the maven-pear plugin.</description>
<url>http://www.mariodiana.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!-- Adapted from: http://www.annolab.org/pearpackaging.html -->
<parent>
<groupId>com.mariodiana.uima.pear</groupId>
<artifactId>uima-pears</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- Assuming the parent POM is in the parent directory of our POM. -->
<relativePath>../uima-pears/pom.xml</relativePath>
</parent>
<dependencies>
<!-- Apache UIMA. -->
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
<version>2.2.0</version>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.uima</groupId>
<artifactId>PearPackagingMavenPlugin</artifactId>
<version>2.8.1</version>
<extensions>true</extensions>
<executions>
<execution>
<phase>package</phase>
<configuration>
<classpath>
$main_root/lib/uima-util.jar;$main_root/lib/julie-typesystem.jar
</classpath>
<mainComponentDesc>desc/${project.artifactId}.xml</mainComponentDesc>
<componentId>${project.artifactId}</componentId>
</configuration>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
以上是关于xml 修改和更新教程,描述如何使用Maven插件进行Apache UIMA PEAR打包。这是完整版的主要内容,如果未能解决你的问题,请参考以下文章
在 pom.xml 中使用 Apache CXF Codegen 插件时出错。尝试更新 maven 时执行标记中出错。如何解决这个问题?
maven-jetty插件配置时,webdefault.xml的取得和修改
Maven教程3(依赖管理)
修改Maven本地资源库位置
Maven 发布插件 git 凭据
如何在 maven pom.xml 中正确定义插件版本?