swinky-jgoodies
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ca.weblite</groupId> <artifactId>swinky-jgoodies</artifactId> <version>0.0.17</version> </dependency>
<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-jgoodies</artifactId> <packaging>jar</packaging> <name>swinky-jgoodies</name> <properties> <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> <!-- *** Depend on the codegen JAR *** --> <dependency> <groupId>ca.weblite</groupId> <artifactId>swinky-main</artifactId> <version>0.0.17</version> </dependency> <dependency> <groupId>com.jgoodies</groupId> <artifactId>jgoodies-forms</artifactId> <version>1.9.0</version> </dependency> <!-- JUnit, etc. if you have tests --> </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>