| <?xml version="1.0" encoding="UTF-8"?> |
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-quickstarts-parent</artifactId> |
| <version>9.37.0-SNAPSHOT</version> |
| <relativePath>../../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>optaplanner-distribution</artifactId> |
| <packaging>pom</packaging> |
| <name>OptaPlanner Distribution</name> |
| <description>This module builds the download zip.</description> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-distribution-internal</artifactId> |
| <version>${project.version}</version> |
| <type>zip</type> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <descriptors> |
| <descriptor>src/main/assembly/assembly-optaplanner-quickstarts.xml</descriptor> |
| </descriptors> |
| <appendAssemblyId>false</appendAssemblyId> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.optaplanner</groupId> |
| <artifactId>optaplanner-distribution-internal</artifactId> |
| <type>zip</type> |
| </dependency> |
| </dependencies> |
| |
| </project> |