Skip to content

Instantly share code, notes, and snippets.

@nvisser

nvisser/pom.xml Secret

Last active April 16, 2019 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nvisser/c8d85bb87cdbfa09bbdeabd266c99641 to your computer and use it in GitHub Desktop.
Save nvisser/c8d85bb87cdbfa09bbdeabd266c99641 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<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>net.rizon</groupId>
<artifactId>moo</artifactId>
<version>3.0</version>
</parent>
<name>Youtube Kotlin</name>
<groupId>net.rizon.moo</groupId>
<artifactId>youtube-kotlin</artifactId>
<properties>
<kotlin.version>1.3.30</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>net.rizon.moo</groupId>
<artifactId>moo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>net.rizon.acid.plugins.kottube.YouTube</mainClass>
</manifest>
<manifestEntries>
<Export-Base>net.rizon.acid.plugins.kottube.</Export-Base>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment