Skip to content

Commit e05e1df

Browse files
committed
fix
1 parent 14332c4 commit e05e1df

File tree

3 files changed

+37
-18
lines changed

3 files changed

+37
-18
lines changed

HOW-TO-DEPLOY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## How to Deploy
2+
3+
We pretty much do as explained here:
4+
5+
https://bpodgursky.com/2019/07/31/using-travisci-to-deploy-to-maven-central-via-git-tagging-aka-death-to-commit-clutter/
6+
7+
Please note that we have added the --com option to all travis cli command

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@
110110
<module>core</module>
111111
<module>generatedkey</module>
112112
<module>keyrepository</module>
113-
<module>doc</module>
114113
<module>samples</module>
115114
</modules>
116115

samples/pom.xml

Lines changed: 30 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,39 @@
1313
limitations under the License. See accompanying LICENSE file.
1414
-->
1515
<project xmlns="http://maven.apache.org/POM/4.0.0"
16-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18-
<modelVersion>4.0.0</modelVersion>
16+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18+
<modelVersion>4.0.0</modelVersion>
1919

20-
<parent>
21-
<groupId>io.quicksign</groupId>
22-
<artifactId>kafka-encryption-parent</artifactId>
23-
<version>0.0.0-SNAPSHOT</version>
24-
</parent>
20+
<parent>
21+
<groupId>io.quicksign</groupId>
22+
<artifactId>kafka-encryption-parent</artifactId>
23+
<version>0.0.0-SNAPSHOT</version>
24+
</parent>
2525

26-
<artifactId>kafka-encryption-samples</artifactId>
27-
<packaging>pom</packaging>
26+
<artifactId>kafka-encryption-samples</artifactId>
27+
<packaging>pom</packaging>
2828

29-
<name>kafka-encryption-samples</name>
30-
<description>Kafka Record Encryption Samples</description>
29+
<name>kafka-encryption-samples</name>
30+
<description>Kafka Record Encryption Samples</description>
3131

32-
<modules>
33-
<module>generatedkey-sample</module>
34-
<module>keyrepo-sample</module>
35-
<module>kafkastream-with-keyrepo-sample</module>
36-
</modules>
32+
<modules>
33+
<module>generatedkey-sample</module>
34+
<module>keyrepo-sample</module>
35+
<module>kafkastream-with-keyrepo-sample</module>
36+
</modules>
37+
38+
<build>
39+
<plugins>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-deploy-plugin</artifactId>
43+
<version>2.7</version>
44+
<configuration>
45+
<skip>true</skip>
46+
</configuration>
47+
</plugin>
48+
</plugins>
49+
</build>
3750

3851
</project>

0 commit comments

Comments
 (0)