98 lines
3.1 KiB
XML
98 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-project</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>website</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>stdlib</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.pegdown</groupId>
|
|
<artifactId>pegdown</artifactId>
|
|
<version>${pegdown.version}</version>
|
|
</dependency>
|
|
<!-- add the kdoc dependency for generating kdoc -->
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kdoc</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- TODO not sure why we have to list transitive dependendcies on compiler... -->
|
|
<dependency>
|
|
<groupId>asm</groupId>
|
|
<artifactId>asm-util</artifactId>
|
|
<version>3.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>asm</groupId>
|
|
<artifactId>asm-commons</artifactId>
|
|
<version>3.3</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.goldin.plugins</groupId>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
<version>1.3</version>
|
|
</extension>
|
|
<extension>
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
<artifactId>maven-scm-manager-plexus</artifactId>
|
|
<version>1.3</version>
|
|
</extension>
|
|
<extension>
|
|
<groupId>org.kathrynhuxtable.maven.wagon</groupId>
|
|
<artifactId>wagon-gitsite</artifactId>
|
|
<version>0.3.1</version>
|
|
</extension>
|
|
</extensions>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<!--
|
|
To deploy this add this to your ~/.m2/settings.xml
|
|
|
|
<server>
|
|
<id>github-project-site</id>
|
|
<username>git</username>
|
|
</server>
|
|
-->
|
|
|
|
<site>
|
|
<id>github-project-site</id>
|
|
<url>gitsite:git@github.com/JetBrains/kotlin.git</url>
|
|
</site>
|
|
</distributionManagement>
|
|
</project>
|