OSDN Git Service

change internal process method, which introducing ExtractionResultSet
[stigmata/stigmata.git] / src / site / apt / download.apt
1  ----\r
2  Download\r
3  ----\r
4  Haruaki Tamada\r
5  ----\r
6  2007-07-08\r
7  ----\r
8 \r
9 Download\r
10 \r
11 *License\r
12 \r
13  Stigmata: Java birthmark toolkit\r
14 \r
15  Apache License 2.0\r
16 \r
17  Copyright (C) 2006-2007  Haruaki TAMADA, Ph.D.\r
18 \r
19  Licensed under the Apache License, Version 2.0 (the "License"); you\r
20 may not use this file except in compliance with the License. You may\r
21 obtain a copy of the License at\r
22 \r
23  http://www.apache.org/licenses/LICENSE-2.0\r
24 \r
25  Unless required by applicable law or agreed to in writing, software\r
26 distributed under the License is distributed on an "AS IS" BASIS,\r
27 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r
28 implied. See the License for the specific language governing\r
29 permissions and limitations under the License.\r
30 \r
31 *Requirements\r
32 \r
33  *{{{http://asm.objectweb.org/}ASM}} 2.2.3\r
34 \r
35  *{{{http://commons.cafebabe.jp/xmlcli/}Jakarta Commons CLI}} 1.0\r
36 \r
37  *{{{http://talisman.sourceforge.jp/xmlcli/}XmlCli}} 1.2.1\r
38 \r
39  *{{{http://math.nist.gov/javanumerics/jama/}Jama}} 1.0.2 (stigmata-1.0.0 or later; this library is distributed from stigmata maven2 remote repository)\r
40 \r
41  *{{{http://browserlaunch2.sourceforge.net/}BrowserLauncher2}} 1.2 (stigmata-1.1.0 or later; as needed)\r
42 \r
43  *{{{http://www.junit.org/}JUnit}} 4.1\r
44 \r
45  []\r
46 \r
47 **How to install requirements into your Maven local repository\r
48 \r
49  If you want to compile stigmata from source codes, you may install\r
50 manually Jama and BrowserLauncher2 into your maven2 local repository.\r
51 Because maven2 default remote repository do not has them.  Other\r
52 libraries can be automatically downloaded by Maven2.\r
53 \r
54  type below command for installing jar product into your maven2 local\r
55 repository.\r
56 \r
57 ----\r
58 $ mvn install:install-file \\r
59   -Dfile=<jar file path to install> \\r
60   -DgroupId=<groupId> \\r
61   -DartifactID=<artifactId> \\r
62   -Dversion=<version> \\r
63   -Dpackaging=jar\r
64 ----\r
65 \r
66  For example, installing Jama-1.0.2.jar into maven local repository,\r
67 copy and paste below command.\r
68 \r
69 ----\r
70 $ mvn install:install-file \\r
71   -Dfile=./Jama-1.0.2.jar \\r
72   -DgroupId=Jama \\r
73   -DartifactID=Jama \\r
74   -Dversion=1.0.2 \\r
75   -Dpackaging=jar\r
76 ----\r
77 \r
78 *Manually download\r
79 \r
80  You can download release build from {{{http://sourceforge.jp/}sourceforge.jp}}. \r
81 \r
82  {{{https://sourceforge.jp/projects/stigmata/files/}Download}}\r
83 \r
84  You can see stigmata-x.x.x-bin.jar, stigmata-x.x.x-src.jar, and\r
85  stigmata-x.x.x-exe.jar.  Each packages mean as followings.\r
86 \r
87  [stigmata-x.x.x-bin.jar] binary distribution package, contains class\r
88    files and resource files.\r
89 \r
90  [stigmata-x.x.x-src.jar] source distribution package, contains\r
91  pom.xml, source files, resource files and documents.\r
92  \r
93  [stigmata-x.x.x-exe.jar] Executable distribution package, contains\r
94  Windows executable file named stigmata.exe.\r
95 \r
96 *Binary download by maven2 \r
97 \r
98  You can get a jar file of stigmata by Maven2 using below setting.\r
99 First, add remote repository entry to repositories tag in `pom.xml.'\r
100 Next, add dependency tag entry to dependencies tag in `pom.xml.'\r
101 \r
102 ----\r
103 <project>\r
104     :\r
105   <repositories>\r
106     <repository>\r
107       <id>stigmata.sourceforge.jp</id>\r
108       <name>Stigmata Maven2 Repository in sourceforge.jp</name>\r
109       <url>http://stigmata.sourceforge.jp/maven2</url>\r
110     </repository>\r
111   </repositories>\r
112     :\r
113 \r
114     :\r
115   <dependencies>\r
116       :\r
117     <dependency>\r
118       <groupId>jp.naist.se</groupId>\r
119       <artifactId>stigmata</artifactId>\r
120       <version>1.0.0</version>\r
121     </dependency>\r
122       :\r
123   </dependencies>\r
124     :\r
125 </project>\r
126 ----\r
127 \r
128 *SCM\r
129 \r
130 **Subversion\r
131 \r
132  The source can be checked out anonymously from Subversion.\r
133 \r
134 ----\r
135 $ svn checkout http://svn.sourceforge.jp/svnroot/stigmata/trunk/ stigmata\r
136 ----\r
137 \r
138 **Web access\r
139 \r
140  You can browse the source code from following link.\r
141 \r
142  {{http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=stigmata}}\r
143 \r