scheduler-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.btrplace</groupId> <artifactId>scheduler-api</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.btrplace</groupId> <artifactId>scheduler</artifactId> <version>1.12.11</version> </parent> <name>scheduler-api</name> <artifactId>scheduler-api</artifactId> <description>Core components for a scheduler</description> <dependencies> <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.api</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>