-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpom.xml
115 lines (108 loc) · 3.74 KB
/
pom.xml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?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>
<groupId>jp.kshoji</groupId>
<artifactId>midi-driver</artifactId>
<version>0.0.3</version>
<packaging>aar</packaging>
<name>Android USB MIDI Driver Library</name>
<description>USB MIDI Driver for Android tablets(3.1 or higher)</description>
<url>https://github.com/kshoji/USB-MIDI-Driver</url>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/kshoji/USB-MIDI-Driver/issues</url>
</issueManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/kshoji/USB-MIDI-Driver/tree/master</url>
<connection>scm:git:git://github.com/kshoji/USB-MIDI-Driver.git</connection>
<developerConnection>scm:git:ssh://git@github.com/kshoji/USB-MIDI-Driver.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<email>0x0badc0de@gmail.com</email>
<name>Kaoru Shoji</name>
<url>https://github.com/kshoji</url>
<id>kshoji</id>
</developer>
</developers>
<distributionManagement>
<repository>
<id>release-repo</id>
<url>file://${project.build.directory}/release-repo</url>
</repository>
<snapshotRepository>
<id>snapshot-repo</id>
<url>file://${project.build.directory}/snapshot-repo</url>
</snapshotRepository>
</distributionManagement>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerVersion>1.6</compilerVersion>
</configuration>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.8.2</version>
<configuration>
<androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile>
<resourceDirectory>${project.basedir}/res</resourceDirectory>
<sdk>
<platform>12</platform>
</sdk>
<deleteConflictingFiles>true</deleteConflictingFiles>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<excludes>
<exclude>android:android</exclude>
</excludes>
<classpathContainers>
<classpathContainer>com.android.ide.eclipse.adt.ANDROID_FRAMEWORK</classpathContainer>
</classpathContainers>
<additionalProjectnatures>
<projectnature>com.android.ide.eclipse.adt.AndroidNature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>com.android.ide.eclipse.adt.ResourceManagerBuilder</buildcommand>
<buildcommand>com.android.ide.eclipse.adt.PreCompilerBuilder</buildcommand>
<buildcommand>com.android.ide.eclipse.adt.ApkBuilder</buildcommand>
</additionalBuildcommands>
<useProjectReferences>false</useProjectReferences>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- install dependency using https://github.com/mosabua/maven-android-sdk-deployer -->
<!-- mvn install -P 3.1 -->
<dependency>
<groupId>android</groupId>
<artifactId>android</artifactId>
<version>3.1_r3</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>