2014-05-01から1ヶ月間の記事一覧

mavenでJavaのorg.apache.commons-lang3を利用

pom.xmlに例えば <dependency> <groupId>org.apache</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> <scope>system</scope> <systemPath>${project.basedir}/lib/commons-lang3-3.3.2.jar</systemPath> </dependency> を記述。但し、libはorg.apache.commons-lang3のjarファイルが含まれるフォルダ名。 ...というのは動作不安定のため、よ…

Eclipse上でCytoscape App開発 - heap space error

Cytoscape 3 App開発でコンパイル時にどうしてもJava heap space errorが止まらない...仕方ないので、pom.xmlのmaven-compiler-pluginの部分をいじることに。 <configuration> <source>1.6</source> <target>1.6</target> <optimize>true</optimize> <fork>true</fork> <maxmem>1024m</maxmem> <showWarnings>true</showWarnings> <showDeprecation>true</showdeprecation></configuration>

gitを使い始める...

とりあえず基本的な使い方を覚えねば...。 Create a new repository on the command line touch README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/login_name/TestRepo1.gitgit push -u origin mas…