У меня есть проект maven3 multimodule, и по какой-то странной причине мне нужно настроить имя файла POM для одного из моего дочернего модуля (то есть: module-pom.xml)
Можно ли настроить это в родительском pom?
Странная причина - немного объяснить объяснение, но у вас будет простой контекст.
Контекст
-
Я работаю над проектом с закрытым исходным кодом, который также использует проекты LGPLed. этот проект называется
main
-
Я хочу, чтобы
main
объявлял модули всех проектов, закрытых и открытых. Полная сборка должна быть выполнена с помощью уникальной командыmvn clean package
. -
Внутри проекта реактора
main
у меня есть проектlgpl-reactor
с несколькими модулями, содержащий 3 модуля LGPL (API, Plugins и Distribution). У некоторых разработчиков будет доступ только кlgpl-reactor
, поэтому я также хочу, чтобы этот проект строился из своей папки с помощью командыmvn clean package
, как полностью автономный проект. -
У меня также есть проект
main-dist
, который является проектом только для maven-assembly-plugin (для создания дистрибутива).
Проблема
-
Если я добавляю родительскую ссылку на
lgpl-reactor
pom.xml, глобальная сборкаmain
работает отлично, а сборка, созданнаяmain-dist
, действительна, но автономная сборка lgpl-реактора терпит неудачу (основной pom.xml не найден). -
Если я удаляю родительскую ссылку из
lgpl-reactor
pom.xml, выполняется автономная компоновкаlgpl-reactor
, но сборка, созданнаяmain-dist
, НЕ является допустимой (отсутствует.
Как это решить?
-
используйте другой модуль модуля POM-pom.xml для объявления
lgpl-reactor
модуля внутри списка объявлений модулейmain
. При выполнении полной сборки из проектаmain
module-pom.xml
содержит ссылку на родительский POM и работает правильно. -
используйте стандартный файл POM pom.xml для автономной сборки
lgpl-reactor
. Этот POM вряд ли может ссылаться на родительский pom с свойствомrelativePath
тега<parent>
Но КАК я могу это сделать? если возможно? Или есть ли лучшее решение?
Справочник проекта основного реактора
lgpl-lib [LGPL Library]
lgpl-ext [LGPL Reactor Project]
closed-core [Closed source module]
closed-spring [Closed source module]
closed-web [Closed source module]
closed-webserver [Closed source module]
main-dist [Main assembly module]
pom.xml [Main Reactor POM]
Справочник проекта LGPL Reactor
lgpl-api [LGPL API module]
lgpl-plugins [LGPL Plugins module]
lgpl-ext-dist [LGPL assembly module]
main-pom.xml [Main Reactor POM, copy of main pom.xml]
pom.xml [Standalone LGPL Reactor POM]
module-pom.xml [Module LGPL Reactor POM]
Основной реактор POM (pom.xml и lgpl-reactor/main-pom.xml)
...
<modelVersion>4.0.0</modelVersion>
<groupId>main.group</groupId>
<artifactId>main</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Main</name>
<packaging>pom</packaging>
...
<modules>
<module>closed-core</module>
<module>closed-web</module>
<module>closed-webserver</module>
<module>closed-spring</module>
<module>lgpl-reactor</module>
<module>lgpl-lib</module>
<module>main-dist</module>
</modules>
...
LGPL реактор /pom.xml
...
<modelVersion>4.0.0</modelVersion>
<artifactId>lgpl-reactor</artifactId>
<name>LGPL Reactor</name>
<packaging>pom</packaging>
<parent>
<groupId>main.group</groupId>
<artifactId>main</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>main-pom.xml</relativePath>
</parent>
...
...
<modules>
<module>lgpl-api</module>
<module>lgpl-plugins</module>
<module>lgpl-ext-dist</module>
</modules>
...
pom.xml main-dist
<project>
<parent>
<groupId>main.group</groupId>
<artifactId>main</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>main-dist</artifactId>
<packaging>pom</packaging>
<description>Main Distribution</description>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>plugins-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>closed</groupId>
<artifactId>closed-webserver</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>closed</groupId>
<artifactId>closed-api</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
assembly.xml main-dist
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>plugins-assembly</id>
<formats>
<format>dir</format>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>../closed-webserver/conf</directory>
<outputDirectory>conf</outputDirectory>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<excludes><exclude>main.group:closed-webserver</exclude></excludes>
<outputDirectory>lib</outputDirectory>
</dependencySet>
</dependencySets>
<moduleSets>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<includes>
<include>main.group:closed-webserver</include>
</includes>
<binaries>
<outputFileNameMapping>${module.artifactId}${dashClassifier?}.${module.extension}</outputFileNameMapping>
<unpack>false</unpack>
<includeDependencies>false</includeDependencies>
</binaries>
</moduleSet>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<includes>
<include>main.group:closed-spring</include>
</includes>
<binaries>
<outputFileNameMapping>${module.artifactId}${dashClassifier?}.${module.extension}</outputFileNameMapping>
<unpack>false</unpack>
<includeDependencies>false</includeDependencies>
</binaries>
</moduleSet>
<moduleSet>
<useAllReactorProjects>true</useAllReactorProjects>
<includes>
<include>main.group:lgpl-ext-dist</include>
</includes>
<binaries>
<outputDirectory>plugins</outputDirectory>
<unpack>false</unpack>
<includeDependencies>true</includeDependencies>
</binaries>
</moduleSet>
</moduleSets>
</assembly>