2009-12-14 20 views

उत्तर

2

मैंने कम प्रभाव के लिए कमांड लाइन कोको चलाने के लिए exec प्लगइन का उपयोग किया है।

<plugin> 
      <groupId>org.codehaus.mojo</groupId> 
      <artifactId>exec-maven-plugin</artifactId> 
      <version>1.1</version> 
      <executions> 
      <execution> 
        <phase>${cocoa.phase}</phase> 
        <goals> 
        <goal>exec</goal> 
        </goals> 
      </execution> 
      </executions> 
      <configuration> 
      <executable>xcodebuild</executable> 
      <workingDirectory>${project.build.directory}/</workingDirectory> 
      </configuration> 
     </plugin> 
संबंधित मुद्दे