cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Eddie Aftandilian | 078b0d5 | 2020-07-13 17:43:46 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | Copyright 2020 Google Inc. |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 18 | <project |
| 19 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <groupId>com.google.turbine</groupId> |
| 25 | <artifactId>turbine</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 26 | <version>HEAD-SNAPSHOT</version> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 27 | |
| 28 | <name>turbine</name> |
| 29 | <description> |
| 30 | turbine is a header compiler for Java |
| 31 | </description> |
| 32 | |
cushon | 42a8f88 | 2016-12-07 11:54:56 -0800 | [diff] [blame] | 33 | <properties> |
Liam Miller-Cushon | a1dcaa6 | 2021-05-14 16:36:17 -0700 | [diff] [blame] | 34 | <asm.version>9.1</asm.version> |
Liam Miller-Cushon | b594e4b | 2018-09-09 16:56:59 -0700 | [diff] [blame] | 35 | <javac.version>9+181-r4173-1</javac.version> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 36 | <guava.version>30.0-jre</guava.version> |
Liam Miller-Cushon | a1dcaa6 | 2021-05-14 16:36:17 -0700 | [diff] [blame] | 37 | <errorprone.version>2.7.1</errorprone.version> |
Liam Miller-Cushon | 3d2be5e | 2021-06-21 17:16:23 -0700 | [diff] [blame] | 38 | <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version> |
| 39 | <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
Liam Miller-Cushon | 7a5c416 | 2020-12-10 21:41:59 -0800 | [diff] [blame] | 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
cushon | 42a8f88 | 2016-12-07 11:54:56 -0800 | [diff] [blame] | 41 | </properties> |
| 42 | |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>com.google.guava</groupId> |
| 46 | <artifactId>guava</artifactId> |
cushon | 7867013 | 2018-10-21 15:10:51 -0700 | [diff] [blame] | 47 | <version>${guava.version}</version> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
cushon | f0e9744 | 2016-09-14 10:48:35 -0700 | [diff] [blame] | 50 | <groupId>com.google.errorprone</groupId> |
| 51 | <artifactId>error_prone_annotations</artifactId> |
Liam Miller-Cushon | a1dcaa6 | 2021-05-14 16:36:17 -0700 | [diff] [blame] | 52 | <version>${errorprone.version}</version> |
cushon | d0fcced | 2018-04-09 22:38:11 -0700 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.checkerframework</groupId> |
| 56 | <artifactId>checker-qual</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 57 | <version>3.9.1</version> |
cushon | d0fcced | 2018-04-09 22:38:11 -0700 | [diff] [blame] | 58 | <optional>true</optional> |
cushon | f0e9744 | 2016-09-14 10:48:35 -0700 | [diff] [blame] | 59 | </dependency> |
| 60 | <dependency> |
cushon | 667facf | 2016-10-20 14:07:39 -0700 | [diff] [blame] | 61 | <groupId>com.google.protobuf</groupId> |
| 62 | <artifactId>protobuf-java</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 63 | <version>3.10.0</version> |
cushon | 667facf | 2016-10-20 14:07:39 -0700 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 66 | <groupId>org.ow2.asm</groupId> |
cushon | 3d542b8 | 2017-11-29 22:26:07 -0800 | [diff] [blame] | 67 | <artifactId>asm</artifactId> |
| 68 | <version>${asm.version}</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.ow2.asm</groupId> |
| 73 | <artifactId>asm-tree</artifactId> |
| 74 | <version>${asm.version}</version> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.ow2.asm</groupId> |
| 79 | <artifactId>asm-util</artifactId> |
| 80 | <version>${asm.version}</version> |
cushon | 783f80f | 2016-09-19 14:52:44 -0700 | [diff] [blame] | 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
Liam Miller-Cushon | b594e4b | 2018-09-09 16:56:59 -0700 | [diff] [blame] | 84 | <groupId>com.google.errorprone</groupId> |
| 85 | <artifactId>javac</artifactId> |
| 86 | <version>${javac.version}</version> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 90 | <groupId>junit</groupId> |
| 91 | <artifactId>junit</artifactId> |
Liam Miller-Cushon | 7e581be | 2020-10-13 15:20:33 -0700 | [diff] [blame] | 92 | <version>4.13.1</version> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 93 | <scope>test</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>com.google.truth</groupId> |
| 97 | <artifactId>truth</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 98 | <version>1.1</version> |
cushon | 0db7a28 | 2019-08-12 10:37:45 -0700 | [diff] [blame] | 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>com.google.truth.extensions</groupId> |
| 103 | <artifactId>truth-proto-extension</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 104 | <version>1.1</version> |
cushon | 8eab64c | 2018-08-24 09:56:22 -0700 | [diff] [blame] | 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>com.google.truth.extensions</groupId> |
| 109 | <artifactId>truth-java8-extension</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 110 | <version>1.1</version> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 111 | <scope>test</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>com.google.jimfs</groupId> |
| 115 | <artifactId>jimfs</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 116 | <version>1.2</version> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 117 | <scope>test</scope> |
| 118 | </dependency> |
cushon | 7867013 | 2018-10-21 15:10:51 -0700 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>com.google.guava</groupId> |
| 121 | <artifactId>guava-testlib</artifactId> |
| 122 | <version>${guava.version}</version> |
| 123 | <scope>test</scope> |
| 124 | </dependency> |
cushon | 3945405 | 2018-10-23 13:45:50 -0700 | [diff] [blame] | 125 | <dependency> |
| 126 | <groupId>com.google.auto.value</groupId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 127 | <artifactId>auto-value-annotations</artifactId> |
| 128 | <version>1.7.4</version> |
cushon | 3945405 | 2018-10-23 13:45:50 -0700 | [diff] [blame] | 129 | <scope>provided</scope> |
| 130 | </dependency> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 131 | </dependencies> |
| 132 | |
| 133 | <build> |
| 134 | <sourceDirectory>java</sourceDirectory> |
| 135 | <testSourceDirectory>javatests</testSourceDirectory> |
| 136 | <testResources> |
| 137 | <testResource> |
| 138 | <directory>javatests</directory> |
| 139 | <includes> |
| 140 | <include>**/testdata/**</include> |
cushon | 97f8372 | 2018-08-02 10:19:44 -0700 | [diff] [blame] | 141 | <include>**/moduletestdata/**</include> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 142 | </includes> |
| 143 | </testResource> |
| 144 | </testResources> |
cushon | 667facf | 2016-10-20 14:07:39 -0700 | [diff] [blame] | 145 | <extensions> |
| 146 | <extension> |
| 147 | <groupId>kr.motd.maven</groupId> |
| 148 | <artifactId>os-maven-plugin</artifactId> |
cushon | e75cc32 | 2016-10-21 11:49:46 -0700 | [diff] [blame] | 149 | <version>1.4.0.Final</version> |
cushon | 667facf | 2016-10-20 14:07:39 -0700 | [diff] [blame] | 150 | </extension> |
| 151 | </extensions> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 152 | <plugins> |
| 153 | <plugin> |
| 154 | <groupId>org.apache.maven.plugins</groupId> |
| 155 | <artifactId>maven-compiler-plugin</artifactId> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 156 | <version>3.8.0</version> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 157 | <configuration> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 158 | <source>8</source> |
| 159 | <target>8</target> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 160 | <encoding>UTF-8</encoding> |
Liam Miller-Cushon | 622b591 | 2021-01-22 13:10:38 -0800 | [diff] [blame] | 161 | <fork>true</fork> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 162 | <compilerArgs> |
| 163 | <arg>-parameters</arg> |
| 164 | <arg>-XDcompilePolicy=simple</arg> |
| 165 | <arg>-Xplugin:ErrorProne</arg> |
Liam Miller-Cushon | 622b591 | 2021-01-22 13:10:38 -0800 | [diff] [blame] | 166 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg> |
| 167 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg> |
| 168 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg> |
| 169 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg> |
| 170 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg> |
| 171 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg> |
| 172 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> |
| 173 | <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg> |
| 174 | <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 175 | </compilerArgs> |
| 176 | <annotationProcessorPaths> |
| 177 | <path> |
| 178 | <groupId>com.google.errorprone</groupId> |
| 179 | <artifactId>error_prone_core</artifactId> |
Liam Miller-Cushon | a1dcaa6 | 2021-05-14 16:36:17 -0700 | [diff] [blame] | 180 | <version>${errorprone.version}</version> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 181 | </path> |
| 182 | <path> |
| 183 | <groupId>com.google.auto.value</groupId> |
| 184 | <artifactId>auto-value</artifactId> |
| 185 | <version>1.7.4</version> |
| 186 | </path> |
| 187 | </annotationProcessorPaths> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 188 | </configuration> |
| 189 | </plugin> |
cushon | 667facf | 2016-10-20 14:07:39 -0700 | [diff] [blame] | 190 | <plugin> |
| 191 | <groupId>org.xolstice.maven.plugins</groupId> |
| 192 | <artifactId>protobuf-maven-plugin</artifactId> |
| 193 | <version>0.5.0</version> |
| 194 | <configuration> |
| 195 | <protoSourceRoot>proto</protoSourceRoot> |
cushon | e75cc32 | 2016-10-21 11:49:46 -0700 | [diff] [blame] | 196 | <protocArtifact>com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}</protocArtifact> |
cushon | 667facf | 2016-10-20 14:07:39 -0700 | [diff] [blame] | 197 | <pluginId>grpc-java</pluginId> |
| 198 | <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier}</pluginArtifact> |
| 199 | </configuration> |
| 200 | <executions> |
| 201 | <execution> |
| 202 | <goals> |
| 203 | <goal>compile</goal> |
| 204 | <goal>compile-custom</goal> |
| 205 | </goals> |
| 206 | </execution> |
| 207 | </executions> |
| 208 | </plugin> |
cushon | 42a8f88 | 2016-12-07 11:54:56 -0800 | [diff] [blame] | 209 | <plugin> |
| 210 | <groupId>org.apache.maven.plugins</groupId> |
| 211 | <artifactId>maven-surefire-plugin</artifactId> |
| 212 | <version>2.19.1</version> |
| 213 | <configuration> |
Liam Miller-Cushon | 6067ffe | 2017-01-21 01:01:11 -0800 | [diff] [blame] | 214 | <!-- set heap size to work around http://github.com/travis-ci/travis-ci/issues/3396 --> |
Liam Miller-Cushon | 5973e51 | 2021-06-15 18:02:41 -0700 | [diff] [blame] | 215 | <argLine> |
| 216 | -Xmx2g |
| 217 | --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED |
| 218 | --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED |
| 219 | --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED |
| 220 | --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED |
| 221 | --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED |
| 222 | --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED |
| 223 | --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED |
| 224 | --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED |
| 225 | --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED |
| 226 | --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED |
| 227 | </argLine> |
cushon | 42a8f88 | 2016-12-07 11:54:56 -0800 | [diff] [blame] | 228 | </configuration> |
| 229 | </plugin> |
Liam Miller-Cushon | e098b2a | 2018-09-09 17:14:19 -0700 | [diff] [blame] | 230 | <plugin> |
| 231 | <groupId>org.apache.maven.plugins</groupId> |
| 232 | <artifactId>maven-shade-plugin</artifactId> |
| 233 | <version>2.4.3</version> |
| 234 | <executions> |
| 235 | <execution> |
| 236 | <id>shade-all-deps</id> |
| 237 | <phase>package</phase> |
| 238 | <goals> |
| 239 | <goal>shade</goal> |
| 240 | </goals> |
| 241 | <configuration> |
| 242 | <shadedArtifactAttached>true</shadedArtifactAttached> |
| 243 | <shadedClassifierName>all-deps</shadedClassifierName> |
| 244 | <createDependencyReducedPom>false</createDependencyReducedPom> |
| 245 | <!-- http://stackoverflow.com/a/6743609 --> |
| 246 | <filters> |
| 247 | <filter> |
| 248 | <artifact>*:*</artifact> |
| 249 | <excludes> |
| 250 | <exclude>META-INF/*.SF</exclude> |
| 251 | <exclude>META-INF/*.DSA</exclude> |
| 252 | <exclude>META-INF/*.RSA</exclude> |
| 253 | </excludes> |
| 254 | </filter> |
| 255 | </filters> |
| 256 | </configuration> |
| 257 | </execution> |
| 258 | </executions> |
| 259 | </plugin> |
Liam Miller-Cushon | f4d084a | 2021-06-15 19:16:54 -0700 | [diff] [blame] | 260 | <plugin> |
| 261 | <groupId>org.apache.maven.plugins</groupId> |
| 262 | <artifactId>maven-javadoc-plugin</artifactId> |
| 263 | <version>3.1.1</version> |
| 264 | <configuration> |
| 265 | <source>8</source> |
| 266 | <detectJavaApiLink>false</detectJavaApiLink> |
| 267 | <notimestamp>true</notimestamp> |
| 268 | <doctitle>turbine ${project.version} API</doctitle> |
| 269 | </configuration> |
| 270 | </plugin> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 271 | </plugins> |
| 272 | </build> |
Liam Miller-Cushon | 3d2be5e | 2021-06-21 17:16:23 -0700 | [diff] [blame] | 273 | |
| 274 | <distributionManagement> |
| 275 | <snapshotRepository> |
| 276 | <id>sonatype-nexus-snapshots</id> |
| 277 | <name>Sonatype Nexus Snapshots</name> |
| 278 | <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 279 | </snapshotRepository> |
| 280 | <repository> |
| 281 | <id>sonatype-nexus-staging</id> |
| 282 | <name>Nexus Release Repository</name> |
| 283 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 284 | </repository> |
| 285 | </distributionManagement> |
| 286 | |
Liam Miller-Cushon | b594e4b | 2018-09-09 16:56:59 -0700 | [diff] [blame] | 287 | <profiles> |
| 288 | <profile> |
| 289 | <id>java-8</id> |
| 290 | <activation> |
| 291 | <jdk>1.8</jdk> |
| 292 | </activation> |
| 293 | <build> |
| 294 | <plugins> |
| 295 | <plugin> |
| 296 | <groupId>org.apache.maven.plugins</groupId> |
| 297 | <artifactId>maven-surefire-plugin</artifactId> |
| 298 | <configuration> |
| 299 | <!-- put javac.jar on bootclasspath when executing tests --> |
| 300 | <argLine>-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</argLine> |
| 301 | </configuration> |
| 302 | </plugin> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 303 | <plugin> |
| 304 | <groupId>org.apache.maven.plugins</groupId> |
| 305 | <artifactId>maven-compiler-plugin</artifactId> |
| 306 | <configuration> |
| 307 | <fork>true</fork> |
Liam Miller-Cushon | 622b591 | 2021-01-22 13:10:38 -0800 | [diff] [blame] | 308 | <compilerArgs> |
| 309 | <arg>-parameters</arg> |
| 310 | <arg>-XDcompilePolicy=simple</arg> |
| 311 | <arg>-Xplugin:ErrorProne</arg> |
Liam Miller-Cushon | b470d53 | 2021-01-15 17:19:20 -0800 | [diff] [blame] | 312 | <arg>-J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</arg> |
| 313 | </compilerArgs> |
| 314 | </configuration> |
| 315 | </plugin> |
Liam Miller-Cushon | b594e4b | 2018-09-09 16:56:59 -0700 | [diff] [blame] | 316 | </plugins> |
| 317 | </build> |
| 318 | </profile> |
Liam Miller-Cushon | 3d2be5e | 2021-06-21 17:16:23 -0700 | [diff] [blame] | 319 | <profile> |
| 320 | <id>sonatype-oss-release</id> |
| 321 | <build> |
| 322 | <plugins> |
| 323 | <plugin> |
| 324 | <groupId>org.apache.maven.plugins</groupId> |
| 325 | <artifactId>maven-source-plugin</artifactId> |
| 326 | <version>${maven-source-plugin.version}</version> |
| 327 | <executions> |
| 328 | <execution> |
| 329 | <id>attach-sources</id> |
| 330 | <goals> |
| 331 | <goal>jar-no-fork</goal> |
| 332 | </goals> |
| 333 | </execution> |
| 334 | </executions> |
| 335 | </plugin> |
| 336 | <plugin> |
| 337 | <groupId>org.apache.maven.plugins</groupId> |
| 338 | <artifactId>maven-javadoc-plugin</artifactId> |
| 339 | <version>${maven-javadoc-plugin.version}</version> |
| 340 | <executions> |
| 341 | <execution> |
| 342 | <id>attach-javadocs</id> |
| 343 | <goals> |
| 344 | <goal>jar</goal> |
| 345 | </goals> |
| 346 | </execution> |
| 347 | </executions> |
| 348 | </plugin> |
| 349 | <plugin> |
| 350 | <groupId>org.apache.maven.plugins</groupId> |
| 351 | <artifactId>maven-gpg-plugin</artifactId> |
| 352 | <version>1.6</version> |
| 353 | <executions> |
| 354 | <execution> |
| 355 | <id>sign-artifacts</id> |
| 356 | <phase>verify</phase> |
| 357 | <goals> |
| 358 | <goal>sign</goal> |
| 359 | </goals> |
| 360 | </execution> |
| 361 | </executions> |
| 362 | </plugin> |
| 363 | </plugins> |
| 364 | </build> |
| 365 | </profile> |
Liam Miller-Cushon | b594e4b | 2018-09-09 16:56:59 -0700 | [diff] [blame] | 366 | </profiles> |
cushon | c5ee876 | 2016-08-23 14:17:08 -0700 | [diff] [blame] | 367 | </project> |