|
24 | 24 | <compilerArgument>${compilerArgument}</compilerArgument> |
25 | 25 | </configuration> |
26 | 26 | </plugin> |
| 27 | + <plugin> |
| 28 | + <groupId>org.apache.maven.plugins</groupId> |
| 29 | + <artifactId>maven-source-plugin</artifactId> |
| 30 | + <version>3.0.1</version> |
| 31 | + <executions> |
| 32 | + <execution> |
| 33 | + <id>attach-sources</id> |
| 34 | + <goals> |
| 35 | + <goal>jar-no-fork</goal> |
| 36 | + </goals> |
| 37 | + </execution> |
| 38 | + </executions> |
| 39 | + </plugin> |
| 40 | + <plugin> |
| 41 | + <groupId>org.apache.maven.plugins</groupId> |
| 42 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 43 | + <version>3.1.0</version> |
| 44 | + <configuration> |
| 45 | + <source>${java.version}</source> |
| 46 | + <locale>en_US</locale> |
| 47 | + <show>public</show> |
| 48 | + </configuration> |
| 49 | + <executions> |
| 50 | + <execution> |
| 51 | + <id>attach-javadocs</id> |
| 52 | + <goals> |
| 53 | + <goal>jar</goal> |
| 54 | + </goals> |
| 55 | + </execution> |
| 56 | + </executions> |
| 57 | + </plugin> |
27 | 58 | </plugins> |
28 | 59 | </build> |
29 | 60 |
|
|
39 | 70 | <url>https://github.com/WorksApplications/jdartsclone</url> |
40 | 71 | <description>A library of TRIE structure using Double-Array</description> |
41 | 72 | <inceptionYear>2017</inceptionYear> |
| 73 | + |
42 | 74 | <licenses> |
43 | 75 | <license> |
44 | 76 | <name>Apache License, Version 2.0</name> |
45 | 77 | <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
46 | 78 | </license> |
47 | 79 | </licenses> |
| 80 | + |
48 | 81 | <organization> |
49 | 82 | <name>Works Applications Co., Ltd.</name> |
50 | 83 | <url>http://www.worksap.com/</url> |
51 | 84 | </organization> |
| 85 | + |
52 | 86 | <developers> |
53 | 87 | <developer> |
54 | 88 | <id>kazuma-t</id> |
|
57 | 91 | <timezone>Asia/Tokyo</timezone> |
58 | 92 | </developer> |
59 | 93 | </developers> |
| 94 | + |
60 | 95 | <issueManagement> |
61 | 96 | <system>GitHub Issues</system> |
62 | 97 | <url>https://github.com/WorksApplications/jdartsclone/issues</url> |
|
67 | 102 | <url>https://github.com/WorksApplications/jdartsclone</url> |
68 | 103 | </scm> |
69 | 104 |
|
| 105 | + <distributionManagement> |
| 106 | + <snapshotRepository> |
| 107 | + <id>ossrh</id> |
| 108 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 109 | + </snapshotRepository> |
| 110 | + <repository> |
| 111 | + <id>ossrh</id> |
| 112 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 113 | + </repository> |
| 114 | + </distributionManagement> |
| 115 | + |
70 | 116 | </project> |
0 commit comments