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