Skip to content

Commit

Permalink
Adds missing dependency to maven metadata, removes an unnecessary tag…
Browse files Browse the repository at this point in the history
…, and adjusts a popular URL to use https.

This is re-rolling Commit# bd9e1d1 which was incorrectly merged within Github.

PiperOrigin-RevId: 695950059
  • Loading branch information
gkdn authored and copybara-github committed Nov 13, 2024
1 parent 76b101d commit b947d4a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions maven/pom-base.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<groupId>__GROUP_ID__</groupId>
<artifactId>__ARTIFACT_ID__</artifactId>
<version>__VERSION__</version>
<packaging>jar</packaging>

<name>JsInterop Base</name>
<description>Base classes and utilities that provide access to JavaScript language constructs
Expand Down Expand Up @@ -42,7 +41,7 @@
<developer>
<name>J2CL team</name>
<organization>Google</organization>
<organizationUrl>http://www.google.com</organizationUrl>
<organizationUrl>https://www.google.com</organizationUrl>
</developer>
</developers>

Expand All @@ -51,6 +50,11 @@
<groupId>com.google.jsinterop</groupId>
<artifactId>jsinterop-annotations</artifactId>
<version>2.0.2</version>
</dependency>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>0.3.0</version>
</dependency>
</dependencies>
</project>
</project>

0 comments on commit b947d4a

Please sign in to comment.