Skip to content

Instantly share code, notes, and snippets.

@pambrose
Last active July 16, 2022 21:25
Show Gist options
  • Save pambrose/ecf7021f5e3abc785a81bed3241a2b2b to your computer and use it in GitHub Desktop.
Save pambrose/ecf7021f5e3abc785a81bed3241a2b2b to your computer and use it in GitHub Desktop.
kslides-maven pom.xml
<?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>
<artifactId>kslides-maven</artifactId>
<groupId>org.example</groupId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>kslides-maven</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
</properties>
<repositories>
<repository>
<id>mavenCentral</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>kscience</id>
<url>https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io/</url>
</repository>
</repositories>
<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>1.7.10</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<mainClass>MainKt</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.kslides.kslides</groupId>
<artifactId>kslides-core</artifactId>
<version>0.11.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-html-jvm</artifactId>
<version>0.7.5</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin-wrappers</groupId>
<artifactId>kotlin-css</artifactId>
<version>1.0.0-pre.347</version>
</dependency>
<dependency>
<groupId>com.github.pambrose</groupId>
<artifactId>srcref</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>space.kscience</groupId>
<artifactId>plotlykt-core</artifactId>
<version>0.5.2-dev-2</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment