opendss-jvm-executor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.zepben</groupId>
<artifactId>opendss-jvm-executor</artifactId>
<version>0.1.0-SNAPSHOT1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>com.zepben.maven</groupId>
<artifactId>evolve-super-pom</artifactId>
<version>0.36.4</version>
</parent>
<groupId>com.zepben</groupId>
<artifactId>opendss-jvm-executor</artifactId>
<version>0.1.0-SNAPSHOT1</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>SDK for interaction with the evolve platform</description>
<url>https://github.com/zepben/opendss-jvm-executor/</url>
<organization>
<name>Zeppelin Bend Pty Ltd.</name>
<url>https://zepben.com</url>
</organization>
<licenses>
<license>
<name>Mozilla Public License v2.0</name>
<url>https://mozilla.org/MPL/2.0/</url>
</license>
</licenses>
<developers>
<developer>
<name>Anthony Charlton</name>
<email>anthony.charlton@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Glenn Carwardine</name>
<email>glenn.carwardine@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Kurt Greaves</name>
<email>kurt.greaves@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
<developer>
<name>Marcus Koh</name>
<email>marcus.koh@zepben.com</email>
<organization>Zeppelin Bend</organization>
<organizationUrl>https://zepben.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/zepben/opendss-jvm-executor.git</connection>
<developerConnection>scm:git:ssh://github.com/zepben/opendss-jvm-executor.git</developerConnection>
<url>https://github.com/zepben/opendss-jvm-executor</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Kotlin -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-json</artifactId>
</dependency>
<!-- Test deps -->
<dependency>
<groupId>com.zepben</groupId>
<artifactId>test-utils</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<!--suppress MavenModelInspection -->
<artifactId>kotlin-maven-plugin</artifactId>
<configuration>
<apiVersion>${kotlin.language.version}</apiVersion>
<languageVersion>${kotlin.language.version}</languageVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>