File tree Expand file tree Collapse file tree 3 files changed +35
-13
lines changed Expand file tree Collapse file tree 3 files changed +35
-13
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
- dist : bionic
2
+ dist : bionic
3
+ before_install :
4
+ - echo $GPGKEY | base64 --decode | gpg --import
5
+ script :
6
+ - mvn deploy --settings=maven-settings.xml -Prelease
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <settings >
3
+ <servers >
4
+ <server >
5
+ <id >ossrh</id >
6
+ <username >${env.SONATYPE_USERNAME}</username >
7
+ <password >${env.SONATYPE_PASSWORD}</password >
8
+ </server >
9
+ </servers >
10
+
11
+ <profiles >
12
+ <profile >
13
+ <id >ossrh</id >
14
+ <activation >
15
+ <activeByDefault >true</activeByDefault >
16
+ </activation >
17
+ <properties >
18
+ <gpg .executable>gpg</gpg .executable>
19
+ </properties >
20
+ </profile >
21
+ </profiles >
22
+ </settings >
Original file line number Diff line number Diff line change 3
3
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
4
<modelVersion >4.0.0</modelVersion >
5
5
6
- <groupId >com.github.containersolutions</groupId >
6
+ <parent >
7
+ <groupId >com.github.containersolutions</groupId >
8
+ <artifactId >operator-framework-samples</artifactId >
9
+ <version >0.3.2-SNAPSHOT</version >
10
+ </parent >
11
+
7
12
<artifactId >webserver-sample</artifactId >
8
- <version >0.3.2-SNAPSHOT</version >
13
+ <name >Operator SDK - Samples - Webserver</name >
14
+ <description >Provisions an nginx Webserver based on a CRD</description >
9
15
<packaging >jar</packaging >
10
- <name >Operator SDK - Samples - Web Server</name >
11
16
12
17
<properties >
13
18
<java .version>11</java .version>
50
55
<groupId >com.spotify</groupId >
51
56
<artifactId >dockerfile-maven-plugin</artifactId >
52
57
<version >1.4.12</version >
53
- <executions >
54
- <execution >
55
- <id >default</id >
56
- <phase >install</phase >
57
- <goals >
58
- <goal >build</goal >
59
- </goals >
60
- </execution >
61
- </executions >
62
58
<configuration >
63
59
<repository >webserver-operator</repository >
64
60
<tag >latest</tag >
You can’t perform that action at this time.
0 commit comments