Skip to content

Commit

Permalink
Remove $ in pom files
Browse files Browse the repository at this point in the history
  • Loading branch information
deannagarcia committed Mar 8, 2023
1 parent 832a196 commit 8ac2337
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion java/core/pom_template.xml
Expand Up @@ -31,7 +31,7 @@
<Automatic-Module-Name>com.google.protobuf</Automatic-Module-Name> <!-- Java9+ Jigsaw module name -->
<Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
<Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName>
<Export-Package>com.google.protobuf;version=${project.version}</Export-Package>
<Export-Package>com.google.protobuf;version={project.version}</Export-Package>
<Import-Package>sun.misc;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion java/kotlin-lite/pom_template.xml
Expand Up @@ -17,7 +17,7 @@
</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<groupId>{groupId}</groupId>
<artifactId>protobuf-javalite</artifactId>
</dependency>
{dependencies}
Expand Down
2 changes: 1 addition & 1 deletion java/kotlin/pom_template.xml
Expand Up @@ -17,7 +17,7 @@
</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<groupId>{groupId}</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
{dependencies}
Expand Down
2 changes: 1 addition & 1 deletion java/lite/pom_template.xml
Expand Up @@ -31,7 +31,7 @@
<Automatic-Module-Name>com.google.protobuf</Automatic-Module-Name> <!-- Java9+ Jigsaw module name -->
<Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
<Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName>
<Export-Package>com.google.protobuf;version=${project.version}</Export-Package>
<Export-Package>com.google.protobuf;version={project.version}</Export-Package>
<Import-Package>sun.misc;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions java/util/pom_template.xml
Expand Up @@ -14,7 +14,7 @@
<description>Utilities for Protocol Buffers</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<groupId>{groupId}</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
{dependencies}
Expand All @@ -32,7 +32,7 @@
<Automatic-Module-Name>com.google.protobuf.util</Automatic-Module-Name> <!-- Java9+ Jigsaw module name -->
<Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
<Bundle-SymbolicName>com.google.protobuf.util</Bundle-SymbolicName>
<Export-Package>com.google.protobuf.util;version=${project.version}</Export-Package>
<Export-Package>com.google.protobuf.util;version={project.version}</Export-Package>
</instructions>
</configuration>
</plugin>
Expand Down

0 comments on commit 8ac2337

Please sign in to comment.