split
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.btrplace</groupId>
<artifactId>split</artifactId>
<version>1.12.11</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2023 The BtrPlace Authors. All rights reserved.
~ Use of this source code is governed by a LGPL-style
~ license that can be found in the LICENSE.txt file.
-->
<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">
<parent>
<artifactId>scheduler</artifactId>
<groupId>org.btrplace</groupId>
<version>1.12.11</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>split</artifactId>
<name>scheduler-split</name>
<description>
Instance solvers that split a single problem into smaller parts
to solve them in parallel.
</description>
<properties>
<sonar.skip>true</sonar.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.btrplace</groupId>
<artifactId>scheduler-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.btrplace</groupId>
<artifactId>scheduler-choco</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.btrplace.scheduler.split</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>