status-mobile/ios/pom.xml

45 lines
1.3 KiB
XML
Raw Normal View History

2016-03-14 13:11:16 +00:00
<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>
2016-03-14 14:36:22 +00:00
<groupId>org.reactjs.native.example</groupId>
<artifactId>Messenger</artifactId>
2016-03-14 13:11:16 +00:00
<version>1.0-SNAPSHOT</version>
<packaging>xcode-lib</packaging>
2016-03-14 14:36:22 +00:00
<properties>
<xcode.sourceDirectory>.</xcode.sourceDirectory>
</properties>
2016-03-14 13:11:16 +00:00
<repositories>
<repository>
<id>ci.syng.im</id>
2016-03-14 13:35:53 +00:00
<url>http://ci.syng.im:8081/artifactory/libs-release-local/</url>
2016-03-14 13:11:16 +00:00
</repository>
</repositories>
2016-03-14 13:35:53 +00:00
<dependencies>
<dependency>
<groupId>syng-im</groupId>
<artifactId>ios-geth</artifactId>
<version>1.4.0-201603140656-92d65cf</version>
2016-03-14 14:56:29 +00:00
<type>xcode-framework</type>
2016-03-14 13:35:53 +00:00
</dependency>
</dependencies>
2016-03-14 13:11:16 +00:00
<build>
<plugins>
<plugin>
2016-03-14 14:56:29 +00:00
<!-- requires Maven 3.0, 3.1+ fails -->
2016-03-14 13:11:16 +00:00
<groupId>com.sap.prd.mobile.ios.mios</groupId>
<artifactId>xcode-maven-plugin</artifactId>
<version>1.14.2</version>
<extensions>true</extensions>
2016-03-14 14:36:22 +00:00
<configuration>
</configuration>
2016-03-14 13:11:16 +00:00
</plugin>
</plugins>
</build>
</project>