Skip to content

Commit 30ec7d2

Browse files
committed
Add mandatory elements to pom now that Kotlin extensions are added.
Relates to #27
1 parent baf581b commit 30ec7d2

File tree

10 files changed

+203
-41
lines changed

10 files changed

+203
-41
lines changed

storm-json/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-json</artifactId>
13+
<name>Storm Json</name>
14+
<description>Json 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm-kotlin/pom.xml

Lines changed: 23 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<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>
1333
<build>
1434
<plugins>
1535
<plugin>
@@ -40,9 +60,9 @@
4060
</goals>
4161
<configuration>
4262
<sourceDirs>
43-
<source>src/main/kotlin</source>
44-
<source>target/generated-sources/annotations</source>
63+
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
4564
</sourceDirs>
65+
<moduleName>${project.artifactId}</moduleName>
4666
</configuration>
4767
</execution>
4868
<execution>
@@ -53,49 +73,11 @@
5373
</goals>
5474
<configuration>
5575
<sourceDirs>
56-
<source>src/test/java</source>
57-
<source>target/generated-test-sources/test-annotations</source>
76+
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
5877
</sourceDirs>
5978
</configuration>
6079
</execution>
6180
</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>
9981
</plugin>
10082
</plugins>
10183
</build>

storm-mariadb/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-mariadb</artifactId>
13+
<name>Storm MariaDB</name>
14+
<description>MariaDB 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm-metamodel-processor/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,26 @@
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>storm-metamodel-processor</artifactId>
12+
<name>Storm Metamodel Processor</name>
13+
<description>Metamodel extensions for Storm.</description>
14+
<url>https://github.com/storm-repo/storm-framework</url>
15+
<licenses>
16+
<license>
17+
<name>The Apache License, Version 2.0</name>
18+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19+
</license>
20+
</licenses>
21+
<developers>
22+
<developer>
23+
<name>Leon van Zantvoort</name>
24+
<email>storm@zantvoort.biz</email>
25+
</developer>
26+
</developers>
27+
<scm>
28+
<connection>scm:git:git://github.com/storm-repo/storm-framework.git</connection>
29+
<developerConnection>scm:git:ssh://github.com/storm-repo/storm-framework.git</developerConnection>
30+
<url>https://github.com/storm-repo/storm-framework/</url>
31+
</scm>
1232
<build>
1333
<plugins>
1434
<plugin>

storm-mssqlserver/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-mssqlserver</artifactId>
13+
<name>Storm MS SQL Server</name>
14+
<description>MS SQL Server 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm-mysql/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-mysql</artifactId>
13+
<name>Storm MySQL</name>
14+
<description>MySQL 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm-oracle/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-oracle</artifactId>
13+
<name>Storm Oracle</name>
14+
<description>Oracle 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm-postgresql/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-postgresql</artifactId>
13+
<name>Storm PostgreSQL</name>
14+
<description>PostgreSQL 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm-spring/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm-spring</artifactId>
13+
<name>Storm Spring</name>
14+
<description>Spring 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>
1333
<build>
1434
<plugins>
1535
<plugin>

storm/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,26 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>storm</artifactId>
13+
<name>Storm</name>
14+
<description>Main Storm package.</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>
1333
<build>
1434
<plugins>
1535
<plugin>

0 commit comments

Comments
 (0)