lf-kotlin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pt.lightweightform.plugins</groupId> <artifactId>lf-kotlin</artifactId> <version>4.0.0-alpha.63</version> </dependency>
<project> <modelVersion>4.0.0</modelVersion> <groupId>pt.lightweightform.plugins</groupId> <artifactId>lf-kotlin</artifactId> <packaging>pom</packaging> <version>4.0.0-alpha.63</version> <name>lf-kotlin</name> <description>Kotlin plugin for client/server reusability code on LF complex forms</description> <url>https://lightweightform.io</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Fábio Rito</name> <email>frito@opensoft.pt</email> <organization>Opensoft</organization> <organizationUrl>https://www.opensoft.pt/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://bitbucket.org/opensoftgitrepo/lf-kotlin.git</connection> <developerConnection>scm:git:ssh://bitbucket.org:opensoftgitrepo/lf-kotlin.git</developerConnection> <url>https://bitbucket.org/opensoftgitrepo/lf-kotlin/</url> </scm> <modules> <module>cli-plugin</module> <module>common</module> <module>common-js</module> <module>common-jvm</module> <module>demo-common</module> <module>demo-common-js</module> <module>demo</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.version>1.2.70</kotlin.version> <kotlinx.serialization.version>0.6.2</kotlinx.serialization.version> <klock-version>0.5.0</klock-version> <maven-deploy-plugin-version>3.0.0-M1</maven-deploy-plugin-version> <nexus-staging-maven-plugin-version>1.6.8</nexus-staging-maven-plugin-version> <jacoco.plugin.version>0.8.5</jacoco.plugin.version> <sonar.plugin.version>3.7.0.1746</sonar.plugin.version> <npm-executable>npm</npm-executable> <!-- Linux--> <!-- Sonar configuration --> <jacoco.report>${project.build.directory}/jacoco.exec</jacoco.report> <jacoco.report.xml>${project.build.directory}/site/jacoco/jacoco.xml</jacoco.report.xml> <sonar.sources>src/main/kotlin</sonar.sources> <sonar.tests>src/test/kotlin</sonar.tests> <sonar.typescript.lcov.reportPaths>${project.basedir}/coverage/lcov.info</sonar.typescript.lcov.reportPaths> <sonar.jacoco.reportPaths>${jacoco.report}</sonar.jacoco.reportPaths> <sonar.jacoco.xmlReportPaths>${jacoco.report.xml}</sonar.jacoco.xmlReportPaths> <sonar.coverage.jacoco.xmlReportPaths>${jacoco.report.xml}</sonar.coverage.jacoco.xmlReportPaths> <sonar.typescript.lcov.reportPaths>${project.basedir}/coverage/lcov.info</sonar.typescript.lcov.reportPaths> </properties> <profiles> <profile> <id>local</id> <properties> <npm-executable>npm.cmd</npm-executable> <!-- Windows--> </properties> </profile> <profile> <id>sign-artifacts</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <testSourceDirectory>src/test/kotlin</testSourceDirectory> <plugins> <plugin> <groupId>com.github.z3d1k</groupId> <artifactId>ktlint-maven-plugin</artifactId> <version>0.1.7</version> <executions> <execution> <id>lint</id> <phase>verify</phase> <goals> <goal>lint</goal> </goals> </execution> <execution> <id>format</id> <phase>prepare-package</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</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>0.10.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin-version}</version> <extensions>true</extensions> <inherited>false</inherited> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> <dependencies> <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.4</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.plugin.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${sonar.plugin.version}</version> </plugin> </plugins> </build> <repositories> <repository> <id>bintray-kotlin-kotlinx</id> <name>bintray</name> <url>https://kotlin.bintray.com/kotlinx</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>bintray-kotlin-kotlinx</id> <name>bintray-plugins</name> <url>https://kotlin.bintray.com/kotlinx</url> </pluginRepository> <pluginRepository> <id>jcenter</id> <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>ossrh</id> <name>ossrh release</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <name>ossrh snapshot</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>