8000 organise samples and harmonize naming in pom files · badthinking/java-operator-sdk@20abc5e · GitHub
[go: up one dir, main page]

Skip to content

Commit 20abc5e

Browse files
committed
organise samples and harmonize naming in pom files
1 parent 02383ce commit 20abc5e

File tree

17 files changed

+49
-15
lines changed

17 files changed

+49
-15
lines changed
File renamed without changes.

samples/common/pom.xml renamed to samples/basic/common/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
<parent>
77
<groupId>com.github.containersolutions</groupId>
8-
<artifactId>operator-framework-samples</artifactId>
8+
<artifactId>java-operator-sdk-basic-sample</artifactId>
99
<version>0.3.2-SNAPSHOT</version>
1010
</parent>
1111

12-
<artifactId>operator-framework-samples-common-files</artifactId>
13-
<name>Operator SDK - Samples - Common Files</name>
12+
<artifactId>operator-framework-samples-common</artifactId>
13+
<name>Operator SDK - Samples - Basic - Common Files</name>
1414
<description>Files shared between samples</description>
1515
<packaging>jar</packaging>
1616

samples/basic/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>com.github.containersolutions</groupId>
8+
<artifactId>java-operator-sdk-samples</artifactId>
9+
<version>0.3.2-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>java-operator-sdk-basic-sample</artifactId>
13+
<name>Operator SDK - Samples - Basic</name>
14+
<description>Very simple (simplistic) usage of the Operator SDK</description>
15+
<packaging>pom</packaging>
16+
17+
<modules>
18+
<module>common</module>
19+
<module>pure-java</module>
20+
<module>spring-boot</module>
21+
</modules>
22+
23+
</project>

0 commit comments

Comments
 (0)
0