File tree Expand file tree Collapse file tree 3 files changed +46
-13
lines changed Expand file tree Collapse file tree 3 files changed +46
-13
lines changed Original file line number Diff line number Diff line change
1
+ <project name =" site" default =" site" >
2
+ <target name =" site" >
3
+ <copy todir =" target" >
4
+ <fileset dir =" docs" />
5
+ <fileset dir =" ../kotlinx-coroutines-core/target/dokka" includes =" **/*.md" />
6
+ <fileset dir =" ../kotlinx-coroutines-jdk8/target/dokka" includes =" **/*.md" />
7
+ <fileset dir =" ../kotlinx-coroutines-nio/target/dokka" includes =" **/*.md" />
8
+ <fileset dir =" ../kotlinx-coroutines-swing/target/dokka" includes =" **/*.md" />
9
+ <fileset dir =" ../kotlinx-coroutines-javafx/target/dokka" includes =" **/*.md" />
10
+ <fileset dir =" ../kotlinx-coroutines-rx/target/dokka" includes =" **/*.md" />
11
+ </copy >
12
+ <antcall target =" jekyll" />
13
+ </target >
14
+
15
+ <target name =" checkos" >
16
+ <condition property =" isWindows" value =" true" >
17
+ <os family =" windows" />
18
+ </condition >
19
+ <condition property =" isUnix" value =" true" >
20
+ <os family =" unix" />
21
+ </condition >
22
+ </target >
23
+
24
+ <target name =" jekyll" depends =" checkos, jekyll.windows, jekyll.unix" />
25
+
26
+ <target name =" jekyll.windows" if =" isWindows" >
27
+ <exec executable =" jekyll.bat" dir =" target" >
28
+ <arg line =" build" />
29
+ </exec >
30
+ </target >
31
+
32
+ <target name =" jekyll.unix" if =" isUnix" >
33
+ <exec executable =" jekyll" dir =" target" >
34
+ <arg line =" build" />
35
+ </exec >
36
+ </target >
37
+ </project >
Original file line number Diff line number Diff line change 5
5
public_suffix (~> 2.0 , >= 2.0.2 )
6
6
colorator (1.1.0 )
7
7
ffi (1.9.17 )
8
+ ffi (1.9.17-x64-mingw32 )
8
9
forwardable-extended (2.6.0 )
9
10
jekyll (3.4.0 )
10
11
addressable (~> 2.4 )
36
37
rouge (1.11.1 )
37
38
safe_yaml (1.0.4 )
38
39
sass (3.4.23 )
40
+ thread_safe (0.3.5 )
41
+ tzinfo (1.2.2 )
42
+ thread_safe (~> 0.1 )
43
+ tzinfo-data (1.2016.10 )
44
+ tzinfo (>= 1.0.0 )
39
45
40
46
PLATFORMS
41
47
ruby
48
+ x64-mingw32
42
49
43
50
DEPENDENCIES
44
51
jekyll (= 3.4.0 )
45
52
tzinfo-data
46
53
47
54
RUBY VERSION
48
- ruby 2.0.0p648
55
+ ruby 2.2.6p396
49
56
50
57
BUNDLED WITH
51
58
1.14.3
Original file line number Diff line number Diff line change 76
76
<phase >site</phase >
77
77
<configuration >
78
78
<tasks >
79
- <copy todir =" target" >
80
- <fileset dir =" docs" />
81
- <fileset dir =" ../kotlinx-coroutines-core/target/dokka" includes =" **/*.md" />
82
- <fileset dir =" ../kotlinx-coroutines-jdk8/target/dokka" includes =" **/*.md" />
83
- <fileset dir =" ../kotlinx-coroutines-nio/target/dokka" includes =" **/*.md" />
84
- <fileset dir =" ../kotlinx-coroutines-swing/target/dokka" includes =" **/*.md" />
85
- <fileset dir =" ../kotlinx-coroutines-javafx/target/dokka" includes =" **/*.md" />
86
- <fileset dir =" ../kotlinx-coroutines-rx/target/dokka" includes =" **/*.md" />
87
- </copy >
88
- <exec executable =" jekyll" dir =" target" >
89
- <arg line =" build" />
90
- </exec >
79
+ <ant target =" site" />
91
80
</tasks >
92
81
</configuration >
93
82
<goals >
You can’t perform that action at this time.
0 commit comments