Skip to content

Commit eb41ded

Browse files
Merge pull request #417 from IBM/master
sync with master
2 parents 1c09def + 9304877 commit eb41ded

9 files changed

Lines changed: 1422 additions & 224 deletions

File tree

fhir-examples/pom.xml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -40,63 +40,63 @@
4040
<id>fhir-javadocs</id>
4141
<build>
4242
<plugins>
43-
<!-- limit the javadoc plugin to jenkins only -->
43+
<plugin>
44+
<groupId>org.apache.maven.plugins</groupId>
45+
<artifactId>maven-site-plugin</artifactId>
46+
<version>3.8.2</version>
47+
</plugin>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-project-info-reports-plugin</artifactId>
51+
<version>2.9</version>
52+
</plugin>
4453
<plugin>
4554
<groupId>org.apache.maven.plugins</groupId>
4655
<artifactId>maven-javadoc-plugin</artifactId>
4756
<version>3.1.1</version>
4857
<configuration>
49-
<verbose>false</verbose>
58+
<!-- no matter the JDK running the javadoc, it's important this be at
59+
the minimum level we support, which is 8. -->
60+
<source>8</source>
61+
<verbose>true</verbose>
5062
<doclint>none</doclint>
5163
<additionalparam>-Xdoclint:none</additionalparam>
52-
<minmemory>128m</minmemory>
64+
<minmemory>512m</minmemory>
5365
<maxmemory>1g</maxmemory>
54-
<archive>
55-
<manifestEntries>
56-
<Automatic-Module-Name>com.ibm.fhir</Automatic-Module-Name>
57-
</manifestEntries>
58-
</archive>
59-
<destDir>target/apidocs/${project.artifactId}</destDir>
6066
<additionalOptions>
67+
<!-- makes the frames visible, disabled and going away eventually -->
6168
<additionalOption>--frames</additionalOption>
69+
<!-- Fixes the undefined redirect in search -->
70+
<additionalOption>--no-module-directories</additionalOption>
6271
</additionalOptions>
63-
<bottom><![CDATA[Copyright 2019, <a href="http://www.ibm.com">IBM Corporation<a><br></br>FHIR&reg; is the registered trademark of HL7 and is used with the permission of HL7.]]></bottom>
72+
<header><![CDATA[<a href="/FHIR" class="bx--header__name" target="_parent"><span>IBM</span>&nbsp;FHIR®&nbsp;Server</a>]]></header>
73+
<bottom><![CDATA[Copyright 2019. <a href="http://www.ibm.com">IBM Corporation<a><br></br>FHIR&reg; is the registered trademark of HL7 and is used with the permission of HL7.]]></bottom>
6474
<author>false</author>
65-
<detectJavaApiLink>false</detectJavaApiLink>
75+
<stylesheetfile>${project.build.directory}/../../fhir-parent/src/javadocs/stylesheet.css</stylesheetfile>
76+
<docletArtifact>
77+
<groupId>nl.talsmasoftware</groupId>
78+
<artifactId>umldoclet</artifactId>
79+
<version>2.0.5</version>
80+
</docletArtifact>
81+
<doclet>nl.talsmasoftware.umldoclet.UMLDoclet</doclet>
82+
<additionalparam>
83+
-umlSkipStandardDoclet true
84+
-umlLogLevel DEBUG
85+
-umlImageFormat png
86+
</additionalparam>
87+
<!-- skips the three entries -->
88+
<nohelp>true</nohelp>
89+
<nodeprecated>true</nodeprecated>
90+
<nodeprecatedlist>true</nodeprecatedlist>
6691
</configuration>
6792
<executions>
6893
<execution>
69-
<id>aggregate</id>
94+
<id>attach-javadocs</id>
7095
<goals>
7196
<goal>javadoc-no-fork</goal>
7297
<goal>test-javadoc-no-fork</goal>
7398
</goals>
7499
<phase>site</phase>
75-
<configuration>
76-
<verbose>false</verbose>
77-
<doclint>none</doclint>
78-
<additionalparam>-Xdoclint:none</additionalparam>
79-
<minmemory>128m</minmemory>
80-
<maxmemory>1g</maxmemory>
81-
<archive>
82-
<manifestEntries>
83-
<Automatic-Module-Name>com.ibm.fhir</Automatic-Module-Name>
84-
</manifestEntries>
85-
</archive>
86-
<destDir>target/apidocs/${project.artifactId}</destDir>
87-
<additionalOptions>
88-
<additionalOption>--frames</additionalOption>
89-
</additionalOptions>
90-
<bottom><![CDATA[Copyright 2019, <a href="http://www.ibm.com">IBM Corporation<a>]]></bottom>
91-
<author>false</author>
92-
<detectJavaApiLink>false</detectJavaApiLink>
93-
</configuration>
94-
</execution>
95-
<execution>
96-
<id>attach-javadocs</id>
97-
<goals>
98-
<goal>jar</goal>
99-
</goals>
100100
</execution>
101101
</executions>
102102
</plugin>

0 commit comments

Comments
 (0)