-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
135 additions
and
16 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
MIDIDriver/snapshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/maven-metadata.xml.md5
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4c7040aace18e647cb3d1a4f935d33bb | ||
f753c076d19101153b547d4f6a22e6e8 |
2 changes: 1 addition & 1 deletion
2
MIDIDriver/snapshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/maven-metadata.xml.sha1
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2cf621816ce3b81551b7f5b4a0e0778df1def8a6 | ||
3ec6f9e272b120fc18e99a207b51fcde4ed398f7 |
Binary file added
BIN
+102 KB
...r/snapshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/midi-driver-0.0.1-20140618.112341-18.aar
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...apshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/midi-driver-0.0.1-20140618.112341-18.aar.md5
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e5d186914138fb7a1952e4d5f3348a15 |
1 change: 1 addition & 0 deletions
1
...pshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/midi-driver-0.0.1-20140618.112341-18.aar.sha1
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
545a95577e5c79dbc42a4f3f8bcf44102d5017bd |
115 changes: 115 additions & 0 deletions
115
...r/snapshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/midi-driver-0.0.1-20140618.112341-18.pom
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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.1-SNAPSHOT</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> |
1 change: 1 addition & 0 deletions
1
...apshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/midi-driver-0.0.1-20140618.112341-18.pom.md5
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
abbd6cc70dbc8134034e3216e29b24be |
1 change: 1 addition & 0 deletions
1
...pshots/jp/kshoji/midi-driver/0.0.1-SNAPSHOT/midi-driver-0.0.1-20140618.112341-18.pom.sha1
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
27a6d0fce2812f057cc62b83defa324036795336 |
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
2 changes: 1 addition & 1 deletion
2
MIDIDriver/snapshots/jp/kshoji/midi-driver/maven-metadata.xml.md5
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ebcf46f8cc53571ef60a32dec32349e3 | ||
8bb173a71395eb538d04d93445684f5f |
2 changes: 1 addition & 1 deletion
2
MIDIDriver/snapshots/jp/kshoji/midi-driver/maven-metadata.xml.sha1
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e5b02a1489a1a05962edbe511b14262710e4ea71 | ||
cd600ab39f608093089fe10471886a2c4f765a91 |
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
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