Плагин Maven RPM: разный контент для CentOS 6.5 и 5.6

Я использовал rpm-maven-plugin для генерации RPM для установки на CentOS 6.5. Теперь мне нужно расширить его, чтобы упаковать RPM с двоичными файлами, скомпилированными в CentOS 5.6. Моя машина для разработки - OSX, и я хотел бы иметь возможность протестировать RPM-поколение для CentOS 6.5 и 5.6 на нем. Это означает, что я должен быть в состоянии передать целевую ОС в качестве параметра командной строки. Есть идеи, как это сделать?

Я просмотрел документацию плагина и мне кажется, что мне нужно использовать фильтр, но нигде не могу найти, как определить значение этого классификатора для CentOS 5.6 и 6.5.

Спасибо!

1 ответ

Решение

В итоге я создал два отдельных исполнения maven-rpm-plugin: одно - для CentOS 6.5 и одно - для CentOS 5.6. Я также отключил автоматическую загрузку RPM в репозиторий Maven во время процесса выпуска, потому что оба RPM имели одно и то же имя. Я отключил загрузку, добавив -Dmaven.deploy.skip=true в раздел maven-release-plugin.

Вот соответствующая выдержка из моего pom.xml (может быть выполнена с mvn package):

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>rpm-maven-plugin</artifactId>
                <version>2.2.0</version>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5.2</version>
                <configuration>
                    <arguments>-Dmaven.deploy.skip=true</arguments>
                    <preparationGoals>clean install</preparationGoals>
                    <pushChanges>false</pushChanges>
                    <localCheckout>true</localCheckout>
                    <!--Disable deployment at the end because CentOS 5.6 and 6.5 profile artifacts will collide-->
                    <goals></goals>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>

    <plugins>

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>rpm-maven-plugin</artifactId>
            <executions>
                <execution>
                    <id>CentOS-5.6</id>
                    <goals>
                        <goal>attached-rpm</goal>
                    </goals>
                    <configuration>
                        <name>${rpmName}</name>
                        <needarch>x86_64</needarch>
                        <workarea>target/rpm/centos-5.6</workarea>
                        <group>CollectD</group>
                        <defaultDirmode>755</defaultDirmode>
                        <defaultFilemode>755</defaultFilemode>
                        <defaultUsername>root</defaultUsername>
                        <defaultGroupname>root</defaultGroupname>
                        <mappings>
                            <!-- Root directory -->
                            <mapping>
                                <directory>${installDir}</directory>
                                <directoryIncluded>true</directoryIncluded>
                                <sources>
                                    <source>
                                        <location>${project.build.directory}/classes/centos-5.6/collectd</location>
                                        <excludes>
                                            <exclude>etc/*</exclude>
                                        </excludes>
                                    </source>
                                </sources>
                            </mapping>
                            <!-- Overwrite configurations with the right file permissions -->
                            <mapping>
                                <directory>${installDir}/etc</directory>
                                <directoryIncluded>false</directoryIncluded>
                                <configuration>true</configuration>
                                <sources>
                                    <source>
                                        <location>${project.build.directory}/classes/centos-5.6/collectd/etc</location>
                                    </source>
                                </sources>
                                <filemode>644</filemode>
                            </mapping>
                            <!-- local output directories for logging and so on -->
                            <mapping>
                                <directory>${installDir}/var/log</directory>
                                <directoryIncluded>true</directoryIncluded>
                            </mapping>
                            <mapping>
                                <directory>${installDir}/var/lib</directory>
                                <directoryIncluded>true</directoryIncluded>
                            </mapping>
                            <mapping>
                                <directory>${installDir}/var/run</directory>
                                <directoryIncluded>true</directoryIncluded>
                            </mapping>
                            <!-- collectd service startup script -->
                            <mapping>
                                <directory>/etc/init.d</directory>
                                <directoryIncluded>false</directoryIncluded>
                                <sources>
                                    <source>
                                        <location>${project.build.directory}/classes/centos-common/init.d/collectd</location>
                                    </source>
                                </sources>
                            </mapping>
                        </mappings>
                    </configuration>
                </execution>
                <execution>
                    <id>CentOS-6.5</id>
                    <goals>
                        <goal>attached-rpm</goal>
                    </goals>

                    <configuration>
                        <name>${rpmName}</name>
                        <needarch>x86_64</needarch>
                        <workarea>target/rpm/centos-6.5</workarea>
                        <group>CollectD</group>
                        <defaultDirmode>755</defaultDirmode>
                        <defaultFilemode>755</defaultFilemode>
                        <defaultUsername>root</defaultUsername>
                        <defaultGroupname>root</defaultGroupname>
                        <mappings>
                            <!-- Root directory -->
                            <mapping>
                                <directory>${installDir}</directory>
                                <directoryIncluded>true</directoryIncluded>
                                <sources>
                                    <source>
                                        <location>${project.build.directory}/classes/centos-6.5/collectd</location>
                                        <excludes>
                                            <exclude>etc/*</exclude>
                                        </excludes>
                                    </source>
                                </sources>
                            </mapping>
                            <!-- Overwrite configurations with the right file permissions -->
                            <mapping>
                                <directory>${installDir}/etc</directory>
                                <directoryIncluded>false</directoryIncluded>
                                <configuration>true</configuration>
                                <sources>
                                    <source>
                                        <location>${project.build.directory}/classes/centos-6.5/collectd/etc</location>
                                    </source>
                                </sources>
                                <filemode>644</filemode>
                            </mapping>
                            <!-- local output directories for logging and so on -->
                            <mapping>
                                <directory>${installDir}/var/log</directory>
                                <directoryIncluded>true</directoryIncluded>
                            </mapping>
                            <mapping>
                                <directory>${installDir}/var/lib</directory>
                                <directoryIncluded>true</directoryIncluded>
                            </mapping>
                            <mapping>
                                <directory>${installDir}/var/run</directory>
                                <directoryIncluded>true</directoryIncluded>
                            </mapping>
                            <!-- collectd service startup script -->
                            <mapping>
                                <directory>/etc/init.d</directory>
                                <directoryIncluded>false</directoryIncluded>
                                <sources>
                                    <source>
                                        <location>${project.build.directory}/classes/centos-common/init.d/collectd</location>
                                    </source>
                                </sources>
                            </mapping>
                        </mappings>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
Другие вопросы по тегам