kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/extractors/config/preprocessor/modifier/testdata/plugin-management-missing-version-pom.xml (about) 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 6 <modelVersion>4.0.0</modelVersion> 7 <parent> 8 <groupId>org.sonatype.oss</groupId> 9 <artifactId>oss-parent</artifactId> 10 <version>9</version> 11 </parent> 12 <groupId>com.google.guava</groupId> 13 <artifactId>guava-parent</artifactId> 14 <version>HEAD-jre-SNAPSHOT</version> 15 <packaging>pom</packaging> 16 <name>Guava Maven Parent</name> 17 <url>https://github.com/google/guava</url> 18 <!-- Rest of this file omitted, but you can find it from above link. --> 19 <build> 20 <plugins> 21 <plugin> 22 <artifactId>maven-javadoc-plugin</artifactId> 23 <version>${maven-javadoc-plugin.version}</version> 24 </plugin> 25 </plugins> 26 <pluginManagement> 27 <plugins> 28 <plugin> 29 <artifactId>maven-compiler-plugin</artifactId> 30 <!-- The version is missing, so this blows up. --> 31 <configuration> 32 <source>1.8</source> 33 <target>1.8</target> 34 </configuration> 35 </plugin> 36 <plugin> 37 <artifactId>maven-jar-plugin</artifactId> 38 <version>3.0.2</version> 39 <configuration> 40 <excludes> 41 <exclude>**/ForceGuavaCompilation*</exclude> 42 </excludes> 43 </configuration> 44 </plugin> 45 <plugin> 46 <artifactId>maven-source-plugin</artifactId> 47 <version>2.1.2</version> 48 <executions> 49 <execution> 50 <id>attach-sources</id> 51 <phase>post-integration-test</phase> 52 <goals><goal>jar</goal></goals> 53 </execution> 54 </executions> 55 <configuration> 56 <excludes> 57 <exclude>**/ForceGuavaCompilation*</exclude> 58 </excludes> 59 </configuration> 60 </plugin> 61 </plugins> 62 </pluginManagement> 63 </build> 64 </project>