|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>net.codecrete.usb.examples</groupId> |
| 6 | + <artifactId>monitor_kotlin</artifactId> |
| 7 | + <version>0.7.0-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>monitor_kotlin</name> |
| 11 | + <url>https://github.com/manuelbl/JavaDoesUSB/examples/kotlin</url> |
| 12 | + |
| 13 | + <properties> |
| 14 | + <kotlin.version>1.9.10</kotlin.version> |
| 15 | + <kotlin.compiler.incremental>true</kotlin.compiler.incremental> |
| 16 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <build> |
| 20 | + <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> |
| 21 | + <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> |
| 22 | + |
| 23 | + <plugins> |
| 24 | + <plugin> |
| 25 | + <groupId>org.jetbrains.kotlin</groupId> |
| 26 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 27 | + <version>${kotlin.version}</version> |
| 28 | + <extensions>true</extensions> |
| 29 | + </plugin> |
| 30 | + </plugins> |
| 31 | + </build> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>org.jetbrains.kotlin</groupId> |
| 36 | + <artifactId>kotlin-stdlib</artifactId> |
| 37 | + <version>${kotlin.version}</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>net.codecrete.usb</groupId> |
| 41 | + <artifactId>java-does-usb</artifactId> |
| 42 | + <version>0.7.0-SNAPSHOT</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.tinylog</groupId> |
| 46 | + <artifactId>tinylog-api</artifactId> |
| 47 | + <version>2.6.2</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.tinylog</groupId> |
| 51 | + <artifactId>tinylog-impl</artifactId> |
| 52 | + <version>2.6.2</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.tinylog</groupId> |
| 56 | + <artifactId>jsl-tinylog</artifactId> |
| 57 | + <version>2.6.2</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>junit</groupId> |
| 61 | + <artifactId>junit</artifactId> |
| 62 | + <version>4.13.2</version> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | +</project> |
0 commit comments