maestro
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.into-cps.maestro</groupId> <artifactId>maestro</artifactId> <version>4.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.into-cps.maestro</groupId> <artifactId>root</artifactId> <version>4.0.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>maestro</artifactId> <name>Maestro</name> <dependencies> <!-- https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.into-cps.verification</groupId> <artifactId>scenario_verifier</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>4.6.1</version> </dependency> <dependency> <groupId>org.into-cps.maestro</groupId> <artifactId>parser</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.into-cps.maestro</groupId> <artifactId>typechecker</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>demo</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>fixedstep</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>sigver</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>jacobianstepbuilder</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>typeconverter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>initializer</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.into-cps.maestro.plugins</groupId> <artifactId>debuglogging</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.into-cps.maestro</groupId> <artifactId>interpreter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.googlecode.java-diff-utils</groupId> <artifactId>diffutils</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.into-cps.maestro.frameworks</groupId> <artifactId>fmi2</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.into-cps.maestro.codegen</groupId> <artifactId>mabl2cpp</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jgrapht</groupId> <artifactId>jgrapht-core</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>org.into-cps.maestro.frameworks</groupId> <artifactId>fmi2api-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-generator</artifactId> <version>4.31.1</version> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jackson</artifactId> <version>4.31.1</version> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jakarta-validation</artifactId> <version>4.31.1</version> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>3.0.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/maestro.properties</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>**/maestro.properties</exclude> </excludes> </resource> </resources> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.intocps.maestro.Main</mainClass> </manifest> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>