You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@iotdb.apache.org by "Bo Zhang (Jira)" <ji...@apache.org> on 2021/09/21 15:57:00 UTC

[jira] [Created] (IOTDB-1718) compile-tools/thrift/pom.xml, make-cmake-executable use wrong phase

Bo Zhang created IOTDB-1718:
-------------------------------

             Summary: compile-tools/thrift/pom.xml, make-cmake-executable use wrong phase
                 Key: IOTDB-1718
                 URL: https://issues.apache.org/jira/browse/IOTDB-1718
             Project: Apache IoTDB
          Issue Type: Bug
          Components: Client/Others
            Reporter: Bo Zhang
             Fix For: 0.13.0


compile-tools/thrift/pom.xml:62

==============================
 <plugin>
 <groupId>org.codehaus.mojo</groupId>
 <artifactId>exec-maven-plugin</artifactId>
 <version>1.6.0</version>
 <executions>
 <execution>
 <id>make-cmake-executable</id>
 <phase>process-sources</phase>{color:#FF0000} //here, this phase is too late, becasue "cmake-generate" begin to run cmake file in <phase>generate-sources</phase>{color}
 <goals>
 <goal>exec</goal>
 </goals>
 <configuration>
 <basedir>${cmake.root.dir}/bin</basedir>
 <executable>${chmod.command}</executable>
 <commandlineArgs>${chmod.command.para}</commandlineArgs>
 </configuration>
 </execution>
 </executions>
 </plugin>
 ======================================

 

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)