swinky-coroutines
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.weblite</groupId> <artifactId>swinky-coroutines</artifactId> <version>0.0.17</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ca.weblite</groupId> <artifactId>swinky-root</artifactId> <version>0.0.17</version> </parent> <artifactId>swinky-coroutines</artifactId> <properties> <kotlinx.coroutines.version>1.7.3</kotlinx.coroutines.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- Kotlin stdlib for your main code --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> <version>${kotlinx.coroutines.version}</version> <!-- or latest --> </dependency> </dependencies> <build> <!-- Our main Kotlin sources are in src/main/kotlin --> <sourceDirectory>src/main/kotlin</sourceDirectory> <plugins> <!-- 2) Kotlin Maven Plugin: compile the main code + the generated code --> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <jvmTarget>17</jvmTarget> <!-- or "21" if you want the latest --> <!-- or use the 'release' parameter if you prefer --> <sourceDirs> <sourceDir>src/main/kotlin</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>