Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

199 rindas
6.8KB

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