This repository was archived by the owner on Jul 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPom.cshtml
44 lines (44 loc) · 1.56 KB
/
Pom.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
@using System.Linq
@using System.IO
@using System.Xml.Linq
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>net.naxam.bindings</groupId>
<artifactId>@(Model.Name)</artifactId>
<version>1.0.0</version>
<packaging>aar</packaging>
<name>Xamarin.Android Binding Library for Mapbox SDK - @(Model.Name)</name>
<description>Xamarin.Android Binding Library for Mapbox SDK - @(Model.Name)</description>
<url>https://github.com/NAXAM/dijsdk-android-binding</url>
<inceptionYear>2019</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/NAXAM/dijsdk-android-binding/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Xamarin</name>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/NAXAM/dijsdk-android-binding.git</connection>
<url>https://github.com/NAXAM/dijsdk-android-binding/</url>
</scm>
@if (@Model.MavenArtifacts.Count > 0) {
<dependencies>
@foreach (var art in @Model.MavenArtifacts) {
<dependency>
<groupId>@(art.MavenGroupId)</groupId>
<artifactId>@(art.MavenArtifactId)</artifactId>
<version>@(art.MavenArtifactVersion)</version>
<scope>compile</scope>
</dependency>
}
</dependencies>
}
</project>