|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <groupId>io.github.animatedledstrip</groupId> |
8 | | - <artifactId>animatedledstrip-kotlin-pi</artifactId> |
| 8 | + <artifactId>animatedledstrip-pi</artifactId> |
9 | 9 | <version>0.3</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 |
|
13 | 13 | <name>${project.groupId}:${project.artifactId}</name> |
14 | 14 | <description>Library for using the AnimatedLEDStrip library on Raspberry Pis.</description> |
15 | | - <url>https://github.com/AnimatedLEDStrip/AnimatedLEDStripKotlinPi</url> |
| 15 | + <url>https://github.com/AnimatedLEDStrip/AnimatedLEDStripPi</url> |
16 | 16 |
|
17 | 17 | <licenses> |
18 | 18 | <license> |
|
31 | 31 | </developers> |
32 | 32 |
|
33 | 33 | <scm> |
34 | | - <connection>scm:git:https://github.com/AnimatedLEDStrip/AnimatedLEDStripKotlinPi.git</connection> |
35 | | - <developerConnection>scm:git:https://github.com/AnimatedLEDStrip/AnimatedLEDStripKotlinPi.git</developerConnection> |
36 | | - <url>https://github.com/AnimatedLEDStrip/AnimatedLEDStripKotlinPi</url> |
| 34 | + <connection>scm:git:https://github.com/AnimatedLEDStrip/AnimatedLEDStripPi.git</connection> |
| 35 | + <developerConnection>scm:git:https://github.com/AnimatedLEDStrip/AnimatedLEDStripPi.git</developerConnection> |
| 36 | + <url>https://github.com/AnimatedLEDStrip/AnimatedLEDStripPi</url> |
37 | 37 | </scm> |
38 | 38 |
|
39 | 39 | <properties> |
| 40 | + <jdk.version>9</jdk.version> |
40 | 41 | <kotlin.version>1.3.50</kotlin.version> |
41 | 42 | <dokka.version>0.9.18</dokka.version> |
42 | 43 | <github.global.server>github</github.global.server> |
|
67 | 68 | </pluginRepositories> |
68 | 69 |
|
69 | 70 | <dependencies> |
70 | | - <dependency> |
71 | | - <groupId>org.jetbrains.kotlinx</groupId> |
72 | | - <artifactId>kotlinx-coroutines-core</artifactId> |
73 | | - <version>1.1.1</version> |
74 | | - </dependency> |
75 | 71 | <dependency> |
76 | 72 | <groupId>org.jetbrains.kotlin</groupId> |
77 | 73 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
|
86 | 82 | <dependency> |
87 | 83 | <groupId>io.github.animatedledstrip</groupId> |
88 | 84 | <artifactId>animatedledstrip-core</artifactId> |
89 | | - <version>0.1-SNAPSHOT</version> |
| 85 | + <version>0.3</version> |
90 | 86 | </dependency> |
91 | 87 | <dependency> |
92 | | - <groupId>junit</groupId> |
93 | | - <artifactId>junit</artifactId> |
94 | | - <version>4.12</version> |
| 88 | + <groupId>org.junit.jupiter</groupId> |
| 89 | + <artifactId>junit-jupiter-api</artifactId> |
| 90 | + <version>5.5.0</version> |
95 | 91 | <scope>test</scope> |
96 | 92 | </dependency> |
97 | 93 | <dependency> |
|
172 | 168 | </execution> |
173 | 169 | </executions> |
174 | 170 | <configuration> |
175 | | - <jvmTarget>1.8</jvmTarget> |
| 171 | + <jvmTarget>${jdk.version}</jvmTarget> |
176 | 172 | </configuration> |
177 | 173 | </plugin> |
178 | 174 | <plugin> |
|
0 commit comments