kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/extractors/config/preprocessor/modifier/testdata/modified-wrong-source-version-pom.xml (about)

     1  <?xml version="1.0"?>
     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">
     3    <modelVersion>4.0.0</modelVersion>
     4    <groupId>com.google.testapp</groupId>
     5    <artifactId>testapp</artifactId>
     6    <packaging>jar</packaging>
     7    <version>1.0-SNAPSHOT</version>
     8    <name>testapp</name>
     9    <url>http://maven.apache.org</url>
    10    <dependencies>
    11      <dependency>
    12        <groupId>junit</groupId>
    13        <artifactId>junit</artifactId>
    14        <version>3.8.1</version>
    15        <scope>test</scope>
    16      </dependency>
    17    </dependencies>
    18    <build>
    19      <plugins>
    20        <plugin>
    21          <groupId>org.apache.maven.plugins</groupId>
    22          <artifactId>maven-compiler-plugin</artifactId>
    23          <version>3.7.0</version>
    24          <configuration>
    25            <!-- Note we don't support java < 1.7, so this should blow up. -->
    26            <source>1.6</source>
    27            <target>1.7</target>
    28          </configuration>
    29        </plugin>
    30      </plugins>
    31    </build>
    32  </project>