This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b21b64d
commit 7317a13
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
exports_files([ | ||
"pom.xml", | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>{groupId}</groupId> | ||
<artifactId>{artifactId}</artifactId> | ||
<version>{version}</version> | ||
|
||
<name>Bazel BSP</name> | ||
<description> | ||
An implementation of the Build Server Protocol for Bazel. Allows clients such as IntelliJ to obtain build specific | ||
information in order to improve the experience of users in the IDE. | ||
</description> | ||
<url>https://www.jetbrains.com/</url> | ||
|
||
<dependencies> | ||
{dependencies} | ||
</dependencies> | ||
<developers> | ||
<developer> | ||
<id>andrefmrocha</id> | ||
<name>Andre Rocha</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/andrefmrocha</url> | ||
</developer> | ||
<developer> | ||
<id>jastice</id> | ||
<name>Justin Kaeser</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/jastice</url> | ||
</developer> | ||
<developer> | ||
<id>Abrams27</id> | ||
<name>Marcin Abramowicz</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/Abrams27</url> | ||
</developer> | ||
<developer> | ||
<id>agluszak</id> | ||
<name>Andrzej Głuszak</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/agluszak</url> | ||
</developer> | ||
<developer> | ||
<id>gerardd33</id> | ||
<name>Gerard Dróżdż</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/gerardd33</url> | ||
</developer> | ||
<developer> | ||
<id>magda-aug</id> | ||
<name>Magdalena Augustyńska</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/magda-aug</url> | ||
</developer> | ||
<developer> | ||
<id>illicitonion</id> | ||
<name>Daniel Wagner-Hall</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/illicitonion</url> | ||
</developer> | ||
</developers> | ||
<licenses> | ||
<license> | ||
<name>Apache 2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:github.com/JetBrains/bazel-bsp.git</connection> | ||
<developerConnection>scm:git:[email protected]:JetBrains/bazel-bsp.git</developerConnection> | ||
<url>https://github.com/JetBrains/bazel-bsp</url> | ||
</scm> | ||
</project> |