Skip to content

Commit f80343d

Browse files
committed
Compile tests on verify
1 parent 8b19ccc commit f80343d

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ JAVA_CLIENT_PACKAGE=com/github/kklisura/cdt/protocol
1313
PACKAGE_NAME=com.github.kklisura.cdt.protocol
1414
PROTOCOL_JSON_FILE=./protocol.json
1515

16+
EXAMPLES_DIR=cdt-examples
17+
1618
build-cdt-java-protocol-builder:
1719
# Building cdt-java-protocol-builder project...
1820
$(CP) $(PROTOCOL_JSON_FILE) "./$(JAVA_PROTOCOL_BUILDER_DIR)/src/test/resources/protocol.json"
@@ -52,4 +54,6 @@ sonar-analysis:
5254
verify:
5355
# Running unit tests
5456
cd $(JAVA_PROTOCOL_BUILDER_DIR)/ && make verify
55-
cd $(JAVA_CLIENT_DIR)/ && make verify
57+
cd $(JAVA_CLIENT_DIR)/ && make verify
58+
$(MVN) --file "$(JAVA_CLIENT_DIR)/" clean install && \
59+
$(MVN) --file "$(EXAMPLES_DIR)/" clean compile

cdt-examples/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
<packaging>jar</packaging>
99

1010
<name>cdt-examples</name>
11-
<url>http://maven.apache.org</url>
11+
<description>Chrome DevTools java client examples</description>
12+
<url>https://github.com/kklisura/chrome-devtools-java-client</url>
1213

1314
<properties>
1415
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>pom</packaging>
99

1010
<name>ctd-java-client-root</name>
11-
<description>Chrome DevTools definition builder</description>
11+
<description>Chrome DevTools java client</description>
1212
<url>https://github.com/kklisura/chrome-devtools-java-client</url>
1313

1414
<modules>

0 commit comments

Comments
 (0)