Last active
December 21, 2015 05:58
-
-
Save ljanzik/6260358 to your computer and use it in GitHub Desktop.
Maven Configuration for Xcode Project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.thoughtsonmobile.ios</groupId> | |
<artifactId>maven-test</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<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/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.thoughtsonmobile.ios</groupId> | |
<artifactId>maven-test</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<name>Maven+iOS Example Project</name> | |
<packaging>ipa</packaging> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>de.letsdev.maven.plugins</groupId> | |
<artifactId>maven-ios-plugin</artifactId> | |
<version>1.6-SNAPSHOT</version> | |
<extensions>true</extensions> | |
<configuration> | |
<sourceDir>src/main/ios</sourceDir> | |
<!-- replace with your own identity --> | |
<codeSignIdentity>iPhone Developer: Leif Janzik</codeSignIdentity> | |
<appName>${project.artifactId}</appName> | |
<bundleIdentifier>com.thoughtsonmobile.${PRODUCT_NAME:rfc1034identifier}</bundleIdentifier> | |
<displayName>TOM Maven</displayName> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment