OSDN Git Service

modify SCM informations.
[mikutoga/Vmd2XML.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2
3 <!--
4     Maven3 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/xsd/maven-4.0.0.xsd"
12 >
13     <modelVersion>4.0.0</modelVersion>
14     <!--parent/-->
15
16     <groupId>jp.sourceforge.mikutoga</groupId>
17     <artifactId>vmd2xml</artifactId>
18
19     <version>2.101.104-SNAPSHOT</version>
20
21     <packaging>jar</packaging>
22     <name>Vmd2XML</name>
23
24     <description><!--
25 -->Vmd2XML is a VMD-XML converter for MikuMikuDance.<!--
26  --></description>
27
28     <url>https://ja.osdn.net/projects/mikutoga/devel/</url>
29     <inceptionYear>2011</inceptionYear>
30
31     <organization>
32         <name>MikuToga Partners</name>
33         <url>https://ja.osdn.net/projects/mikutoga/devel/</url>
34     </organization>
35
36     <licenses>
37         <license>
38             <name>The MIT License</name>
39             <url>https://opensource.org/licenses/MIT</url>
40             <distribution>manual</distribution>
41         </license>
42     </licenses>
43
44     <developers>
45         <developer>
46             <id>olyutorskii</id>
47             <url>https://sites.google.com/site/olyutorskiipit/</url>
48             <organization>MikuToga Partners</organization>
49             <organizationUrl>https://ja.osdn.net/projects/mikutoga/devel/</organizationUrl>
50             <roles>
51                 <role>Project Founder</role>
52                 <role>Java Developer</role>
53             </roles>
54         </developer>
55     </developers>
56
57     <contributors/>
58     <mailingLists/>
59
60     <!-- prerequisites/ -->
61
62     <modules/>
63
64     <scm>
65         <connection>scm:git:git://git.osdn.net/gitroot/mikutoga/Vmd2XML.git</connection>
66         <developerConnection>scm:git:https://scm.osdn.net/gitroot/mikutoga/Vmd2XML.git</developerConnection>
67         <url>https://ja.osdn.net/projects/mikutoga/scm/git/Vmd2XML/</url>
68     </scm>
69
70     <issueManagement>
71         <system>OSDN.net</system>
72         <url>https://ja.osdn.net/projects/mikutoga/ticket/</url>
73     </issueManagement>
74
75     <ciManagement/>
76     <distributionManagement/>
77
78     <properties>
79         <maven.compiler.source>1.8</maven.compiler.source>
80         <maven.compiler.target>1.8</maven.compiler.target>
81
82         <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
83         <maven.compiler.showWarnings>true</maven.compiler.showWarnings>
84
85         <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
86         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
87         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
88
89         <locale>en</locale>
90         <site.locales>${locale}</site.locales>
91         <javadoc.locale>${locale}</javadoc.locale>
92         <spotbugs.jvmArgs>-Duser.language=${locale}</spotbugs.jvmArgs>
93
94         <project.mainconf>${project.basedir}/src/main/config</project.mainconf>
95
96         <surefire-plugin.version>3.0.0-M3</surefire-plugin.version>
97         <jacoco-plugin.version>0.8.4</jacoco-plugin.version>
98
99         <checkstyle.config.location>${project.mainconf}/checks.xml</checkstyle.config.location>
100         <checkstyle.enable.rss>false</checkstyle.enable.rss>
101
102         <spotbugs-plugin.version>3.1.11</spotbugs-plugin.version>
103         <spotbugs.effort>Max</spotbugs.effort>
104         <spotbugs.threshold>Low</spotbugs.threshold>
105         <!-- for Jenkins -->
106         <spotbugs.xmlOutput>true</spotbugs.xmlOutput>
107
108         <project.mainentry>jp.sfjp.mikutoga.vmd2xml.Vmd2Xml</project.mainentry>
109
110     </properties>
111
112     <dependencyManagement/>
113
114     <dependencies>
115
116         <dependency>
117             <groupId>junit</groupId>
118             <artifactId>junit</artifactId>
119             <version>4.12</version>
120             <scope>test</scope>
121         </dependency>
122
123         <dependency>
124             <groupId>jp.sourceforge.mikutoga</groupId>
125             <artifactId>togagem</artifactId>
126             <version>3.120.2</version>
127             <scope>compile</scope>
128         </dependency>
129
130     </dependencies>
131
132     <repositories/>
133     <pluginRepositories/>
134
135     <build>
136
137         <pluginManagement>
138
139             <plugins>
140             </plugins>
141
142         </pluginManagement>
143
144         <plugins>
145
146
147             <!-- clean lifecycle -->
148
149             <plugin>
150                 <groupId>org.apache.maven.plugins</groupId>
151                 <artifactId>maven-clean-plugin</artifactId>
152                 <version>3.1.0</version>
153                 <configuration>
154                     <filesets>
155                         <fileset>
156                             <directory>${project.basedir}</directory>
157                             <includes>
158                                 <include>**/*~</include>
159                                 <include>**/*.swp</include>
160                                 <include>**/*.DS_Store</include>
161                                 <include>**/._*</include>
162                                 <include>**/__MACOSX</include>
163                                 <include>**/Thumbs.db</include>
164                                 <include>**/desktop.ini</include>
165                                 <include>**/core</include>
166                                 <include>**/hs_err_pid*</include>
167                             </includes>
168                         </fileset>
169                     </filesets>
170                 </configuration>
171             </plugin>
172
173
174             <!-- default lifecycle -->
175
176             <plugin>
177                 <groupId>org.apache.maven.plugins</groupId>
178                 <artifactId>maven-enforcer-plugin</artifactId>
179                 <version>3.0.0-M2</version>
180                 <executions>
181                     <execution>
182                         <id>enforce-versions</id>
183                         <goals>
184                             <goal>enforce</goal>
185                         </goals>
186                         <configuration>
187                             <rules>
188                                 <requireMavenVersion>
189                                     <version>[3.3.9,)</version>
190                                 </requireMavenVersion>
191                                 <requireJavaVersion>
192                                     <version>[1.8,)</version>
193                                 </requireJavaVersion>
194                             </rules>
195                         </configuration>
196                     </execution>
197                 </executions>
198             </plugin>
199
200             <plugin>
201                 <groupId>org.apache.maven.plugins</groupId>
202                 <artifactId>maven-resources-plugin</artifactId>
203                 <version>3.1.0</version>
204             </plugin>
205
206             <plugin>
207                 <groupId>org.apache.maven.plugins</groupId>
208                 <artifactId>maven-compiler-plugin</artifactId>
209                 <version>3.8.1</version>
210                 <configuration>
211                     <source>1.8</source>  <!-- for NetBeans IDE -->
212                     <target>1.8</target>
213                     <compilerArguments>
214                         <Xlint/>
215                     </compilerArguments>
216                     <showWarnings>true</showWarnings>
217                     <showDeprecation>true</showDeprecation>
218                 </configuration>
219             </plugin>
220
221             <plugin>
222                 <groupId>org.apache.maven.plugins</groupId>
223                 <artifactId>maven-surefire-plugin</artifactId>
224                 <version>${surefire-plugin.version}</version>
225                 <configuration>
226                     <enableAssertions>true</enableAssertions>
227                 </configuration>
228             </plugin>
229
230             <plugin>
231                 <groupId>org.jacoco</groupId>
232                 <artifactId>jacoco-maven-plugin</artifactId>
233                 <version>${jacoco-plugin.version}</version>
234                 <executions>
235                     <execution>
236                         <id>default-prepare-agent</id>
237                         <goals>
238                             <goal>prepare-agent</goal>
239                         </goals>
240                     </execution>
241                     <execution>
242                         <id>default-report</id>
243                         <phase>prepare-package</phase>
244                         <goals>
245                             <goal>report</goal>
246                         </goals>
247                     </execution>
248                     <execution>
249                         <id>default-check</id>
250                         <goals>
251                             <goal>check</goal>
252                         </goals>
253                         <configuration>
254                             <rules>
255                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
256                                     <element>BUNDLE</element>
257                                     <limits>
258                                         <limit implementation="org.jacoco.report.check.Limit">
259                                             <counter>COMPLEXITY</counter>
260                                             <value>COVEREDRATIO</value>
261                                             <minimum>0.0</minimum>
262                                         </limit>
263                                     </limits>
264                                 </rule>
265                             </rules>
266                         </configuration>
267                     </execution>
268                 </executions>
269             </plugin>
270
271             <plugin>
272                 <groupId>org.apache.maven.plugins</groupId>
273                 <artifactId>maven-jar-plugin</artifactId>
274                 <version>3.1.2</version>
275                 <configuration>
276                     <archive>
277                         <manifest>
278                             <mainClass>${project.mainentry}</mainClass>
279                             <addDefaultImplementationEntries>
280                                 true
281                             </addDefaultImplementationEntries>
282                         </manifest>
283                         <manifestEntries>
284                             <Built-By>${project.organization.name}</Built-By>
285                         </manifestEntries>
286                     </archive>
287                 </configuration>
288             </plugin>
289
290             <plugin>
291                 <groupId>org.apache.maven.plugins</groupId>
292                 <artifactId>maven-shade-plugin</artifactId>
293                 <version>3.2.1</version>
294                 <executions>
295                     <execution>
296                         <phase>package</phase>
297                         <goals>
298                           <goal>shade</goal>
299                         </goals>
300                         <configuration>
301                             <createDependencyReducedPom>false</createDependencyReducedPom>
302                             <artifactSet>
303                                 <includes>
304                                     <include>jp.sourceforge.mikutoga:togagem</include>
305                                 </includes>
306                                 <excludes>
307                                     <exclude>junit:junit</exclude>
308                                 </excludes>
309                             </artifactSet>
310                         </configuration>
311                     </execution>
312                 </executions>
313             </plugin>
314
315             <plugin>
316                 <groupId>org.apache.maven.plugins</groupId>
317                 <artifactId>maven-source-plugin</artifactId>
318                 <version>3.1.0</version>
319                 <configuration>
320                     <includePom>true</includePom>
321                     <archive>
322                         <manifestEntries>
323                             <Built-By>${project.organization.name}</Built-By>
324                         </manifestEntries>
325                     </archive>
326                 </configuration>
327                 <executions>
328                     <execution>
329                         <id>attach-sources</id>
330                         <phase>verify</phase>
331                         <goals>
332                           <goal>jar-no-fork</goal>
333                         </goals>
334                     </execution>
335                 </executions>
336             </plugin>
337
338             <plugin>
339                 <groupId>org.apache.maven.plugins</groupId>
340                 <artifactId>maven-install-plugin</artifactId>
341                 <version>3.0.0-M1</version>
342             </plugin>
343
344             <plugin>
345                 <groupId>org.apache.maven.plugins</groupId>
346                 <artifactId>maven-deploy-plugin</artifactId>
347                 <version>3.0.0-M1</version>
348             </plugin>
349
350
351             <!-- site lifecycle -->
352
353             <plugin>
354                 <groupId>org.apache.maven.plugins</groupId>
355                 <artifactId>maven-site-plugin</artifactId>
356                 <version>3.7.1</version>
357                 <configuration>
358                     <locales>${site.locales}</locales>
359                 </configuration>
360             </plugin>
361
362
363             <!-- goals without lifecycle -->
364
365             <plugin>
366                 <groupId>org.apache.maven.plugins</groupId>
367                 <artifactId>maven-assembly-plugin</artifactId>
368                 <version>2.4</version>
369                 <configuration>
370                     <archiveBaseDirectory>.</archiveBaseDirectory>
371                     <descriptors>
372                         <descriptor>src/main/assembly/descriptor.xml</descriptor>
373                     </descriptors>
374                 </configuration>
375             </plugin>
376
377             <plugin>
378                 <groupId>org.apache.maven.plugins</groupId>
379                 <artifactId>maven-checkstyle-plugin</artifactId>
380                 <version>2.10</version>
381                 <!-- config from property value -->
382             </plugin>
383
384             <plugin>
385                 <groupId>org.apache.maven.plugins</groupId>
386                 <artifactId>maven-pmd-plugin</artifactId>
387                 <version>3.0.1</version>
388                 <configuration>
389                     <!--targetJdk>${maven.compiler.target}</targetJdk-->
390                     <rulesets>
391                         <ruleset>${project.mainconf}/pmdrules.xml</ruleset>
392                     </rulesets>
393                 </configuration>
394             </plugin>
395
396             <plugin>
397                 <groupId>com.github.spotbugs</groupId>
398                 <artifactId>spotbugs-maven-plugin</artifactId>
399                 <version>${spotbugs-plugin.version}</version>
400             </plugin>
401
402         </plugins>
403
404         <resources>
405
406             <resource>
407                 <directory>src/main/resources</directory>
408                 <filtering>true</filtering>
409                 <includes>
410                     <include>**/version.properties</include>
411                 </includes>
412             </resource>
413
414             <resource>
415                 <directory>src/main/resources</directory>
416                 <includes>
417                     <include>**/*.txt</include>
418
419                     <include>**/*.properties</include>
420
421                     <include>**/*.xml</include>
422                     <include>**/*.xsd</include>
423                     <include>**/*.dtd</include>
424
425                     <include>**/*.html</include>
426                     <include>**/*.htm</include>
427                     <include>**/*.css</include>
428
429                     <include>**/*.png</include>
430                     <include>**/*.gif</include>
431                     <include>**/*.jpeg</include>
432                     <include>**/*.jpg</include>
433                 </includes>
434                 <excludes>
435                     <exclude>**/version.properties</exclude>
436
437                     <exclude>**/.DS_Store</exclude>
438                     <exclude>**/__MACOSX</exclude>
439                     <exclude>**/Thumbs.db</exclude>
440                     <exclude>**/thumbs.db</exclude>
441                     <exclude>**/Desktop.ini</exclude>
442                     <exclude>**/desktop.ini</exclude>
443                     <exclude>**/core</exclude>
444                 </excludes>
445             </resource>
446
447         </resources>
448
449     </build>
450
451     <reporting>
452
453         <plugins>
454
455             <plugin>
456                 <groupId>org.apache.maven.plugins</groupId>
457                 <artifactId>maven-project-info-reports-plugin</artifactId>
458                 <version>3.0.0</version>
459                 <configuration>
460                     <linkOnly>true</linkOnly>
461                     <offline>true</offline>
462                 </configuration>
463                 <reportSets>
464                     <reportSet>
465                         <reports>
466                             <report>index</report>
467                             <report>summary</report>
468                             <report>licenses</report>
469                             <report>dependency-info</report>
470                             <report>dependencies</report>
471                             <report>dependency-convergence</report>
472                             <report>plugins</report>
473                             <report>plugin-management</report>
474                             <report>team</report>
475                             <report>issue-management</report>
476                             <report>scm</report>
477 <!--
478                             <report>dependency-management</report>
479                             <report>distribution-management</report>
480                             <report>ci-management</report>
481                             <report>mailing-lists</report>
482                             <report>modules</report>
483 -->
484                         </reports>
485                     </reportSet>
486                 </reportSets>
487             </plugin>
488
489             <plugin>
490                 <groupId>org.apache.maven.plugins</groupId>
491                 <artifactId>maven-javadoc-plugin</artifactId>
492                 <version>2.9</version>
493                 <configuration>
494                     <skip>false</skip>
495                     <notimestamp>true</notimestamp>
496                     <quiet>true</quiet>
497                     <show>protected</show>
498                     <stylesheet>maven</stylesheet>
499                 </configuration>
500                 <reportSets>
501                     <reportSet>
502                         <reports>
503                             <report>javadoc</report>
504                         </reports>
505                     </reportSet>
506                 </reportSets>
507             </plugin>
508
509             <plugin>
510                 <groupId>org.apache.maven.plugins</groupId>
511                 <artifactId>maven-jxr-plugin</artifactId>
512                 <version>3.0.0</version>
513             </plugin>
514
515             <plugin>
516                 <groupId>org.apache.maven.plugins</groupId>
517                 <artifactId>maven-surefire-report-plugin</artifactId>
518                 <version>${surefire-plugin.version}</version>
519             </plugin>
520
521             <plugin>
522                 <groupId>org.jacoco</groupId>
523                 <artifactId>jacoco-maven-plugin</artifactId>
524                 <version>${jacoco-plugin.version}</version>
525                 <reportSets>
526                     <reportSet>
527                         <reports>
528                             <report>report</report>
529                         </reports>
530                     </reportSet>
531                 </reportSets>
532             </plugin>
533
534             <plugin>
535                 <groupId>org.apache.maven.plugins</groupId>
536                 <artifactId>maven-checkstyle-plugin</artifactId>
537                 <version>2.10</version>
538                 <configuration>
539                     <skip>false</skip>
540                     <!-- config from property value -->
541                 </configuration>
542                 <reportSets>
543                     <reportSet>
544                         <reports>
545                             <report>checkstyle</report>
546                         </reports>
547                     </reportSet>
548                 </reportSets>
549             </plugin>
550
551             <plugin>
552                 <groupId>org.apache.maven.plugins</groupId>
553                 <artifactId>maven-pmd-plugin</artifactId>
554                 <version>3.0.1</version>
555                 <configuration>
556                     <skip>false</skip>
557                     <!--targetJdk>${maven.compiler.target}</targetJdk-->
558                     <rulesets>
559                         <ruleset>${project.mainconf}/pmdrules.xml</ruleset>
560                     </rulesets>
561                 </configuration>
562                 <reportSets>
563                     <reportSet>
564                         <reports>
565                             <report>pmd</report>
566                             <report>cpd</report>
567                         </reports>
568                     </reportSet>
569                 </reportSets>
570             </plugin>
571
572             <plugin>
573                 <groupId>com.github.spotbugs</groupId>
574                 <artifactId>spotbugs-maven-plugin</artifactId>
575                 <version>${spotbugs-plugin.version}</version>
576             </plugin>
577
578         </plugins>
579
580     </reporting>
581
582     <profiles/>
583
584 </project>
585
586 <!-- EOF -->