mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
173 lines
5.7 KiB
XML
173 lines
5.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.jetbrains.jps-bootstrap</groupId>
|
|
<artifactId>jps-bootstrap</artifactId>
|
|
<version>1.0.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
<bootstrap.intellij.version>233.4644</bootstrap.intellij.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.luben</groupId>
|
|
<artifactId>zstd-jni</artifactId>
|
|
<version>1.5.2-5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.intellij.deps</groupId>
|
|
<artifactId>zstd-jni-windows-aarch64</artifactId>
|
|
<version>1.5.2-5-25</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>32.1.2-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<version>3.24.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<version>1.5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>1.24.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.14.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.ktor</groupId>
|
|
<artifactId>ktor-client-cio-jvm</artifactId>
|
|
<version>2.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.ktor</groupId>
|
|
<artifactId>ktor-client-encoding-jvm</artifactId>
|
|
<version>2.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.ktor</groupId>
|
|
<artifactId>ktor-client-auth-jvm</artifactId>
|
|
<version>2.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.opentelemetry</groupId>
|
|
<artifactId>opentelemetry-extension-kotlin</artifactId>
|
|
<version>1.31.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.platform</groupId>
|
|
<artifactId>jps-model</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.platform</groupId>
|
|
<artifactId>jps-model-impl</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.platform</groupId>
|
|
<artifactId>jps-model-serialization</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.tools</groupId>
|
|
<artifactId>jps-build-standalone</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.space</groupId>
|
|
<artifactId>space-java-jps</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.groovy</groupId>
|
|
<artifactId>groovy-jps</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jetbrains.intellij.groovy</groupId>
|
|
<artifactId>groovy-rt</artifactId>
|
|
<version>${bootstrap.intellij.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.teamcity</groupId>
|
|
<artifactId>serviceMessages</artifactId>
|
|
<version>2023.07</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>5.10.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>../build-scripts/downloader/src</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.1.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>intellij-dependencies</id>
|
|
<url>https://cache-redirector.jetbrains.com/intellij-dependencies</url>
|
|
</repository>
|
|
<repository>
|
|
<id>kotlin-ide-plugin-dependencies</id>
|
|
<url>https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide-plugin-dependencies</url>
|
|
</repository>
|
|
<repository>
|
|
<id>teamcity-repository</id>
|
|
<url>https://cache-redirector.jetbrains.com/download.jetbrains.com/teamcity-repository</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
</project> |