Skip to content

Commit 3ec44ba

Browse files
committedDec 14, 2015
IGNITE-2154
IGNITE-2082
1 parent 6703375 commit 3ec44ba

File tree

5 files changed

+1885
-3
lines changed

5 files changed

+1885
-3
lines changed
 

‎assembly/release-fabric-base.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
<!-- Move .Net docs. -->
8484
<fileSet>
85-
<directory>modules/platforms/dotnet/doc</directory>
85+
<directory>modules/clients/target/dotnetdoc/html</directory>
8686
<outputDirectory>/platforms/dotnet/docs</outputDirectory>
8787
</fileSet>
8888

@@ -133,7 +133,7 @@
133133

134134
<!-- Move CPP docs. -->
135135
<fileSet>
136-
<directory>modules/platforms/cpp/doc</directory>
136+
<directory>modules/clients/target/cppdoc/html</directory>
137137
<outputDirectory>/platforms/cpp/docs</outputDirectory>
138138
</fileSet>
139139

‎modules/clients/pom.xml

+60
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,64 @@
136136
</plugin>
137137
</plugins>
138138
</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>
139199
</project>

‎modules/platforms/cpp/cpp.dxg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1718,5 +1718,5 @@ DOT_CLEANUP = YES
17181718
;INPUT=core/include/ignite core/src
17191719
;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
17201720
;STRIP_FROM_PATH=core/include/ignite core/src
1721-
;OUTPUT_DIRECTORY=doc
1721+
;OUTPUT_DIRECTORY=../../clients/target/cppdoc
17221722
;PROJECT_LOGO=../../../assembly/docfiles/ignite_logo.png

0 commit comments

Comments
 (0)