Maven: как дважды выполнить пом с разными профилями? - PullRequest
0 голосов
/ 23 октября 2018

Я хочу сделать сборку с Maven в pom, которая может быть построена с двумя различными профилями.

Другими словами, моя задача состоит в том, чтобы принудительно собрать сборку так, чтобы сборка производила две разные сборки вцелевая папка, как и я, выполнит «maven install -P» два раза.

Итак, чтобы быть более понятным:

  • один вызов
  • два разныхрезультаты, основанные на профиле, связанном в то время

Я пробовал exec-maven-plugin, но я не уверен, что это правильный путь, потому что он не делает то, что я хочу.

Как я могу это сделать?

Вот пом, я пытаюсь.Задачи:

  • копирование ресурсов из другого проекта
  • замена содержимого на основе профиля
  • Создание обоих профилей.

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>MavenDoubleInstallation</artifactId>

    <profiles>
        <profile>
            <id>profileA</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <env>profileA</env>
                <token>/path/for/profileA</token>
            </properties>
        </profile>
        <profile>
            <id>profileB</id>
            <properties>
                <env>profileB</env>
                <token>/path/for/profileB</token>
            </properties>
        </profile>
    </profiles>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>3.1.0</version>
                <configuration>
                    <includeEmptyDirs>true</includeEmptyDirs>
                </configuration>
                <executions>
                    <execution>
                        <id>copy-resources</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${basedir}/target/classes/${env}/result</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>${project.basedir}/../SourceProject/resources/result</directory>
                                    <filtering>true</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>com.google.code.maven-replacer-plugin</groupId>
                <artifactId>replacer</artifactId>
                <version>1.5.3</version>
                <executions>
                    <execution>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>replace</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <basedir>${basedir}/target/classes/${env}/result</basedir>
                    <includes>
                        <include>**/*.sh</include>
                    </includes>
                    <replacements>
                        <replacement>
                            <token>%%TOKEN%%</token>
                            <value>${token}</value>
                        </replacement>
                    </replacements>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.6.0</version>
                <executions>
                    <execution>
                        <id>build-profileA</id>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                        <configuration>
                            <executable>maven</executable>
                            <arguments>
                                <argument>-P profileA -X</argument>
                            </arguments>
                        </configuration>
                    </execution>
                    <execution>
                        <id>build-profileB</id>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                        <configuration>
                            <executable>maven</executable>
                            <arguments>
                                <argument>-P profileB -X</argument>
                            </arguments>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>

</project>
...