File tree 5 files changed +1885
-3
lines changed
5 files changed +1885
-3
lines changed Original file line number Diff line number Diff line change 82
82
83
83
<!-- Move .Net docs. -->
84
84
<fileSet >
85
- <directory >modules/platforms/dotnet/doc </directory >
85
+ <directory >modules/clients/target/dotnetdoc/html </directory >
86
86
<outputDirectory >/platforms/dotnet/docs</outputDirectory >
87
87
</fileSet >
88
88
133
133
134
134
<!-- Move CPP docs. -->
135
135
<fileSet >
136
- <directory >modules/platforms/cpp/doc </directory >
136
+ <directory >modules/clients/target/cppdoc/html </directory >
137
137
<outputDirectory >/platforms/cpp/docs</outputDirectory >
138
138
</fileSet >
139
139
Original file line number Diff line number Diff line change 136
136
</plugin >
137
137
</plugins >
138
138
</build >
139
+
140
+ <profiles >
141
+ <profile >
142
+ <id >docs</id >
143
+ <activation >
144
+ <property >
145
+ <name >!skipClientDocs</name >
146
+ </property >
147
+ </activation >
148
+ <build >
149
+ <plugins >
150
+ <plugin >
151
+ <groupId >org.apache.maven.plugins</groupId >
152
+ <artifactId >maven-antrun-plugin</artifactId >
153
+ <version >1.7</version >
154
+ <dependencies >
155
+ <dependency >
156
+ <groupId >org.apache.ignite</groupId >
157
+ <artifactId >ignite-tools</artifactId >
158
+ <version >${project.version} </version >
159
+ </dependency >
160
+ </dependencies >
161
+ <executions >
162
+ <execution >
163
+ <id >dotnetdoc</id >
164
+ <goals >
165
+ <goal >run</goal >
166
+ </goals >
167
+ <phase >prepare-package</phase >
168
+ <configuration >
169
+ <target >
170
+ <exec executable =" ${doxygen.exec}" searchpath =" true" dir =" ../platforms/dotnet/" >
171
+ <arg value =" dotnet.dxg" />
172
+ </exec >
173
+
174
+ <copy file =" ../../assembly/docfiles/ignite_logo.png" todir =" target/dotnetdoc/html" />
175
+ </target >
176
+ </configuration >
177
+ </execution >
178
+
179
+ <execution >
180
+ <id >cppdoc</id >
181
+ <goals >
182
+ <goal >run</goal >
183
+ </goals >
184
+ <phase >prepare-package</phase >
185
+ <configuration >
186
+ <target >
187
+ <exec executable =" ${doxygen.exec}" searchpath =" true" dir =" ../platforms/cpp/" >
188
+ <arg value =" cpp.dxg" />
189
+ </exec >
190
+ </target >
191
+ </configuration >
192
+ </execution >
193
+ </executions >
194
+ </plugin >
195
+ </plugins >
196
+ </build >
197
+ </profile >
198
+ </profiles >
139
199
</project >
Original file line number Diff line number Diff line change @@ -1718,5 +1718,5 @@ DOT_CLEANUP = YES
1718
1718
;INPUT=core/include/ignite core/src
1719
1719
;EXCLUDE=core/include/ignite/impl core/os/linux/include/ignite/impl core/os/linux/src/impl core/os/win/include/ignite/impl core/os/win/src/impl core/src/impl
1720
1720
;STRIP_FROM_PATH=core/include/ignite core/src
1721
- ;OUTPUT_DIRECTORY=doc
1721
+ ;OUTPUT_DIRECTORY=../../clients/target/cppdoc
1722
1722
;PROJECT_LOGO=../../../assembly/docfiles/ignite_logo.png
You can’t perform that action at this time.
0 commit comments