kotlin-js-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-js-library</artifactId> <version>1.0.7</version> </dependency>
<?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.7</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>kotlin-js-library</artifactId> <packaging>jar</packaging> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy-jar</id> <phase>package</phase> <configuration> <tasks> <copy file="${kotlin-dist}/kotlinc/lib/kotlin-jslib.jar" tofile="${basedir}/target/${project.artifactId}-${project.version}.jar" overwrite="true" verbose="true"/> <copy file="${kotlin-dist}/kotlinc/lib/kotlin-jslib-sources.jar" tofile="${basedir}/target/${project.artifactId}-${project.version}-sources.jar" overwrite="true" verbose="true"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>