|
19 | 19 | under the License. |
20 | 20 |
|
21 | 21 | --> |
22 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
23 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
24 | 23 | <modelVersion>4.0.0</modelVersion> |
25 | 24 | <parent> |
26 | 25 | <artifactId>pinot</artifactId> |
27 | 26 | <groupId>org.apache.pinot</groupId> |
28 | | - <version>1.2.0-SNAPSHOT</version> |
| 27 | + <version>1.2.0</version> |
29 | 28 | <relativePath>..</relativePath> |
30 | 29 | </parent> |
31 | 30 | <artifactId>pinot-common</artifactId> |
|
373 | 372 | <phase>generate-sources</phase> |
374 | 373 | <configuration> |
375 | 374 | <target> |
376 | | - <delete dir="target/generated-sources/gen-javabean"/> |
377 | | - <mkdir dir="target/generated-sources"/> |
| 375 | + <delete dir="target/generated-sources/gen-javabean" /> |
| 376 | + <mkdir dir="target/generated-sources" /> |
378 | 377 | <exec executable="/usr/local/bin/thrift"> |
379 | | - <arg value="--gen"/> |
380 | | - <arg value="java:beans"/> |
381 | | - <arg value="-o"/> |
382 | | - <arg value="target/generated-sources"/> |
383 | | - <arg value="src/thrift/query.thrift"/> |
| 378 | + <arg value="--gen" /> |
| 379 | + <arg value="java:beans" /> |
| 380 | + <arg value="-o" /> |
| 381 | + <arg value="target/generated-sources" /> |
| 382 | + <arg value="src/thrift/query.thrift" /> |
384 | 383 | </exec> |
385 | 384 | <exec executable="/usr/local/bin/thrift"> |
386 | | - <arg value="--gen"/> |
387 | | - <arg value="java:beans"/> |
388 | | - <arg value="-o"/> |
389 | | - <arg value="target/generated-sources"/> |
390 | | - <arg value="src/thrift/request.thrift"/> |
| 385 | + <arg value="--gen" /> |
| 386 | + <arg value="java:beans" /> |
| 387 | + <arg value="-o" /> |
| 388 | + <arg value="target/generated-sources" /> |
| 389 | + <arg value="src/thrift/request.thrift" /> |
391 | 390 | </exec> |
392 | 391 | <exec executable="/usr/local/bin/thrift"> |
393 | | - <arg value="--gen"/> |
394 | | - <arg value="java:beans"/> |
395 | | - <arg value="-o"/> |
396 | | - <arg value="target/generated-sources"/> |
397 | | - <arg value="src/thrift/response.thrift"/> |
| 392 | + <arg value="--gen" /> |
| 393 | + <arg value="java:beans" /> |
| 394 | + <arg value="-o" /> |
| 395 | + <arg value="target/generated-sources" /> |
| 396 | + <arg value="src/thrift/response.thrift" /> |
398 | 397 | </exec> |
399 | 398 | <move todir="src/main/java/"> |
400 | | - <fileset dir="target/generated-sources/gen-javabean"/> |
| 399 | + <fileset dir="target/generated-sources/gen-javabean" /> |
401 | 400 | </move> |
402 | | - <delete dir="target/generated-sources/gen-javabean"/> |
| 401 | + <delete dir="target/generated-sources/gen-javabean" /> |
403 | 402 | </target> |
404 | 403 | </configuration> |
405 | 404 | <goals> |
|
0 commit comments