为 Liferay 手动创建可部署的 JAR

Manually creating a deployable JAR for Liferay

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

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

所以我从头开始为

创建了一些 POM
  1. 主题
  2. TemplateContextContributor 模块

首先,我将介绍主题的机制,该机制已经在运行:

该包装器使用 maven-war-插件将先前构建的 gradle 工件所在的 build/-folder 的内容捆绑到 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 不部署它的原因。日志显示 "processing module xxx ....",但它永远不会结束,并且该模块在 Liferay 中不起作用。

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

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

我不确定您为什么要为模板上下文贡献者手动构建 Maven 包装器。 Liferay (blade) samples are available for Liferay-workspace, pure Gradle as well as for Maven. I'd just go with the standard 不用担心重新发明轮子。

为了使这个答案独立:Template Context Contributor 插件中列出的 current 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>