Skip to content

Commit

Permalink
Add pom description file
Browse files Browse the repository at this point in the history
  • Loading branch information
SocksDevil committed May 24, 2021
1 parent b21b64d commit 7317a13
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
3 changes: 3 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
exports_files([
"pom.xml",
])
1 change: 1 addition & 0 deletions main/src/org/jetbrains/bsp/bazel/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ sonatype_java_export(
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:0.1.0",
maven_profile = "org.jetbrains",
visibility = ["//visibility:public"],
pom_template = "//:pom.xml",
deps = [
"@com_google_protobuf//:protobuf_java",
"@googleapis//:google_devtools_build_v1_build_events_java_proto",
Expand Down
76 changes: 76 additions & 0 deletions pom.xml
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>andrefmrocha@live.com.pt</email>
<url>https://github.com/andrefmrocha</url>
</developer>
<developer>
<id>jastice</id>
<name>Justin Kaeser</name>
<email>justin@justinkaeser.com</email>
<url>https://github.com/jastice</url>
</developer>
<developer>
<id>Abrams27</id>
<name>Marcin Abramowicz</name>
<email>abramowiczmarcin99@gmail.com</email>
<url>https://github.com/Abrams27</url>
</developer>
<developer>
<id>agluszak</id>
<name>Andrzej Głuszak</name>
<email>gluszak.andrzej@gmail.com</email>
<url>https://github.com/agluszak</url>
</developer>
<developer>
<id>gerardd33</id>
<name>Gerard Dróżdż</name>
<email>gerarddrozdz@gmail.com</email>
<url>https://github.com/gerardd33</url>
</developer>
<developer>
<id>magda-aug</id>
<name>Magdalena Augustyńska</name>
<email>augustynskamagda@gmail.com</email>
<url>https://github.com/magda-aug</url>
</developer>
<developer>
<id>illicitonion</id>
<name>Daniel Wagner-Hall</name>
<email>dawagner@gmail.com</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:git@github.com:JetBrains/bazel-bsp.git</developerConnection>
<url>https://github.com/JetBrains/bazel-bsp</url>
</scm>
</project>

0 comments on commit 7317a13

Please sign in to comment.