Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

229 Zeilen
9.1KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.jetbrains.kotlin</groupId>
  7. <artifactId>kotlin-bom</artifactId>
  8. <version>1.6.21</version>
  9. <packaging>pom</packaging>
  10. <!-- No parent to avoid accidentally inheriting parent's dependencyManagement section -->
  11. <name>Kotlin Libraries bill-of-materials</name>
  12. <description>Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript</description>
  13. <url>https://kotlinlang.org/</url>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. <comments>A business-friendly OSS license</comments>
  20. </license>
  21. </licenses>
  22. <scm>
  23. <url>https://github.com/JetBrains/kotlin</url>
  24. <connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
  25. <developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
  26. </scm>
  27. <developers>
  28. <developer>
  29. <id>JetBrains</id>
  30. <name>JetBrains Team</name>
  31. <organization>JetBrains</organization>
  32. <organizationUrl>https://www.jetbrains.com</organizationUrl>
  33. </developer>
  34. </developers>
  35. <properties>
  36. <!--
  37. All dependencies listed in this pom will have version same as the version of this pom.
  38. This property is local to this project,
  39. it isn't affected by the same named property in a consumer project,
  40. neither it is visible in the consumer project.
  41. -->
  42. <kotlin.version>${project.version}</kotlin.version>
  43. </properties>
  44. <dependencies>
  45. <!-- Standard Library -->
  46. <dependency>
  47. <groupId>${project.groupId}</groupId>
  48. <artifactId>kotlin-stdlib</artifactId>
  49. <version>${kotlin.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>${project.groupId}</groupId>
  53. <artifactId>kotlin-stdlib-jdk7</artifactId>
  54. <version>${kotlin.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>${project.groupId}</groupId>
  58. <artifactId>kotlin-stdlib-jdk8</artifactId>
  59. <version>${kotlin.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>${project.groupId}</groupId>
  63. <artifactId>kotlin-stdlib-js</artifactId>
  64. <version>${kotlin.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>${project.groupId}</groupId>
  68. <artifactId>kotlin-stdlib-common</artifactId>
  69. <version>${kotlin.version}</version>
  70. </dependency>
  71. <!-- Reflection Library -->
  72. <dependency>
  73. <groupId>${project.groupId}</groupId>
  74. <artifactId>kotlin-reflect</artifactId>
  75. <version>${kotlin.version}</version>
  76. </dependency>
  77. <!-- OSGI -->
  78. <dependency>
  79. <groupId>${project.groupId}</groupId>
  80. <artifactId>kotlin-osgi-bundle</artifactId>
  81. <version>${kotlin.version}</version>
  82. </dependency>
  83. <!-- kotlin.test -->
  84. <dependency>
  85. <groupId>${project.groupId}</groupId>
  86. <artifactId>kotlin-test</artifactId>
  87. <version>${kotlin.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>${project.groupId}</groupId>
  91. <artifactId>kotlin-test-junit</artifactId>
  92. <version>${kotlin.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>${project.groupId}</groupId>
  96. <artifactId>kotlin-test-junit5</artifactId>
  97. <version>${kotlin.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>${project.groupId}</groupId>
  101. <artifactId>kotlin-test-testng</artifactId>
  102. <version>${kotlin.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>${project.groupId}</groupId>
  106. <artifactId>kotlin-test-js</artifactId>
  107. <version>${kotlin.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>${project.groupId}</groupId>
  111. <artifactId>kotlin-test-common</artifactId>
  112. <version>${kotlin.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>${project.groupId}</groupId>
  116. <artifactId>kotlin-test-annotations-common</artifactId>
  117. <version>${kotlin.version}</version>
  118. </dependency>
  119. <!-- Scripting -->
  120. <dependency>
  121. <groupId>${project.groupId}</groupId>
  122. <artifactId>kotlin-main-kts</artifactId>
  123. <version>${kotlin.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>${project.groupId}</groupId>
  127. <artifactId>kotlin-script-runtime</artifactId>
  128. <version>${kotlin.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>${project.groupId}</groupId>
  132. <artifactId>kotlin-script-util</artifactId>
  133. <version>${kotlin.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>${project.groupId}</groupId>
  137. <artifactId>kotlin-scripting-common</artifactId>
  138. <version>${kotlin.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>${project.groupId}</groupId>
  142. <artifactId>kotlin-scripting-jvm</artifactId>
  143. <version>${kotlin.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>${project.groupId}</groupId>
  147. <artifactId>kotlin-scripting-jvm-host</artifactId>
  148. <version>${kotlin.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>${project.groupId}</groupId>
  152. <artifactId>kotlin-scripting-ide-services</artifactId>
  153. <version>${kotlin.version}</version>
  154. </dependency>
  155. <!-- Compiler dependency required by scripting -->
  156. <dependency>
  157. <groupId>${project.groupId}</groupId>
  158. <artifactId>kotlin-compiler</artifactId>
  159. <version>${kotlin.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>${project.groupId}</groupId>
  163. <artifactId>kotlin-compiler-embeddable</artifactId>
  164. <version>${kotlin.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>${project.groupId}</groupId>
  168. <artifactId>kotlin-daemon-client</artifactId>
  169. <version>${kotlin.version}</version>
  170. </dependency>
  171. </dependencies>
  172. <distributionManagement>
  173. <repository>
  174. <id>${deploy-repo}</id>
  175. <url>${deploy-url}</url>
  176. </repository>
  177. <snapshotRepository>
  178. <id>sonatype-nexus-staging</id>
  179. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  180. </snapshotRepository>
  181. </distributionManagement>
  182. <profiles>
  183. <profile>
  184. <id>sign-artifacts</id>
  185. <build>
  186. <plugins>
  187. <plugin>
  188. <artifactId>maven-gpg-plugin</artifactId>
  189. <version>1.6</version>
  190. <configuration>
  191. <passphrase>${kotlin.key.passphrase}</passphrase>
  192. <keyname>${kotlin.key.name}</keyname>
  193. <homedir>../../.gnupg</homedir>
  194. </configuration>
  195. <executions>
  196. <execution>
  197. <id>sign-artifacts</id>
  198. <phase>verify</phase>
  199. <goals>
  200. <goal>sign</goal>
  201. </goals>
  202. <configuration>
  203. <gpgArguments>
  204. <arg>--pinentry-mode</arg>
  205. <arg>loopback</arg>
  206. </gpgArguments>
  207. </configuration>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. </plugins>
  212. </build>
  213. </profile>
  214. </profiles>
  215. </project>