Skip to content

Instantly share code, notes, and snippets.

@sstadelman
Created June 20, 2014 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sstadelman/4184c9d74406bbafeba8 to your computer and use it in GitHub Desktop.
Save sstadelman/4184c9d74406bbafeba8 to your computer and use it in GitHub Desktop.
SDK 3.0 SP05 app pom
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.sap.smp.client.ios.samples</groupId>
<artifactId>ODataAPISamplesParent</artifactId>
<version>3.5.0-SNAPSHOT</version>
</parent>
<artifactId>APIHarmony</artifactId>
<packaging>xcode-app</packaging>
<dependencies>
<dependency>
<groupId>${smp.groupid}</groupId>
<artifactId>XScriptParser</artifactId>
<type>xcode-lib</type>
</dependency>
<dependency>
<groupId>${smp.groupid}</groupId>
<artifactId>HttpConvAuthFlows</artifactId>
<type>xcode-lib</type>
</dependency>
<!--
<dependency>
<groupId>${smp.groupid}</groupId>
<artifactId>SAPFlowEngine</artifactId>
<type>xcode-lib</type>
</dependency>
-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.sap.prd.mobile.ios.mios</groupId>
<artifactId>xcode-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
@sstadelman
Copy link
Author

change the <artifactId> value </artifactId> to match your project name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment