OSDN Git Service

ジンバルロック判定を改善
[mikutoga/TogaGem.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <!--
4     Maven2(or3) POM definition file
5 -->
6
7 <project
8   xmlns="http://maven.apache.org/POM/4.0.0"
9   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
11   http://maven.apache.org/maven-v4_0_0.xsd"
12 >
13     <modelVersion>4.0.0</modelVersion>
14     <!--parent/-->
15
16     <groupId>jp.sourceforge.mikutoga</groupId>
17     <artifactId>togagem</artifactId>
18
19     <version>2.102.3-SNAPSHOT</version>
20
21     <packaging>jar</packaging>
22     <name>TogaGem</name>
23
24     <description><!--
25 -->TogaGem is a file reader library for MikuMikuDance(MMD) with Java. <!--
26 -->TogaGem is a sub-project of MikuToga project. <!--
27 --></description>
28
29     <url>http://sourceforge.jp/projects/mikutoga/</url>
30     <inceptionYear>2010</inceptionYear>
31
32     <organization>
33         <name>MikuToga Partners</name>
34         <url>http://sourceforge.jp/projects/mikutoga/devel/</url>
35     </organization>
36
37     <licenses>
38         <license>
39             <name>The MIT License</name>
40             <url>http://www.opensource.org/licenses/mit-license.php</url>
41             <distribution>manual</distribution>
42         </license>
43     </licenses>
44
45     <developers>
46         <developer>
47             <id>olyutorskii</id>
48             <url>http://sites.google.com/site/olyutorskiipit/</url>
49             <organization>MikuToga Partners</organization>
50             <organizationUrl>http://sourceforge.jp/projects/mikutoga/devel/</organizationUrl>
51             <roles>
52                 <role>Project Founder</role>
53                 <role>Java Developer</role>
54             </roles>
55         </developer>
56     </developers>
57
58     <contributors/>
59     <mailingLists/>
60
61     <prerequisites>
62         <maven>2.2</maven>
63     </prerequisites>
64
65     <modules/>
66
67     <scm>
68         <connection>scm:hg:http://hg.sourceforge.jp/view/mikutoga/TogaGem</connection>
69         <developerConnection>scm:hg:ssh://hg.sourceforge.jp//hgroot/mikutoga/TogaGem</developerConnection>
70         <url>http://hg.sourceforge.jp/view/mikutoga/TogaGem</url>
71     </scm>
72
73     <issueManagement>
74         <system>SourceForge.JP</system>
75         <url>http://sourceforge.jp/projects/mikutoga/ticket/</url>
76     </issueManagement>
77
78     <ciManagement/>
79     <distributionManagement/>
80
81     <properties>
82         <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
83
84         <maven.compiler.source>1.6</maven.compiler.source>
85         <maven.compiler.target>1.6</maven.compiler.target>
86
87         <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
88         <maven.compiler.showWarnings>true</maven.compiler.showWarnings>
89
90         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
91         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
92
93         <project.mainconf>${project.basedir}/src/main/config</project.mainconf>
94
95         <checkstyle.config.location>${project.mainconf}/checks.xml</checkstyle.config.location>
96         <checkstyle.enable.rss>false</checkstyle.enable.rss>
97
98     </properties>
99
100     <dependencyManagement/>
101
102     <dependencies>
103
104         <dependency>
105             <groupId>junit</groupId>
106             <artifactId>junit</artifactId>
107             <version>4.11</version>
108             <scope>test</scope>
109         </dependency>
110
111     </dependencies>
112
113     <repositories/>
114     <pluginRepositories/>
115
116     <build>
117         <pluginManagement/>
118
119         <plugins>
120
121             <plugin>
122                 <groupId>org.apache.maven.plugins</groupId>
123                 <artifactId>maven-enforcer-plugin</artifactId>
124                 <version>1.2</version>
125                 <configuration>
126                     <rules>
127                         <requireMavenVersion>
128                             <version>[3.0,)</version>
129                         </requireMavenVersion>
130                         <requireJavaVersion>
131                             <version>[1.6,)</version>
132                         </requireJavaVersion>
133                     </rules>
134                 </configuration>
135             </plugin>
136
137             <plugin>
138                 <groupId>org.apache.maven.plugins</groupId>
139                 <artifactId>maven-install-plugin</artifactId>
140                 <version>2.4</version>
141             </plugin>
142
143             <plugin>
144                 <groupId>org.apache.maven.plugins</groupId>
145                 <artifactId>maven-clean-plugin</artifactId>
146                 <version>2.5</version>
147                 <configuration>
148                     <filesets>
149                         <fileset>
150                             <directory>${project.basedir}</directory>
151                             <includes>
152                                 <include>**/.DS_Store</include>
153                                 <include>**/_MACOSX</include>
154                                 <include>**/Thumbs.db</include>
155                                 <include>**/thumbs.db</include>
156                                 <include>**/Desktop.ini</include>
157                                 <include>**/desktop.ini</include>
158                                 <include>**/core</include>
159                             </includes>
160                         </fileset>
161                     </filesets>
162                 </configuration>
163             </plugin>
164
165             <plugin>
166                 <groupId>org.apache.maven.plugins</groupId>
167                 <artifactId>maven-compiler-plugin</artifactId>
168                 <version>3.0</version>
169                 <configuration>
170                     <source>1.6</source>  <!-- for NetBeans IDE -->
171                     <target>1.6</target>
172                     <showDeprecation>true</showDeprecation>
173                     <showWarnings>true</showWarnings>
174                     <compilerArguments>
175                         <Xlint/>
176                     </compilerArguments>
177                 </configuration>
178             </plugin>
179
180             <plugin>
181                 <groupId>org.apache.maven.plugins</groupId>
182                 <artifactId>maven-jar-plugin</artifactId>
183                 <version>2.4</version>
184                 <configuration>
185                     <archive>
186                         <manifestEntries>
187                             <Built-By>${project.organization.name}</Built-By>
188                         </manifestEntries>
189                     </archive>
190                 </configuration>
191             </plugin>
192
193             <plugin>
194                 <groupId>org.apache.maven.plugins</groupId>
195                 <artifactId>maven-assembly-plugin</artifactId>
196                 <version>2.4</version>
197                 <configuration>
198                     <descriptors>
199                         <descriptor>src/main/assembly/descriptor.xml</descriptor>
200                     </descriptors>
201                 </configuration>
202             </plugin>
203
204             <plugin>
205                 <groupId>org.apache.maven.plugins</groupId>
206                 <artifactId>maven-source-plugin</artifactId>
207                 <version>2.2.1</version>
208                 <configuration>
209                     <includePom>true</includePom>
210                     <archive>
211                         <manifestEntries>
212                             <Built-By>${project.organization.name}</Built-By>
213                         </manifestEntries>
214                     </archive>
215                 </configuration>
216                 <executions>
217                     <execution>
218                         <id>attach-sources</id>
219                         <phase>verify</phase>
220                         <goals>
221                           <goal>jar-no-fork</goal>
222                         </goals>
223                     </execution>
224                 </executions>
225             </plugin>
226
227             <plugin>
228                 <groupId>org.apache.maven.plugins</groupId>
229                 <artifactId>maven-resources-plugin</artifactId>
230                 <version>2.6</version>
231             </plugin>
232
233             <plugin>
234                 <groupId>org.apache.maven.plugins</groupId>
235                 <artifactId>maven-surefire-plugin</artifactId>
236                 <version>2.14</version>
237                 <configuration>
238                     <skipTests>false</skipTests>
239                     <enableAssertions>true</enableAssertions>
240                 </configuration>
241             </plugin>
242
243             <plugin>
244                 <groupId>org.apache.maven.plugins</groupId>
245                 <artifactId>maven-site-plugin</artifactId>
246                 <version>3.2</version>
247                 <configuration>
248                     <generateReports>true</generateReports>
249                     <locales>ja</locales>
250                     <inputEncoding>${project.build.sourceEncoding}</inputEncoding>
251                     <outputEncoding>${project.reporting.outputEncoding}</outputEncoding>
252                 </configuration>
253             </plugin>
254
255             <plugin>
256                 <groupId>org.apache.maven.plugins</groupId>
257                 <artifactId>maven-checkstyle-plugin</artifactId>
258                 <version>2.10</version>
259                 <!-- config from property value -->
260             </plugin>
261
262             <plugin>
263                 <groupId>org.apache.maven.plugins</groupId>
264                 <artifactId>maven-pmd-plugin</artifactId>
265                 <version>2.7.1</version>  <!-- 3.0 is buggy -->
266                 <configuration>
267                     <targetJdk>${maven.compiler.target}</targetJdk>
268                     <rulesets>
269                         <ruleset>${project.mainconf}/pmdrules.xml</ruleset>
270                     </rulesets>
271                 </configuration>
272             </plugin>
273
274             <plugin>
275                 <groupId>org.codehaus.mojo</groupId>
276                 <artifactId>findbugs-maven-plugin</artifactId>
277                 <version>2.5.2</version>
278                 <configuration>
279                     <effort>Max</effort>
280                     <threshold>Low</threshold>
281                     <!-- for Jenkins -->
282                     <findbugsXmlOutput>true</findbugsXmlOutput>
283                     <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
284                     <xmlOutput>true</xmlOutput>
285                 </configuration>
286             </plugin>
287
288             <plugin>
289                 <groupId>org.codehaus.mojo</groupId>
290                 <artifactId>cobertura-maven-plugin</artifactId>
291                 <version>2.5.2</version>
292                 <configuration>
293                     <encoding>${project.build.sourceEncoding}</encoding>
294                     <formats>
295                         <format>html</format>
296                         <format>xml</format> <!-- for Jenkins -->
297                     </formats>
298                 </configuration>
299             </plugin>
300
301         </plugins>
302
303         <resources>
304
305             <resource>
306                 <directory>src/main/resources</directory>
307                 <filtering>true</filtering>
308                 <includes>
309                     <include>**/version.properties</include>
310                 </includes>
311             </resource>
312
313             <resource>
314                 <directory>src/main/resources</directory>
315                 <includes>
316                     <include>**/*.txt</include>
317
318                     <include>**/*.properties</include>
319
320                     <include>**/*.xml</include>
321                     <include>**/*.xsd</include>
322                     <include>**/*.dtd</include>
323
324                     <include>**/*.html</include>
325                     <include>**/*.htm</include>
326                     <include>**/*.css</include>
327
328                     <include>**/*.png</include>
329                     <include>**/*.gif</include>
330                     <include>**/*.jpeg</include>
331                     <include>**/*.jpg</include>
332                 </includes>
333                 <excludes>
334                     <exclude>**/version.properties</exclude>
335
336                     <exclude>**/.DS_Store</exclude>
337                     <exclude>**/_MACOSX</exclude>
338                     <exclude>**/Thumbs.db</exclude>
339                     <exclude>**/thumbs.db</exclude>
340                     <exclude>**/Desktop.ini</exclude>
341                     <exclude>**/desktop.ini</exclude>
342                     <exclude>**/core</exclude>
343                 </excludes>
344             </resource>
345
346         </resources>
347
348     </build>
349
350     <reporting>
351
352         <plugins>
353
354             <plugin>
355                 <groupId>org.apache.maven.plugins</groupId>
356                 <artifactId>maven-project-info-reports-plugin</artifactId>
357                 <version>2.6</version>
358                 <configuration>
359                     <linkOnly>true</linkOnly>
360                     <offline>true</offline>
361                 </configuration>
362                 <reportSets>
363                     <reportSet>
364                         <reports>
365                             <report>index</report>
366                             <report>summary</report>
367                             <report>license</report>
368                             <report>dependencies</report>
369                             <report>plugins</report>
370                             <report>scm</report>
371                             <report>project-team</report>
372 <!--
373                             <report>dependency-convergence</report>
374                             <report>dependency-info</report>
375                             <report>dependency-management</report>
376                             <report>distribution-management</report>
377                             <report>issue-tracking</report>
378                             <report>mailing-list</report>
379                             <report>modules</report>
380                             <report>plugin-management</report>
381 -->
382                         </reports>
383                     </reportSet>
384                 </reportSets>
385             </plugin>
386
387             <plugin>
388                 <groupId>org.apache.maven.plugins</groupId>
389                 <artifactId>maven-javadoc-plugin</artifactId>
390                 <version>2.9</version>
391                 <configuration>
392                     <skip>false</skip>
393                     <notimestamp>true</notimestamp>
394                     <quiet>true</quiet>
395                     <show>protected</show>
396                     <stylesheet>maven</stylesheet>
397                 </configuration>
398                 <reportSets>
399                     <reportSet>
400                         <reports>
401                             <report>javadoc</report>
402                         </reports>
403                     </reportSet>
404                 </reportSets>
405             </plugin>
406
407             <plugin>
408                 <groupId>org.apache.maven.plugins</groupId>
409                 <artifactId>maven-jxr-plugin</artifactId>
410                 <version>2.3</version>
411                 <configuration>
412                     <skip>false</skip>
413                 </configuration>
414             </plugin>
415
416             <plugin>
417                 <groupId>org.apache.maven.plugins</groupId>
418                 <artifactId>maven-surefire-report-plugin</artifactId>
419                 <version>2.14</version>
420                 <configuration>
421                     <showSuccess>false</showSuccess>
422                 </configuration>
423                 <reportSets>
424                     <reportSet>
425                         <reports>
426                             <report>report-only</report>
427                         </reports>
428                     </reportSet>
429                 </reportSets>
430             </plugin>
431
432             <plugin>
433                 <groupId>org.codehaus.mojo</groupId>
434                 <artifactId>cobertura-maven-plugin</artifactId>
435                 <version>2.5.2</version>
436                 <configuration>
437                     <encoding>${project.build.sourceEncoding}</encoding>
438                     <formats>
439                         <format>html</format>
440                         <format>xml</format> <!-- for Jenkins -->
441                     </formats>
442                 </configuration>
443             </plugin>
444
445             <plugin>
446                 <groupId>org.apache.maven.plugins</groupId>
447                 <artifactId>maven-checkstyle-plugin</artifactId>
448                 <version>2.10</version>
449                 <configuration>
450                     <skip>false</skip>
451                     <!-- config from property value -->
452                 </configuration>
453                 <reportSets>
454                     <reportSet>
455                         <reports>
456                             <report>checkstyle</report>
457                         </reports>
458                     </reportSet>
459                 </reportSets>
460             </plugin>
461
462             <plugin>
463                 <groupId>org.apache.maven.plugins</groupId>
464                 <artifactId>maven-pmd-plugin</artifactId>
465                 <version>2.7.1</version>  <!-- 3.0 is buggy -->
466                 <configuration>
467                     <skip>false</skip>
468                     <targetJdk>${maven.compiler.target}</targetJdk>
469                     <rulesets>
470                         <ruleset>${project.mainconf}/pmdrules.xml</ruleset>
471                     </rulesets>
472                 </configuration>
473                 <reportSets>
474                     <reportSet>
475                         <reports>
476                             <report>pmd</report>
477                             <report>cpd</report>
478                         </reports>
479                     </reportSet>
480                 </reportSets>
481             </plugin>
482
483             <plugin>
484                 <groupId>org.codehaus.mojo</groupId>
485                 <artifactId>findbugs-maven-plugin</artifactId>
486                 <version>2.5.2</version>
487                 <configuration>
488                     <skip>false</skip>
489                     <effort>Max</effort>
490                     <threshold>Low</threshold>
491                     <!-- for Jenkins -->
492                     <findbugsXmlOutput>true</findbugsXmlOutput>
493                     <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
494                     <xmlOutput>true</xmlOutput>
495                     <!-- excludeFilterFile/ -->
496                 </configuration>
497             </plugin>
498
499             <plugin>
500                 <groupId>org.codehaus.mojo</groupId>
501                 <artifactId>javancss-maven-plugin</artifactId>
502                 <version>2.0</version>
503             </plugin>
504
505             <plugin>
506                 <groupId>org.codehaus.mojo</groupId>
507                 <artifactId>jdepend-maven-plugin</artifactId>
508                 <version>2.0-beta-2</version>
509             </plugin>
510
511         </plugins>
512
513     </reporting>
514
515     <profiles/>
516
517 </project>
518
519 <!-- EOF -->