Skip to content

Commit 9613853

Browse files
Grooming of pom.xml
1 parent 19e53eb commit 9613853

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

4546
Found a problem and would like to fix it? Have that great idea and would love to see it in the repository?

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,24 @@
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>

0 commit comments

Comments
 (0)