examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.choco-solver</groupId>
<artifactId>examples</artifactId>
<version>5.0.0-beta.1</version>
</dependency><!--
This file is part of examples, http://choco-solver.org/
Copyright (c) 2025, IMT Atlantique. All rights reserved.
Licensed under the BSD 4-clause license.
See LICENSE file in the project root for full license information.
-->
<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>
<parent>
<groupId>org.choco-solver</groupId>
<artifactId>choco</artifactId>
<version>5.0.0-beta.1</version>
</parent>
<artifactId>examples</artifactId>
<packaging>jar</packaging>
<name>examples</name>
<description>Choco-solver in practice
</description>
<properties>
<main_dir>.${file.separator}..</main_dir>
</properties>
<dependencies>
<dependency>
<groupId>org.choco-solver</groupId>
<artifactId>choco-solver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.choco-solver</groupId>
<artifactId>choco-parsers</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>2.33</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.4.2</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
src
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>