choco-solver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.choco-solver</groupId>
<artifactId>choco-solver</artifactId>
<version>6.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of choco-solver, http://choco-solver.org/
Copyright (c) 1999, IMT Atlantique.
SPDX-License-Identifier: BSD-3-Clause.
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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.choco-solver</groupId>
<artifactId>choco</artifactId>
<version>6.0.0</version>
</parent>
<!--suppress MavenRedundantGroupId -->
<groupId>org.choco-solver</groupId>
<artifactId>choco-solver</artifactId>
<version>6.0.0</version>
<packaging>jar</packaging>
<name>choco-solver</name>
<description>Open-source constraint solver.
</description>
<properties>
<automaton.version>1.11-8</automaton.version>
<jgrapht.core.version>1.5.3</jgrapht.core.version>
<sizeof.version>0.4.4</sizeof.version>
<slf4j.nop.version>2.0.5</slf4j.nop.version>
<main_dir>.${file.separator}..</main_dir>
</properties>
<dependencies>
<dependency>
<groupId>dk.brics.automaton</groupId>
<artifactId>automaton</artifactId>
<version>${automaton.version}</version>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>${jgrapht.core.version}</version>
</dependency>
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>sizeof</artifactId>
<version>${sizeof.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>${slf4j.nop.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven.assembly.plugin.version}</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
jar-with-dependencies
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
<configuration>
<properties>
<property>
<name>listener</name>
<value>
org.chocosolver.util.CustomListener
</value>
</property>
</properties>
</configuration>
</plugin>
</plugins>
</build>
</project>