Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
398a47b9
Commit
398a47b9
authored
Nov 12, 2018
by
Elliotte Rusty Harold
Committed by
Eric Anderson
Nov 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
java: add BOM (#5117)
parent
446e34ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
105 additions
and
1 deletion
+105
-1
pom.xml
java/bom/pom.xml
+97
-0
pom.xml
java/pom.xml
+8
-0
pom.xml
java/util/pom.xml
+0
-1
No files found.
java/bom/pom.xml
0 → 100644
View file @
398a47b9
<?xml version="1.0" encoding="UTF-8"?>
<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
http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-bom
</artifactId>
<version>
3.6.1
</version>
<packaging>
pom
</packaging>
<name>
Protocol Buffers [BOM]
</name>
<description>
A compatible set of open source libraries for working with protocol buffers.
</description>
<url>
https://developers.google.com/protocol-buffers/
</url>
<organization>
<name>
Google LLC
</name>
<url>
https://cloud.google.com
</url>
</organization>
<licenses>
<license>
<name>
The Apache License, Version 2.0
</name>
<url>
http://www.apache.org/licenses/LICENSE-2.0.txt
</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>
sonatype-nexus-staging
</id>
<url>
https://oss.sonatype.org/content/repositories/snapshots
</url>
</snapshotRepository>
<repository>
<id>
sonatype-nexus-staging
</id>
<url>
https://oss.sonatype.org/service/local/staging/deploy/maven2/
</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-java
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-java-util
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<!-- If you see the error message
gpg: signing failed: Inappropriate ioctl for device
when signing run the command
export GPG_TTY=$(tty)
and try again. -->
<id>
release
</id>
<build>
<plugins>
<plugin>
<artifactId>
maven-gpg-plugin
</artifactId>
<version>
1.6
</version>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.sonatype.plugins
</groupId>
<artifactId>
nexus-staging-maven-plugin
</artifactId>
<version>
1.6.6
</version>
<extensions>
true
</extensions>
<configuration>
<nexusUrl>
https://oss.sonatype.org/
</nexusUrl>
<serverId>
sonatype-nexus-staging
</serverId>
<autoReleaseAfterClose>
false
</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
java/pom.xml
View file @
398a47b9
...
...
@@ -56,6 +56,13 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
com.google.protobuf
</groupId>
<artifactId>
protobuf-bom
</artifactId>
<version>
${project.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
...
...
@@ -200,6 +207,7 @@
</profiles>
<modules>
<module>
bom
</module>
<module>
core
</module>
<module>
util
</module>
</modules>
...
...
java/util/pom.xml
View file @
398a47b9
...
...
@@ -19,7 +19,6 @@
<dependency>
<groupId>
${project.groupId}
</groupId>
<artifactId>
protobuf-java
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.google.guava
</groupId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment