|
10 | 10 | <relativePath>../pom.xml</relativePath> |
11 | 11 | </parent> |
12 | 12 | <artifactId>storm-kotlin</artifactId> |
| 13 | + <name>Storm</name> |
| 14 | + <description>Kotlin extensions for Storm.</description> |
| 15 | + <url>https://github.com/storm-repo/storm-framework</url> |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>The Apache License, Version 2.0</name> |
| 19 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + <developers> |
| 23 | + <developer> |
| 24 | + <name>Leon van Zantvoort</name> |
| 25 | + <email>storm@zantvoort.biz</email> |
| 26 | + </developer> |
| 27 | + </developers> |
| 28 | + <scm> |
| 29 | + <connection>scm:git:git://github.com/storm-repo/storm-framework.git</connection> |
| 30 | + <developerConnection>scm:git:ssh://github.com/storm-repo/storm-framework.git</developerConnection> |
| 31 | + <url>https://github.com/storm-repo/storm-framework/</url> |
| 32 | + </scm> |
13 | 33 | <build> |
14 | 34 | <plugins> |
15 | 35 | <plugin> |
|
40 | 60 | </goals> |
41 | 61 | <configuration> |
42 | 62 | <sourceDirs> |
43 | | - <source>src/main/kotlin</source> |
44 | | - <source>target/generated-sources/annotations</source> |
| 63 | + <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
45 | 64 | </sourceDirs> |
| 65 | + <moduleName>${project.artifactId}</moduleName> |
46 | 66 | </configuration> |
47 | 67 | </execution> |
48 | 68 | <execution> |
|
53 | 73 | </goals> |
54 | 74 | <configuration> |
55 | 75 | <sourceDirs> |
56 | | - <source>src/test/java</source> |
57 | | - <source>target/generated-test-sources/test-annotations</source> |
| 76 | + <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> |
58 | 77 | </sourceDirs> |
59 | 78 | </configuration> |
60 | 79 | </execution> |
61 | 80 | </executions> |
62 | | - <configuration> |
63 | | - <jvmTarget>16</jvmTarget> |
64 | | - </configuration> |
65 | | - </plugin> |
66 | | - <plugin> |
67 | | - <groupId>org.apache.maven.plugins</groupId> |
68 | | - <artifactId>maven-compiler-plugin</artifactId> |
69 | | - <executions> |
70 | | - <execution> |
71 | | - <id>default-compile</id> |
72 | | - <phase>none</phase> |
73 | | - </execution> |
74 | | - <execution> |
75 | | - <id>default-testCompile</id> |
76 | | - <phase>none</phase> |
77 | | - </execution> |
78 | | - <execution> |
79 | | - <id>compile</id> |
80 | | - <phase>compile</phase> |
81 | | - <goals> |
82 | | - <goal>compile</goal> |
83 | | - </goals> |
84 | | - </execution> |
85 | | - <execution> |
86 | | - <id>testCompile</id> |
87 | | - <phase>test-compile</phase> |
88 | | - <goals> |
89 | | - <goal>testCompile</goal> |
90 | | - </goals> |
91 | | - </execution> |
92 | | - </executions> |
93 | | - <configuration> |
94 | | - <source>${java.version}</source> |
95 | | - <target>${java.version}</target> |
96 | | - <release>${java.version}</release> |
97 | | - <compilerArgs>--enable-preview</compilerArgs> |
98 | | - </configuration> |
99 | 81 | </plugin> |
100 | 82 | </plugins> |
101 | 83 | </build> |
|
0 commit comments