kotlin-simple-frontend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.decembrist</groupId> <artifactId>kotlin-simple-frontend</artifactId> <version>0.1.0</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> <groupId>org.decembrist</groupId> <artifactId>kotlin-simple-frontend</artifactId> <version>0.1.0</version> <packaging>jar</packaging> <name>kotlin-simple-frontend</name> <description>Kotlin frontend framework</description> <url>http://decembrist.org/</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <pluginRepositories> <pluginRepository> <id>jcenter</id> <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <url>https://github.com/decembrist-revolt/kotlin-simple-frontend</url> </scm> <developers> <developer> <name>Nikita Pometun</name> <email>decembrist.org@gmail.com</email> </developer> </developers> <repositories> <repository> <id>jcenter</id> <url>https://jcenter.bintray.com/</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.version>1.3.21</kotlin.version> <dokka.version>0.9.17</dokka.version> <nexus.staging.maven.plugin>1.6.8</nexus.staging.maven.plugin> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <maven.source.plugin.version>3.0.1</maven.source.plugin.version> <kotlinx.coroutines.core.js.version>1.1.1</kotlinx.coroutines.core.js.version> <kotlinx.html.js.version>0.6.11</kotlinx.html.js.version> <decembrist.jar.plugin.version>0.9.1</decembrist.jar.plugin.version> <fizzed.watcher.maven.plugin>1.0.6</fizzed.watcher.maven.plugin> </properties> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-js</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core-js</artifactId> <version>${kotlinx.coroutines.core.js.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-html-js</artifactId> <version>${kotlinx.html.js.version}</version> </dependency> </dependencies> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <plugins> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>js</goal> </goals> <configuration> <sourceMap>true</sourceMap> <!-- source map is useful for debugging in tools that support source maps --> <sourceMapEmbedSources>always</sourceMapEmbedSources> <moduleKind>umd</moduleKind> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.decembrist</groupId> <artifactId>decembrist-jar-plugin</artifactId> <version>${decembrist.jar.plugin.version}</version> <extensions>true</extensions> <configuration> <target>JS</target> </configuration> </plugin> <!--Maven watch--> <!--mvn fizzed-watcher:run for watch--> <plugin> <groupId>com.fizzed</groupId> <artifactId>fizzed-watcher-maven-plugin</artifactId> <version>${fizzed.watcher.maven.plugin}</version> <configuration> <watches> <watch> <directory>src/main/kotlin</directory> </watch> </watches> <goals> <param>clean</param> <param>install</param> </goals> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>${dokka.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>