Skip to content

Commit 1e336a8

Browse files
authored
[release-0.2.x] Add project names to modules + add sources plugin for deploying artifacts to Maven Central (#99)
Signed-off-by: Lukas Kral <[email protected]>
1 parent 7ddb21f commit 1e336a8

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>kafka-access-operator</artifactId>
1010
<version>0.2.0</version>
1111
</parent>
12-
12+
<name>Strimzi Access Operator - API</name>
1313
<artifactId>api</artifactId>
1414

1515
<properties>

operator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>kafka-access-operator</artifactId>
99
<version>0.2.0</version>
1010
</parent>
11-
11+
<name>Strimzi Access Operator</name>
1212
<artifactId>operator</artifactId>
1313

1414
<properties>

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
<spotbugs.version>4.5.3</spotbugs.version>
6262
<spotbugs-maven-plugin.version>4.5.3.0</spotbugs-maven-plugin.version>
6363
<maven.javadoc.version>3.5.0</maven.javadoc.version>
64+
<maven.source.version>3.3.1</maven.source.version>
6465
<maven.shade.version>3.1.0</maven.shade.version>
6566
<maven.dependency.version>3.3.0</maven.dependency.version>
6667
<maven.assembly.version>3.3.0</maven.assembly.version>
@@ -339,6 +340,19 @@
339340
<excludeFilterFile>${project.basedir}/../.spotbugs/spotbugs-exclude.xml</excludeFilterFile>
340341
</configuration>
341342
</plugin>
343+
<plugin>
344+
<groupId>org.apache.maven.plugins</groupId>
345+
<artifactId>maven-source-plugin</artifactId>
346+
<version>${maven.source.version}</version>
347+
<executions>
348+
<execution>
349+
<id>attach-sources</id>
350+
<goals>
351+
<goal>jar</goal>
352+
</goals>
353+
</execution>
354+
</executions>
355+
</plugin>
342356
<plugin>
343357
<groupId>org.apache.maven.plugins</groupId>
344358
<artifactId>maven-javadoc-plugin</artifactId>

systemtest/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<version>0.2.0</version>
1010
</parent>
1111

12+
<name>Strimzi Access Operator - System tests</name>
1213
<artifactId>systemtest</artifactId>
1314

1415
<properties>

0 commit comments

Comments
 (0)