• R/O
  • SSH

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

最古版。新版→https://osdn.jp/users/tacticsrealize/pf/ChlorophyllUploader/wiki/FrontPage


Commit MetaInfo

修订版5996d733465b6723ecf9879facd4424296d675d4 (tree)
时间2015-07-17 15:12:12
作者MirrgieRiana Kurilab
CommiterMirrgieRiana Kurilab

Log Message

ChlorophyllUploader: rxtxのjarを埋め込みではなくmaven経由で指定

更改概述

差异

diff -r b9e2ddd6252c -r 5996d733465b workspace/ChlorophyllUploader/.classpath
--- a/workspace/ChlorophyllUploader/.classpath Thu Jul 16 21:49:30 2015 +0900
+++ b/workspace/ChlorophyllUploader/.classpath Fri Jul 17 15:12:12 2015 +0900
@@ -25,7 +25,6 @@
2525 <classpathentry combineaccessrules="false" kind="src" path="/jp.hishidama"/>
2626 <classpathentry combineaccessrules="false" kind="src" path="/mirrg.swing.helium"/>
2727 <classpathentry kind="lib" path="mirrg.struct.hydrogen-20150715.jar"/>
28- <classpathentry kind="lib" path="RXTXcomm.jar"/>
2928 <classpathentry combineaccessrules="false" kind="src" path="/mirrg.serial.fluorine"/>
3029 <classpathentry combineaccessrules="false" kind="src" path="/TunnelSerialToIEEE1888"/>
3130 <classpathentry kind="output" path="target/classes"/>
diff -r b9e2ddd6252c -r 5996d733465b workspace/ChlorophyllUploader/RXTXcomm.jar
Binary file workspace/ChlorophyllUploader/RXTXcomm.jar has changed
diff -r b9e2ddd6252c -r 5996d733465b workspace/ChlorophyllUploader/pom.xml
--- a/workspace/ChlorophyllUploader/pom.xml Thu Jul 16 21:49:30 2015 +0900
+++ b/workspace/ChlorophyllUploader/pom.xml Fri Jul 17 15:12:12 2015 +0900
@@ -1,30 +1,39 @@
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3- <modelVersion>4.0.0</modelVersion>
4-
5- <groupId>jp.ac.kisarazu.j.kurilab</groupId>
6- <artifactId>ChlorophyllUploader</artifactId>
7- <version>0.0.1-SNAPSHOT</version>
8- <packaging>jar</packaging>
9-
10- <name>cf-uploader</name>
11- <url>http://maven.apache.org</url>
2+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+ <modelVersion>4.0.0</modelVersion>
124
13- <properties>
14- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15- </properties>
5+ <groupId>jp.ac.kisarazu.j.kurilab</groupId>
6+ <artifactId>ChlorophyllUploader</artifactId>
7+ <version>0.0.1-SNAPSHOT</version>
8+ <packaging>jar</packaging>
169
17- <dependencies>
18- <dependency>
19- <groupId>junit</groupId>
20- <artifactId>junit</artifactId>
21- <version>4.12</version>
22- <scope>test</scope>
23- </dependency>
24- <dependency>
25- <groupId>net.sf.opencsv</groupId>
26- <artifactId>opencsv</artifactId>
27- <version>2.3</version>
28- </dependency>
29- </dependencies>
10+ <name>cf-uploader</name>
11+ <url>http://maven.apache.org</url>
12+
13+ <properties>
14+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+ </properties>
16+
17+ <dependencies>
18+ <dependency>
19+ <groupId>junit</groupId>
20+ <artifactId>junit</artifactId>
21+ <version>4.12</version>
22+ <scope>test</scope>
23+ </dependency>
24+ <dependency>
25+ <groupId>net.sf.opencsv</groupId>
26+ <artifactId>opencsv</artifactId>
27+ <version>2.3</version>
28+ </dependency>
29+ <dependency>
30+ <groupId>xstream</groupId>
31+ <artifactId>xstream</artifactId>
32+ <version>1.2.2</version>
33+ </dependency><dependency>
34+ <groupId>org.rxtx</groupId>
35+ <artifactId>rxtx</artifactId>
36+ <version>2.1.7</version>
37+ </dependency>
38+ </dependencies>
3039 </project>