File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ so show me the goods.
3939- Validating data: Parsing string data to Field values (casting)
4040 - [ Row Casting] ( docs/casting.md#row-casting ) to check String arrays against a Schema
4141 - [ Field Casting] ( docs/casting.md#field-casting ) to check Strings against a Field definition
42-
42+ - [ Javadoc] ( docs/javadoc/allclasses-index.html )
43+
4344## Contributing
4445
4546Found a problem and would like to fix it? Have that great idea and would love to see it in the repository?
Original file line number Diff line number Diff line change 6969 <groupId >org.apache.maven.plugins</groupId >
7070 <artifactId >maven-resources-plugin</artifactId >
7171 <version >${maven-resources-plugin.version} </version >
72+ <executions >
73+ <execution >
74+ <id >copy-javadoc</id >
75+ <phase >package</phase >
76+ <goals >
77+ <goal >testResources</goal >
78+ </goals >
79+ <configuration >
80+ <outputDirectory >${basedir} /docs/javadoc</outputDirectory >
81+ <resources >
82+ <resource >
83+ <directory >${basedir} /target/apidocs</directory >
84+ <filtering >false</filtering >
85+ </resource >
86+ </resources >
87+ </configuration >
88+ </execution >
89+ </executions >
7290 <configuration >
7391 <encoding >UTF-8</encoding >
7492 </configuration >
You can’t perform that action at this time.
0 commit comments