mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
110 lines
3.8 KiB
XML
110 lines
3.8 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>221.1712</bootstrap.intellij.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>31.0.1-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<version>3.15.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
<version>1.5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>1.21</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.8</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.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>2019.1.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</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> |