|
26 | 26 | <version>0.7-beta-SNAPSHOT</version> |
27 | 27 | <packaging>pom</packaging> |
28 | 28 |
|
29 | | - <name>Kotlin coroutines libraries</name> |
30 | | - <description>Basic implementation of coroutines libraries for Kotlin 1.1</description> |
| 29 | + <description>Coroutines support libraries for Kotlin 1.1</description> |
| 30 | + |
31 | 31 | <url>https://github.com/Kotlin/kotlinx.coroutines/</url> |
32 | 32 |
|
33 | 33 | <licenses> |
|
103 | 103 | <module>kotlinx-coroutines-nio</module> |
104 | 104 | <module>kotlinx-coroutines-rx</module> |
105 | 105 | <module>kotlinx-coroutines-rx-example</module> |
| 106 | + <module>site</module> |
106 | 107 | </modules> |
107 | 108 |
|
108 | 109 | <dependencies> |
|
121 | 122 | </dependencies> |
122 | 123 |
|
123 | 124 | <build> |
124 | | - <pluginManagement> |
125 | | - <plugins> |
126 | | - <plugin> |
127 | | - <groupId>org.jetbrains.kotlin</groupId> |
128 | | - <artifactId>kotlin-maven-plugin</artifactId> |
129 | | - <version>${kotlin.version}</version> |
130 | | - </plugin> |
131 | | - <plugin> |
132 | | - <groupId>org.apache.maven.plugins</groupId> |
133 | | - <artifactId>maven-source-plugin</artifactId> |
134 | | - <version>2.4</version> |
135 | | - </plugin> |
136 | | - <plugin> |
137 | | - <groupId>org.apache.maven.plugins</groupId> |
138 | | - <artifactId>maven-release-plugin</artifactId> |
139 | | - <version>2.5.2</version> |
140 | | - </plugin> |
141 | | - <plugin> |
142 | | - <groupId>org.apache.maven.plugins</groupId> |
143 | | - <artifactId>maven-deploy-plugin</artifactId> |
144 | | - <version>2.8.2</version> |
145 | | - </plugin> |
146 | | - </plugins> |
147 | | - </pluginManagement> |
148 | | - |
149 | 125 | <plugins> |
150 | 126 | <plugin> |
151 | 127 | <artifactId>maven-source-plugin</artifactId> |
|
207 | 183 | <urlSuffix>#L</urlSuffix> |
208 | 184 | </link> |
209 | 185 | </sourceLinks> |
210 | | - <outputFormat>gfm</outputFormat> |
| 186 | + <includes> |
| 187 | + <include>${project.basedir}/README.md</include> |
| 188 | + </includes> |
| 189 | + <outputFormat>kotlin-website</outputFormat> |
| 190 | + </configuration> |
| 191 | + </plugin> |
| 192 | + <plugin> |
| 193 | + <artifactId>maven-site-plugin</artifactId> |
| 194 | + <configuration> |
| 195 | + <skip>true</skip> |
211 | 196 | </configuration> |
212 | 197 | </plugin> |
213 | 198 | </plugins> |
| 199 | + |
| 200 | + <pluginManagement> |
| 201 | + <plugins> |
| 202 | + <plugin> |
| 203 | + <groupId>org.jetbrains.kotlin</groupId> |
| 204 | + <artifactId>kotlin-maven-plugin</artifactId> |
| 205 | + <version>${kotlin.version}</version> |
| 206 | + </plugin> |
| 207 | + <plugin> |
| 208 | + <groupId>org.apache.maven.plugins</groupId> |
| 209 | + <artifactId>maven-source-plugin</artifactId> |
| 210 | + <version>2.4</version> |
| 211 | + </plugin> |
| 212 | + <plugin> |
| 213 | + <groupId>org.apache.maven.plugins</groupId> |
| 214 | + <artifactId>maven-release-plugin</artifactId> |
| 215 | + <version>2.5.2</version> |
| 216 | + </plugin> |
| 217 | + <plugin> |
| 218 | + <groupId>org.apache.maven.plugins</groupId> |
| 219 | + <artifactId>maven-deploy-plugin</artifactId> |
| 220 | + <version>2.8.2</version> |
| 221 | + </plugin> |
| 222 | + <plugin> |
| 223 | + <groupId>org.apache.maven.plugins</groupId> |
| 224 | + <artifactId>maven-surefire-plugin</artifactId> |
| 225 | + <version>2.19.1</version> |
| 226 | + </plugin> |
| 227 | + <plugin> |
| 228 | + <groupId>org.apache.maven.plugins</groupId> |
| 229 | + <artifactId>maven-site-plugin</artifactId> |
| 230 | + <version>3.3</version> |
| 231 | + </plugin> |
| 232 | + </plugins> |
| 233 | + </pluginManagement> |
214 | 234 | </build> |
215 | 235 | </project> |
0 commit comments