2009-12-14 26 views

Odpowiedz

2

Używam plugin exec, aby uruchomić kakao linii poleceń, aby wpłynąć pozytywnie.

<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> 
Powiązane problemy