Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <parent> |
| 7 | <groupId>com.google</groupId> |
| 8 | <artifactId>google</artifactId> |
| 9 | <version>1</version> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>com.google.protobuf</groupId> |
| 13 | <artifactId>protobuf-parent</artifactId> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 14 | <version>3.6.1</version> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 15 | <packaging>pom</packaging> |
| 16 | |
| 17 | <name>Protocol Buffers [Parent]</name> |
| 18 | <inceptionYear>2008</inceptionYear> |
| 19 | <url>https://developers.google.com/protocol-buffers/</url> |
| 20 | <description> |
| 21 | Protocol Buffers are a way of encoding structured data in an efficient yet |
| 22 | extensible format. |
| 23 | </description> |
| 24 | |
| 25 | <properties> |
| 26 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 27 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 28 | |
| 29 | <!-- These are relative to the submodules --> |
| 30 | <protobuf.basedir>${project.basedir}/../..</protobuf.basedir> |
| 31 | <protobuf.source.dir>${protobuf.basedir}/src</protobuf.source.dir> |
| 32 | <protoc>${protobuf.source.dir}/protoc</protoc> |
| 33 | <test.proto.dir>src/test/proto</test.proto.dir> |
| 34 | <generated.sources.dir>${project.build.directory}/generated-sources</generated.sources.dir> |
| 35 | <generated.testsources.dir>${project.build.directory}/generated-test-sources</generated.testsources.dir> |
| 36 | </properties> |
| 37 | |
| 38 | <licenses> |
| 39 | <license> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 40 | <name>3-Clause BSD License</name> |
| 41 | <url>https://opensource.org/licenses/BSD-3-Clause</url> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 42 | <distribution>repo</distribution> |
| 43 | </license> |
| 44 | </licenses> |
| 45 | |
| 46 | <scm> |
| 47 | <url>https://github.com/google/protobuf</url> |
| 48 | <connection>scm:git:https://github.com/google/protobuf.git</connection> |
| 49 | </scm> |
| 50 | |
| 51 | <distributionManagement> |
| 52 | <snapshotRepository> |
| 53 | <id>sonatype-nexus-staging</id> |
| 54 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 55 | </snapshotRepository> |
| 56 | <repository> |
| 57 | <id>sonatype-nexus-staging</id> |
| 58 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 59 | </repository> |
| 60 | </distributionManagement> |
| 61 | |
| 62 | <dependencyManagement> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <groupId>junit</groupId> |
| 66 | <artifactId>junit</artifactId> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 67 | <version>4.12</version> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [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> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 85 | <version>19.0</version> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 86 | </dependency> |
| 87 | </dependencies> |
| 88 | </dependencyManagement> |
| 89 | |
| 90 | <build> |
| 91 | <pluginManagement> |
| 92 | <plugins> |
| 93 | <plugin> |
| 94 | <artifactId>maven-compiler-plugin</artifactId> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 95 | <version>3.6.1</version> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 96 | <configuration> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 97 | <source>1.7</source> |
| 98 | <target>1.7</target> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 99 | </configuration> |
| 100 | </plugin> |
| 101 | <plugin> |
| 102 | <artifactId>maven-source-plugin</artifactId> |
| 103 | <version>2.4</version> |
| 104 | <executions> |
| 105 | <execution> |
| 106 | <id>attach-sources</id> |
| 107 | <goals> |
| 108 | <goal>jar-no-fork</goal> |
| 109 | </goals> |
| 110 | </execution> |
| 111 | </executions> |
| 112 | </plugin> |
| 113 | <plugin> |
| 114 | <artifactId>maven-javadoc-plugin</artifactId> |
| 115 | <version>2.10.3</version> |
| 116 | <executions> |
| 117 | <execution> |
| 118 | <id>attach-javadocs</id> |
| 119 | <goals> |
| 120 | <goal>jar</goal> |
| 121 | </goals> |
| 122 | </execution> |
| 123 | </executions> |
| 124 | </plugin> |
| 125 | <plugin> |
| 126 | <artifactId>maven-jar-plugin</artifactId> |
| 127 | <version>2.6</version> |
| 128 | </plugin> |
| 129 | <plugin> |
| 130 | <groupId>org.codehaus.mojo</groupId> |
| 131 | <artifactId>build-helper-maven-plugin</artifactId> |
| 132 | <version>1.10</version> |
| 133 | </plugin> |
| 134 | <plugin> |
| 135 | <groupId>org.apache.felix</groupId> |
| 136 | <artifactId>maven-bundle-plugin</artifactId> |
| 137 | <version>3.0.1</version> |
| 138 | </plugin> |
| 139 | <plugin> |
| 140 | <artifactId>maven-antrun-plugin</artifactId> |
| 141 | <version>1.8</version> |
| 142 | </plugin> |
| 143 | </plugins> |
| 144 | </pluginManagement> |
| 145 | </build> |
| 146 | |
| 147 | <profiles> |
| 148 | <profile> |
| 149 | <id>release</id> |
| 150 | <build> |
| 151 | <plugins> |
| 152 | <plugin> |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 153 | <groupId>org.apache.maven.plugins</groupId> |
| 154 | <artifactId>maven-source-plugin</artifactId> |
| 155 | <version>2.2.1</version> |
| 156 | <executions> |
| 157 | <execution> |
| 158 | <id>attach-sources</id> |
| 159 | <goals> |
| 160 | <goal>jar-no-fork</goal> |
| 161 | </goals> |
| 162 | </execution> |
| 163 | </executions> |
| 164 | </plugin> |
| 165 | <plugin> |
| 166 | <groupId>org.apache.maven.plugins</groupId> |
| 167 | <artifactId>maven-javadoc-plugin</artifactId> |
| 168 | <version>2.9.1</version> |
| 169 | <executions> |
| 170 | <execution> |
| 171 | <id>attach-javadocs</id> |
| 172 | <goals> |
| 173 | <goal>jar</goal> |
| 174 | </goals> |
| 175 | </execution> |
| 176 | </executions> |
| 177 | </plugin> |
| 178 | <plugin> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 179 | <artifactId>maven-gpg-plugin</artifactId> |
| 180 | <version>1.6</version> |
| 181 | <executions> |
| 182 | <execution> |
| 183 | <id>sign-artifacts</id> |
| 184 | <phase>verify</phase> |
| 185 | <goals> |
| 186 | <goal>sign</goal> |
| 187 | </goals> |
| 188 | </execution> |
| 189 | </executions> |
| 190 | </plugin> |
| 191 | <plugin> |
| 192 | <groupId>org.sonatype.plugins</groupId> |
| 193 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 194 | <version>1.6.6</version> |
| 195 | <extensions>true</extensions> |
| 196 | <configuration> |
| 197 | <serverId>sonatype-nexus-staging</serverId> |
| 198 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 199 | <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 200 | </configuration> |
| 201 | </plugin> |
| 202 | </plugins> |
| 203 | </build> |
| 204 | </profile> |
| 205 | </profiles> |
| 206 | |
| 207 | <modules> |
| 208 | <module>core</module> |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 209 | <module>util</module> |
| 210 | </modules> |
| 211 | |
| 212 | </project> |