Question

J'ai un projet de cacao et je voudrais construire avec Maven. est-il un plugin Maven pour la construction de code c objectif?

Était-ce utile?

La solution

Je l'ai utilisé le plugin exec pour exécuter cacao ligne de commande pour une bonne affecter.

    <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>
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top