1

我创建了一个 gradle 格式的 liferay 工作区,它基本上只包含一个主题和一个 TemplateContextContributor 模块。

现在我想围绕这两个工件构建一个 maven“包装器”,以使它们与其他一些 maven-processes/-plugins 兼容,同时保持原始的 gradle 结构。我不想使用 liferay-maven-plugin 或 maven-tools 来构建这些工件,因为例如在编译 scss 时,它的行为似乎与 gradle/gulp 工具集不同。

所以我从头开始创建了一些 POM

  1. 主题
  2. TemplateContextContributor-模块

首先,我将介绍已经在工作的主题机制:

该包装器使用 maven-war-plugin 将先前构建的 gradle 工件所在的 build/- 文件夹的内容捆绑到一个 WAR 文件中,Liferay 可以毫无问题地部署该文件。

主题 pom.xml:

<properties>
    <src.dir>src</src.dir>
    <com.liferay.portal.tools.theme.builder.outputDir>build</com.liferay.portal.tools.theme.builder.outputDir>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

[...]

<plugin>
    <artifactId>maven-war-plugin</artifactId>
    <version>3.0.0</version>
    <configuration>
        <webResources>
            <resource>
                <directory>${com.liferay.portal.tools.theme.builder.outputDir}</directory>
                <excludes>
                    <exclude>**/*.sass-cache/</exclude>
                </excludes>
            </resource>
        </webResources>
    </configuration>
</plugin>

但是,我在为模块内容创建与 OSGI 兼容的 JAR 文件时遇到了困难。似乎只有 META-INF/MANIFEST.MF 不包含正确的信息,而且我似乎无法以 Liferay(或 OSGI)理解的方式生成它。

这是我尝试过的模块 pom.xml 依赖项和插件:

<dependency>
    <groupId>org.apache.felix</groupId>
    <artifactId>org.apache.felix.scr.ds-annotations</artifactId>
    <version>1.2.10</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>com.liferay</groupId>
    <artifactId>com.liferay.gradle.plugins</artifactId>
    <version>3.9.9</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>com.liferay.portal</groupId>
    <artifactId>com.liferay.portal.kernel</artifactId>
    <version>2.0.0</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>org.osgi</groupId>
    <artifactId>org.osgi.service.component.annotations</artifactId>
    <version>1.3.0</version>
    <scope>provided</scope>
</dependency>

[...]

<plugin>
    <groupId>biz.aQute.bnd</groupId>
    <artifactId>bnd-maven-plugin</artifactId>
    <version>3.3.0</version>
    <executions>
        <execution>
            <goals>
                <goal>bnd-process</goal>
            </goals>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>biz.aQute.bnd</groupId>
            <artifactId>biz.aQute.bndlib</artifactId>
            <version>3.2.0</version>
        </dependency>
        <dependency>
            <groupId>com.liferay</groupId>
            <artifactId>com.liferay.ant.bnd</artifactId>
            <version>2.0.48</version>
        </dependency>
    </dependencies>
</plugin>
<plugin>
    <groupId>org.apache.felix</groupId>
    <artifactId>maven-scr-plugin</artifactId>
    <version>1.25.0</version>
    <executions>
        <execution>
            <id>generate-scr-scrdescriptor</id>
            <goals>
                <goal>scr</goal>
            </goals>
        </execution>
    </executions>
</plugin>

我能够使用上面的方法创建一个 JAR,但它的 META-INF/MANIFEST.MF 与 gradle 构建生成的不同:

差异,左边是 liferay manifest.mf

我想这就是 Liferay 不部署它的原因。日志显示“处理模块 xxx ....”,但这永远不会结束,并且该模块在 Liferay 中不起作用。

到目前为止,这些是我尝试过的不同组合的插件:

  • Maven 构建插件
  • maven-scr-插件
  • maven-jar-插件
  • Maven 战争插件
  • maven 编译器插件

在创建 liferay 可部署模块 JAR 方面的任何帮助都会很棒。

4

1 回答 1

0

我不确定您为什么要为模板上下文贡献者手动构建一个 maven 包装器。Liferay(刀片)示例可用于 Liferay 工作区、纯 Gradle 以及 Maven。我只是遵循标准,而不用担心重新发明轮子。

为了使这个答案自包含:Template Context Contributor插件中列出的当前 pom.xml是:

<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>
    <artifactId>template-context-contributor</artifactId>
    <version>1.0.0</version>
    <packaging>jar</packaging>

    <parent>
        <groupId>blade</groupId>
        <artifactId>parent.bnd.bundle.plugin</artifactId>
        <version>1.0.0</version>
        <relativePath>../../parent.bnd.bundle.plugin</relativePath>
    </parent>

    <dependencies>
        <dependency>
            <groupId>com.liferay.portal</groupId>
            <artifactId>com.liferay.portal.kernel</artifactId>
            <version>2.0.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.portlet</groupId>
            <artifactId>portlet-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.0.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.service.component.annotations</artifactId>
            <version>1.3.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <finalName>com.liferay.blade.template.context.contributor-${project.version}</finalName>
    </build>
</project>
于 2018-05-21T10:26:37.690 回答