hidapi 1.1 is now avalible in Maven repository so project is reconfigured to use it from there. Also corrected javadron-api pom.xml - from now every new version of api will be submitted to central maven repository
Esse commit está contido em:
+13
-1
@@ -4,7 +4,19 @@ controltower/.settings/*
|
||||
controltower/target/*
|
||||
controltower/.classpath
|
||||
controltower/.project
|
||||
controltower-android/.settings/*
|
||||
controltower-android/target/*
|
||||
controltower-android/bin/*
|
||||
controltower-android/gen/*
|
||||
controltower-android/.classpath
|
||||
controltower-android/.project
|
||||
javadrone-api/.settings/*
|
||||
javadrone-api/target/*
|
||||
javadrone-api/bin/*
|
||||
javadrone-api/gen/*
|
||||
javadrone-api/.classpath
|
||||
javadrone-api/.project
|
||||
javadrone-api/.project
|
||||
javadrone-utils/.settings/*
|
||||
javadrone-utils/target/*
|
||||
javadrone-utils/.classpath
|
||||
javadrone-utils/.project
|
||||
|
||||
@@ -19,7 +19,7 @@ limitations under the License.
|
||||
<parent>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
<artifactId>controltower-android</artifactId>
|
||||
<packaging>apk</packaging>
|
||||
@@ -88,7 +88,7 @@ limitations under the License.
|
||||
<dependency>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone-api</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>controltower</artifactId>
|
||||
@@ -58,7 +58,7 @@
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly/src.xml</descriptor>
|
||||
</descriptors>
|
||||
<finalName>${artifactId}-full-${currentVersion}</finalName>
|
||||
<finalName>${artifactId}-full-${version}</finalName>
|
||||
<appendAssemblyId>false</appendAssemblyId>
|
||||
</configuration>
|
||||
<executions>
|
||||
@@ -82,12 +82,12 @@
|
||||
<dependency>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone-api</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone-utils</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>eu.hansolo</groupId>
|
||||
|
||||
+79
-4
@@ -4,15 +4,24 @@
|
||||
<parent>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>javadrone-api</artifactId>
|
||||
<name>javadrone-api</name>
|
||||
<packaging>jar</packaging>
|
||||
<name>Java API to control Parrot's AR.Drone</name>
|
||||
<version>1.3</version>
|
||||
<description>Java API (without using native code) to control AR.Drone</description>
|
||||
|
||||
<url>http://code.google.com/p/javadrone</url>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>New BSD License</name>
|
||||
<url>http://opensource.org/licenses/BSD-3-Clause</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<build>
|
||||
<finalName>javadrone-api-${currentVersion}</finalName>
|
||||
<finalName>javadrone-api</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
@@ -68,4 +77,70 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>snapshots</id>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<scm>
|
||||
<connection>scm:hg:http://code.google.com/p/javadrone</connection>
|
||||
<developerConnection>scm:hg:https://code.google.com/p/javadrone</developerConnection>
|
||||
<url>http://code.google.com/p/javadrone</url>
|
||||
</scm>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>lord</id>
|
||||
<name>Vadim Zaliva</name>
|
||||
<email>lord@codeminders.com</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>Alexander Sova</id>
|
||||
<name>Vadim Zaliva</name>
|
||||
<email>bird@codeminders.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<name>Nexus Release Repository</name>
|
||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
||||
</repository>
|
||||
<snapshotRepository>
|
||||
<id>sonatype-nexus-snapshots</id>
|
||||
<name>Nexus Snapshots Repository</name>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
</project>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>javadrone-utils</artifactId>
|
||||
@@ -12,7 +12,7 @@
|
||||
<description>HID device controls used to controll ARDrone. And Video/Image record utils</description>
|
||||
|
||||
<build>
|
||||
<finalName>javadrone-utils-${currentVersion}</finalName>
|
||||
<finalName>javadrone-utils</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
@@ -61,18 +61,11 @@
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>local</id>
|
||||
<name>Local repository</name>
|
||||
<url>file:${basedir}/../lib/maven</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone-api</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.codeminders</groupId>
|
||||
|
||||
Arquivo binário não exibido.
@@ -1 +0,0 @@
|
||||
2c363d983267d2440d50ea6d3fd0af1ee581f95d
|
||||
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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>com.codeminders</groupId>
|
||||
<artifactId>hidapi</artifactId>
|
||||
<version>1.0</version>
|
||||
<url>http://code.google.com/p/javahidapi/</url>
|
||||
<description>JNI wrapper around C/C++ HIDAPI library providing simple java API to work with devices such as USB gamepads, joysticks, keyboards</description>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD License</name>
|
||||
<url>http://www.opensource.org/licenses/bsd-license.php</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<scm>
|
||||
<connection>scm:hg:http://code.google.com/p/javahidapi/</connection>
|
||||
</scm>
|
||||
</scm>
|
||||
</project>
|
||||
@@ -1 +0,0 @@
|
||||
b13251b02ad7d824472950e02d05746250a55685
|
||||
Arquivo binário não exibido.
@@ -1 +0,0 @@
|
||||
931d46713dd413f9e9fd747f7a2f6abda6f99c4c
|
||||
Arquivo binário não exibido.
@@ -1 +0,0 @@
|
||||
a58a1c44df6a282e2c4bf7d52d17ff349ba9a29a
|
||||
Arquivo binário não exibido.
@@ -1 +0,0 @@
|
||||
adde880b281a0088d0d6a614a0c08dc3617860c1
|
||||
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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>com.codeminders</groupId>
|
||||
<artifactId>hidapi</artifactId>
|
||||
<version>1.1</version>
|
||||
<url>http://code.google.com/p/javahidapi/</url>
|
||||
<description>JNI wrapper around C/C++ HIDAPI library providing simple java API to work with devices such as USB gamepads, joysticks, keyboards</description>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD License</name>
|
||||
<url>http://www.opensource.org/licenses/bsd-license.php</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<scm>
|
||||
<scm>
|
||||
<connection>scm:hg:http://code.google.com/p/javahidapi/</connection>
|
||||
</scm>
|
||||
</scm>
|
||||
</project>
|
||||
@@ -1 +0,0 @@
|
||||
ce2e4b4fe2d48237e97cb8777b026f4213a11bd7
|
||||
+1
-4
@@ -4,7 +4,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.codeminders</groupId>
|
||||
<artifactId>javadrone</artifactId>
|
||||
<version>${currentVersion}</version>
|
||||
<version>1.3</version>
|
||||
<name>javadrone</name>
|
||||
<packaging>pom</packaging>
|
||||
<description>Java API and demo programs to control Parrot's AR.Drone</description>
|
||||
@@ -14,7 +14,4 @@
|
||||
<module>controltower</module>
|
||||
<module>controltower-android</module>
|
||||
</modules>
|
||||
<properties>
|
||||
<currentVersion>1.3</currentVersion>
|
||||
</properties>
|
||||
</project>
|
||||
|
||||
Referência em uma Nova Issue
Bloquear um usuário