Skip to content

Commit c28ad1d

Browse files
Merge pull request #118 from Claudenw/cleanup_build
Cleanup build
2 parents 31dcb02 + dd2f0ac commit c28ad1d

File tree

5 files changed

+54
-12
lines changed

5 files changed

+54
-12
lines changed

docs/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,23 @@
4141
<main.dir>${project.parent.basedir}</main.dir>
4242
</properties>
4343

44+
<dependencyManagement>
45+
<dependencies>
46+
<dependency>
47+
<groupId>org.apache.velocity</groupId>
48+
<artifactId>velocity-engine-core</artifactId>
49+
<version>${velocity.core.version}</version>
50+
<scope>compile</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.apache.velocity.tools</groupId>
54+
<artifactId>velocity-tools-generic</artifactId>
55+
<version>${velocity.tools.version}</version>
56+
<scope>compile</scope>
57+
</dependency>
58+
</dependencies>
59+
</dependencyManagement>
60+
4461
<dependencies>
4562
<dependency>
4663
<groupId>com.wepay.kcbq</groupId>
@@ -101,6 +118,7 @@
101118
</dependencies>
102119
<configuration>
103120
<generateReports>false</generateReports>
121+
<generateProjectInfo>false</generateProjectInfo>
104122
</configuration>
105123
</plugin>
106124

@@ -162,4 +180,6 @@
162180
</plugin>
163181
</plugins>
164182
</build>
183+
184+
165185
</project>

kcbq-api/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,15 @@
6666
<plugin>
6767
<groupId>org.apache.maven.plugins</groupId>
6868
<artifactId>maven-site-plugin</artifactId>
69+
<configuration>
70+
<skip>true</skip>
71+
<generateReports>false</generateReports>
72+
<generateProjectInfo>false</generateProjectInfo>
73+
</configuration>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-project-info-reports-plugin</artifactId>
6978
<configuration>
7079
<skip>true</skip>
7180
</configuration>

kcbq-connector/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,15 @@
244244
<plugin>
245245
<groupId>org.apache.maven.plugins</groupId>
246246
<artifactId>maven-site-plugin</artifactId>
247+
<configuration>
248+
<skip>true</skip>
249+
<generateReports>false</generateReports>
250+
<generateProjectInfo>false</generateProjectInfo>
251+
</configuration>
252+
</plugin>
253+
<plugin>
254+
<groupId>org.apache.maven.plugins</groupId>
255+
<artifactId>maven-project-info-reports-plugin</artifactId>
247256
<configuration>
248257
<skip>true</skip>
249258
</configuration>

pom.xml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<compiler.plugin.version>3.8.1</compiler.plugin.version>
6262
<exec.plugin.version>3.2.0</exec.plugin.version>
6363
<google.cloud.bom.version>26.33.0</google.cloud.bom.version>
64-
<surefire.plugin.version>3.0.0-M4</surefire.plugin.version>
64+
<surefire.plugin.version>3.5.3</surefire.plugin.version>
6565

6666
<site.plugin.version>3.21.0</site.plugin.version>
6767
<velocity.core.version>2.4.1</velocity.core.version>
@@ -77,6 +77,11 @@
7777

7878
<inceptionYear>2016</inceptionYear>
7979

80+
<organization>
81+
<name>Aiven</name>
82+
<url>https://www.aiven.io</url>
83+
</organization>
84+
8085
<licenses>
8186
<license>
8287
<name>Apache License 2.0</name>
@@ -311,16 +316,6 @@
311316
<artifactId>re2j</artifactId>
312317
<version>${com.google.re2j.version}</version>
313318
</dependency>
314-
<dependency>
315-
<groupId>org.apache.velocity</groupId>
316-
<artifactId>velocity-engine-core</artifactId>
317-
<version>${velocity.core.version}</version>
318-
</dependency>
319-
<dependency>
320-
<groupId>org.apache.velocity.tools</groupId>
321-
<artifactId>velocity-tools-generic</artifactId>
322-
<version>${velocity.tools.version}</version>
323-
</dependency>
324319
<dependency>
325320
<groupId>org.apache.maven.plugins</groupId>
326321
<artifactId>maven-resources-plugin</artifactId>

tools/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@
3030

3131
<parent>
3232
<groupId>com.wepay.kcbq</groupId>
33-
<artifactId>kcbq-parent</artifactId>
33+
<artifactId>docs</artifactId>
3434
<version>2.9.0-SNAPSHOT</version>
35+
<relativePath>../docs</relativePath>
3536
</parent>
3637
<url>https://github.com/Aiven-Open/bigquery-connector-for-apache-kafka/</url>
3738
<artifactId>tools</artifactId>
@@ -115,6 +116,14 @@
115116
</archive>
116117
</configuration>
117118
</plugin>
119+
<plugin>
120+
<groupId>org.apache.maven.plugins</groupId>
121+
<artifactId>maven-site-plugin</artifactId>
122+
<configuration>
123+
<skip>true</skip>
124+
<generateProjectInfo>false</generateProjectInfo>
125+
</configuration>
126+
</plugin>
118127
</plugins>
119128
</build>
120129
</project>

0 commit comments

Comments
 (0)