temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Hao Nguyen | 9349e23 | 2018-12-14 15:05:48 -0800 | [diff] [blame] | 2 | <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/maven-v4_0_0.xsd"> |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 4 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 5 | <groupId>com.google.protobuf</groupId> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 6 | <artifactId>protobuf-parent</artifactId> |
Hao Nguyen | d5be2ba | 2019-01-24 10:23:02 -0800 | [diff] [blame] | 7 | <version>3.7.0</version> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 8 | <packaging>pom</packaging> |
| 9 | |
| 10 | <name>Protocol Buffers [Parent]</name> |
| 11 | <inceptionYear>2008</inceptionYear> |
| 12 | <url>https://developers.google.com/protocol-buffers/</url> |
temporal | cc93043 | 2008-07-21 20:28:30 +0000 | [diff] [blame] | 13 | <description> |
| 14 | Protocol Buffers are a way of encoding structured data in an efficient yet |
| 15 | extensible format. |
| 16 | </description> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 17 | |
Adam Cozzette | 6509157 | 2019-01-30 12:02:29 -0800 | [diff] [blame^] | 18 | <developers> |
| 19 | <developer> |
| 20 | <id>haon</id> |
| 21 | <name>Hao Nguyen</name> |
| 22 | <email>haon@google.com</email> |
| 23 | <organization>Google</organization> |
| 24 | <organizationUrl>https://cloud.google.com</organizationUrl> |
| 25 | <timezone>America/Los_Angeles</timezone> |
| 26 | </developer> |
| 27 | </developers> |
| 28 | |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 29 | <properties> |
| 30 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 31 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 32 | |
| 33 | <!-- These are relative to the submodules --> |
| 34 | <protobuf.basedir>${project.basedir}/../..</protobuf.basedir> |
| 35 | <protobuf.source.dir>${protobuf.basedir}/src</protobuf.source.dir> |
| 36 | <protoc>${protobuf.source.dir}/protoc</protoc> |
| 37 | <test.proto.dir>src/test/proto</test.proto.dir> |
| 38 | <generated.sources.dir>${project.build.directory}/generated-sources</generated.sources.dir> |
| 39 | <generated.testsources.dir>${project.build.directory}/generated-test-sources</generated.testsources.dir> |
| 40 | </properties> |
| 41 | |
temporal | cc93043 | 2008-07-21 20:28:30 +0000 | [diff] [blame] | 42 | <licenses> |
| 43 | <license> |
Sebastian Schuberth | 902af08 | 2017-02-28 09:58:24 +0100 | [diff] [blame] | 44 | <name>3-Clause BSD License</name> |
Sebastian Schuberth | 6395a1c | 2017-02-28 09:50:58 +0100 | [diff] [blame] | 45 | <url>https://opensource.org/licenses/BSD-3-Clause</url> |
temporal | cc93043 | 2008-07-21 20:28:30 +0000 | [diff] [blame] | 46 | <distribution>repo</distribution> |
| 47 | </license> |
| 48 | </licenses> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 49 | |
temporal | cc93043 | 2008-07-21 20:28:30 +0000 | [diff] [blame] | 50 | <scm> |
Feng Xiao | afe98de | 2018-08-22 11:55:30 -0700 | [diff] [blame] | 51 | <url>https://github.com/protocolbuffers/protobuf</url> |
| 52 | <connection>scm:git:https://github.com/protocolbuffers/protobuf.git</connection> |
temporal | cc93043 | 2008-07-21 20:28:30 +0000 | [diff] [blame] | 53 | </scm> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 54 | |
| 55 | <distributionManagement> |
| 56 | <snapshotRepository> |
| 57 | <id>sonatype-nexus-staging</id> |
| 58 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 59 | </snapshotRepository> |
| 60 | <repository> |
| 61 | <id>sonatype-nexus-staging</id> |
| 62 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 63 | </repository> |
| 64 | </distributionManagement> |
| 65 | |
| 66 | <dependencyManagement> |
| 67 | <dependencies> |
| 68 | <dependency> |
Elliotte Rusty Harold | 398a47b | 2018-11-12 14:31:42 -0500 | [diff] [blame] | 69 | <groupId>com.google.protobuf</groupId> |
| 70 | <artifactId>protobuf-bom</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | <type>pom</type> |
| 73 | <scope>import</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 76 | <groupId>junit</groupId> |
| 77 | <artifactId>junit</artifactId> |
Jisi Liu | 3b3c8ab | 2016-03-30 11:39:59 -0700 | [diff] [blame] | 78 | <version>4.12</version> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.easymock</groupId> |
| 83 | <artifactId>easymock</artifactId> |
| 84 | <version>2.2</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.easymock</groupId> |
| 89 | <artifactId>easymockclassextension</artifactId> |
| 90 | <version>2.2.1</version> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>com.google.guava</groupId> |
| 95 | <artifactId>guava</artifactId> |
Elliotte Rusty Harold | bb3bff0 | 2018-09-07 08:33:14 -0400 | [diff] [blame] | 96 | <version>20.0</version> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 97 | </dependency> |
Adam Cozzette | 0894e07 | 2018-11-09 11:28:22 -0800 | [diff] [blame] | 98 | <dependency> |
| 99 | <groupId>com.google.guava</groupId> |
| 100 | <artifactId>guava-testlib</artifactId> |
Adam Cozzette | dbc644f | 2018-11-08 10:59:59 -0800 | [diff] [blame] | 101 | <version>26.0-jre</version> |
Adam Cozzette | 0894e07 | 2018-11-09 11:28:22 -0800 | [diff] [blame] | 102 | <scope>test</scope> |
| 103 | </dependency> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 104 | </dependencies> |
| 105 | </dependencyManagement> |
| 106 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 107 | <build> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 108 | <pluginManagement> |
| 109 | <plugins> |
| 110 | <plugin> |
| 111 | <artifactId>maven-compiler-plugin</artifactId> |
Adam Cozzette | 9e1286b | 2018-07-27 10:54:14 -0700 | [diff] [blame] | 112 | <version>3.6.1</version> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 113 | <configuration> |
David Ostrovsky | 019ceea | 2018-01-25 06:05:14 +0100 | [diff] [blame] | 114 | <source>1.7</source> |
| 115 | <target>1.7</target> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 116 | </configuration> |
| 117 | </plugin> |
| 118 | <plugin> |
| 119 | <artifactId>maven-source-plugin</artifactId> |
| 120 | <version>2.4</version> |
| 121 | <executions> |
| 122 | <execution> |
| 123 | <id>attach-sources</id> |
| 124 | <goals> |
| 125 | <goal>jar-no-fork</goal> |
| 126 | </goals> |
| 127 | </execution> |
| 128 | </executions> |
| 129 | </plugin> |
| 130 | <plugin> |
| 131 | <artifactId>maven-javadoc-plugin</artifactId> |
| 132 | <version>2.10.3</version> |
| 133 | <executions> |
| 134 | <execution> |
| 135 | <id>attach-javadocs</id> |
| 136 | <goals> |
| 137 | <goal>jar</goal> |
| 138 | </goals> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
| 142 | <plugin> |
| 143 | <artifactId>maven-jar-plugin</artifactId> |
| 144 | <version>2.6</version> |
| 145 | </plugin> |
| 146 | <plugin> |
| 147 | <groupId>org.codehaus.mojo</groupId> |
| 148 | <artifactId>build-helper-maven-plugin</artifactId> |
| 149 | <version>1.10</version> |
| 150 | </plugin> |
| 151 | <plugin> |
| 152 | <groupId>org.apache.felix</groupId> |
| 153 | <artifactId>maven-bundle-plugin</artifactId> |
| 154 | <version>3.0.1</version> |
| 155 | </plugin> |
| 156 | <plugin> |
| 157 | <artifactId>maven-antrun-plugin</artifactId> |
| 158 | <version>1.8</version> |
| 159 | </plugin> |
| 160 | </plugins> |
| 161 | </pluginManagement> |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 162 | </build> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 163 | |
gk5885 | ac4764e | 2009-08-04 19:11:39 +0000 | [diff] [blame] | 164 | <profiles> |
| 165 | <profile> |
Jisi Liu | b386c73 | 2015-03-03 16:27:10 -0800 | [diff] [blame] | 166 | <id>release</id> |
| 167 | <build> |
| 168 | <plugins> |
| 169 | <plugin> |
Feng Xiao | fa52702 | 2016-07-18 15:56:33 -0700 | [diff] [blame] | 170 | <groupId>org.apache.maven.plugins</groupId> |
| 171 | <artifactId>maven-source-plugin</artifactId> |
| 172 | <version>2.2.1</version> |
| 173 | <executions> |
| 174 | <execution> |
| 175 | <id>attach-sources</id> |
| 176 | <goals> |
| 177 | <goal>jar-no-fork</goal> |
| 178 | </goals> |
| 179 | </execution> |
| 180 | </executions> |
| 181 | </plugin> |
| 182 | <plugin> |
| 183 | <groupId>org.apache.maven.plugins</groupId> |
| 184 | <artifactId>maven-javadoc-plugin</artifactId> |
| 185 | <version>2.9.1</version> |
| 186 | <executions> |
| 187 | <execution> |
| 188 | <id>attach-javadocs</id> |
| 189 | <goals> |
| 190 | <goal>jar</goal> |
| 191 | </goals> |
| 192 | </execution> |
| 193 | </executions> |
| 194 | </plugin> |
| 195 | <plugin> |
Jisi Liu | b386c73 | 2015-03-03 16:27:10 -0800 | [diff] [blame] | 196 | <artifactId>maven-gpg-plugin</artifactId> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 197 | <version>1.6</version> |
Jisi Liu | b386c73 | 2015-03-03 16:27:10 -0800 | [diff] [blame] | 198 | <executions> |
| 199 | <execution> |
| 200 | <id>sign-artifacts</id> |
| 201 | <phase>verify</phase> |
| 202 | <goals> |
| 203 | <goal>sign</goal> |
| 204 | </goals> |
| 205 | </execution> |
| 206 | </executions> |
| 207 | </plugin> |
| 208 | <plugin> |
| 209 | <groupId>org.sonatype.plugins</groupId> |
| 210 | <artifactId>nexus-staging-maven-plugin</artifactId> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 211 | <version>1.6.6</version> |
Jisi Liu | b386c73 | 2015-03-03 16:27:10 -0800 | [diff] [blame] | 212 | <extensions>true</extensions> |
| 213 | <configuration> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 214 | <serverId>sonatype-nexus-staging</serverId> |
| 215 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 216 | <autoReleaseAfterClose>false</autoReleaseAfterClose> |
gk5885 | ac4764e | 2009-08-04 19:11:39 +0000 | [diff] [blame] | 217 | </configuration> |
| 218 | </plugin> |
| 219 | </plugins> |
| 220 | </build> |
| 221 | </profile> |
| 222 | </profiles> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 223 | |
| 224 | <modules> |
Elliotte Rusty Harold | 398a47b | 2018-11-12 14:31:42 -0500 | [diff] [blame] | 225 | <module>bom</module> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 226 | <module>core</module> |
nmittler | 49efe9d | 2016-01-08 09:19:11 -0800 | [diff] [blame] | 227 | <module>util</module> |
| 228 | </modules> |
| 229 | |
Hao Nguyen | 4b02f65 | 2018-12-14 15:10:11 -0800 | [diff] [blame] | 230 | </project> |