为Liferay手动创建可部署的JAR

时间:2018-05-18 10:24:05

标签: maven gradle liferay osgi liferay-dxp

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

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

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

  1. 主题
  2. TemplateContextContributor-模块
  3. 首先,我将介绍主题的机制,该机制已经有效:

    该包装器使用maven-war-plugin将以前构建的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构建产生的不同:

    differences, left is the liferay manifest.mf

    我猜这就是为什么Liferay不会部署它。日志显示“处理模块xxx ....”,但这永远不会结束,模块在Liferay中不起作用。

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

    • 行家-集结插件
    • 行家-SCR-插件
    • 行家-JAR-插件
    • 行家-战争插件
    • 行家编译-插件

    创建liferay-deployable模块JAR的任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

我不确定为什么要为Template Context Contributor手动构建maven包装器。 Liferay (blade) samples可用于Liferay工作区,纯Gradle以及Maven。我只是go with the standard而不用担心重新发明轮子。

要使此答案自包含:模板上下文参与者插件中列出的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>