choco-solver
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.choco-solver</groupId> <artifactId>choco-solver</artifactId> <version>4.10.17</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- This file is part of choco-solver, http://choco-solver.org/ Copyright (c) 2024, 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.choco-solver</groupId> <artifactId>choco</artifactId> <version>4.10.17</version> </parent> <artifactId>choco-solver</artifactId> <packaging>jar</packaging> <name>choco-solver</name> <description>Open-source constraint solver. </description> <properties> <main_dir>.${file.separator}..</main_dir> </properties> <dependencies> <dependency> <groupId>dk.brics.automaton</groupId> <artifactId>automaton</artifactId> <version>1.11-8</version> </dependency> <dependency> <groupId>org.jgrapht</groupId> <artifactId>jgrapht-core</artifactId> <version>1.4.0</version> </dependency> <dependency> <groupId>org.knowm.xchart</groupId> <artifactId>xchart</artifactId> <version>3.8.3</version> </dependency> <dependency> <groupId>org.ehcache</groupId> <artifactId>sizeof</artifactId> <version>0.4.3</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>2.0.5</version> <scope>test</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> jar-with-dependencies </descriptorRefs> </configuration> </execution> </executions> </plugin> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-shade-plugin</artifactId>--> <!-- <version>3.3.0</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>package</phase>--> <!-- <goals>--> <!-- <goal>shade</goal>--> <!-- </goals>--> <!-- <configuration>--> <!-- <minimizeJar>true</minimizeJar>--> <!-- <shadedArtifactAttached>true</shadedArtifactAttached>--> <!-- <shadedClassifierName>light</shadedClassifierName>--> <!-- <filters>--> <!-- <filter>--> <!-- <artifact>org.apache.pdfbox:pdfbox</artifact>--> <!-- <excludes>--> <!-- <exclude>org/apache/pdfbox/**</exclude>--> <!-- </excludes>--> <!-- </filter>--> <!-- <filter>--> <!-- <artifact>org.apache.fontbox:fontbox</artifact>--> <!-- <excludes>--> <!-- <exclude>org/apache/fontbox/**</exclude>--> <!-- </excludes>--> <!-- </filter>--> <!-- </filters>--> <!-- </configuration>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> <configuration> <!--suppress UnresolvedMavenProperty --> <argLine>${argLine} -Xms384m -Xmx768m -Djava.library.path=/usr/local/lib</argLine> <properties> <property> <name>listener</name> <value> org.chocosolver.util.CustomListener </value> </property> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>16</source> <target>16</target> </configuration> </plugin> </plugins> </build> </project>