<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>info.freelibrary</groupId>
  <artifactId>solr-iso639-filter</artifactId>

  <!--
    Maven 3.x will warn about using variables in the version, but version shouldn't
    really _have_ to be static; cf. http://jira.codehaus.org/browse/MNG-4715
  -->
  <version>4.8.1-r20131208</version>

  <name>Solr ISO-639 Filter</name>
  <description>Solr filter that converts ISO-639-1 and ISO-639-2 codes into text</description>
  <url>http://projects.freelibrary.info/solr-iso639-filter</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:ksclarke/solr-iso639-filter.git</connection>
    <developerConnection>scm:git:git@github.com:ksclarke/solr-iso639-filter.git</developerConnection>
    <url>git@github.com:ksclarke/solr-iso639-filter.git</url>
  </scm>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/ksclarke/solr-iso639-filter/issues</url>
  </issueManagement>
  <organization>
    <name>FreeLibrary</name>
    <url>http://freelibrary.info</url>
  </organization>
  <developers>
    <!-- developers are actively contributing code and will field questions -->
    <developer>
      <email>ksclarke@gmail.com</email>
      <name>Kevin S. Clarke</name>
      <url>http://kevinclarke.info</url>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>America/New_York</timezone>
    </developer>
  </developers>
  <!-- contributors have made contributions, but shouldn't be bugged -->
  <contributors>
    <contributor>
      <email>ruestn@gmail.com</email>
      <name>Nick Ruest</name>
      <url>https://github.com/ruebot</url>
      <roles>
        <role>tester</role>
      </roles>
      <timezone>America/Toronto</timezone>
    </contributor>
  </contributors>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <!-- version of solr that we build to as a default -->
    <solr.version>4.8.1</solr.version>
    <solr.scope>4.x-2</solr.scope>
    <!-- other versions used multiple times in the pom -->
    <freelib.build.tools.version>0.0.1</freelib.build.tools.version>
    <maven.checkstyle.version>2.10</maven.checkstyle.version>
  </properties>
  <dependencies>
    <!-- dependencies below are needed for testing -->
    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-test-framework</artifactId>
      <version>${solr.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>xom</groupId>
      <artifactId>xom</artifactId>
      <version>1.2.5</version>
      <scope>test</scope>
    </dependency>
    <!-- we supply the logging library of our choice for our tests -->
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.0.13</version>
      <scope>test</scope>
    </dependency>
    <!-- compile time dependencies -->
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.7</version>
    </dependency>
    <dependency>
      <groupId>org.apache.solr</groupId>
      <artifactId>solr-core</artifactId>
      <version>${solr.version}</version>
      <scope>compile</scope>
      <!-- hadoop-auth still has a hard-coded logging library to exclude -->
      <exclusions>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-log4j12</artifactId>
        </exclusion>
        <exclusion>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-jdk14</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>jcl-over-slf4j</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <build>
    <resources>
      <!-- site's markdown template resources -->
      <resource>
        <directory>${basedir}/src/main/resources</directory>
        <filtering>true</filtering>
        <includes>
          <include>**/*.md</include>
        </includes>
        <targetPath>${basedir}/src</targetPath>
      </resource>
      <!-- normal types of project resources -->
      <resource>
        <directory>${basedir}/src/main/resources</directory>
        <filtering>true</filtering>
        <excludes>
          <exclude>**/*.md</exclude>
        </excludes>
      </resource>
    </resources>
    <plugins>
      <!-- copies version dependent code into the source tree for the build -->
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>1.8</version>
        <executions>
          <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>add-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>src/solr-${solr.scope}/java</source>
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <!-- checks project's code for conformance to coding standards -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>${maven.checkstyle.version}</version>
        <dependencies>
          <dependency>
            <groupId>info.freelibrary</groupId>
            <artifactId>freelib-build-tools</artifactId>
            <version>${freelib.build.tools.version}</version>
          </dependency>
        </dependencies>
        <configuration>
          <consoleOutput>true</consoleOutput>
          <!-- these checks are loaded from the freelib-build-tools jar -->
          <configLocation>checkstyle/checkstyle.xml</configLocation>
          <!-- these suppressions are project specific -->
          <suppressionsLocation>${project.build.directory}/classes/checkstyle-suppressions.xml</suppressionsLocation>
        </configuration>
        <executions>
          <execution>
            <id>checkstyle</id>
            <phase>verify</phase>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <!-- extracts project site's css and js from freelib-build-tools jar -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.8</version>
        <executions>
          <execution>
            <id>unpack</id>
            <phase>generate-resources</phase>
            <goals>
              <goal>unpack</goal>
            </goals>
            <configuration>
              <artifactItems>
                <!-- copies the site stylesheets into the project -->
                <artifactItem>
                  <groupId>info.freelibrary</groupId>
                  <artifactId>freelib-build-tools</artifactId>
                  <version>${freelib.build.tools.version}</version>
                  <type>jar</type>
                  <includes>**/*.css,**/*.js</includes>
                  <outputDirectory>${project.build.directory}</outputDirectory>
                </artifactItem>
                <!-- copies site templates into the resources directory -->
                <artifactItem>
                  <groupId>info.freelibrary</groupId>
                  <artifactId>freelib-build-tools</artifactId>
                  <version>${freelib.build.tools.version}</version>
                  <type>jar</type>
                  <includes>**/*.md</includes>
                  <outputDirectory>${basedir}/src/main/resources</outputDirectory>
                </artifactItem>
              </artifactItems>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <!-- configures compiler to target 1.6 since some folks still stuck there -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
      <!-- cleans up build artifacts -->
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <filesets>
            <fileset>
              <directory>${basedir}/src</directory>
              <includes>
                <include>**/coders-welcome.md</include>
                <include>**/testers-welcome.md</include>
                <include>**/translators-welcome.md</include>
                <include>**/documenters-welcome.md</include>
              </includes>
            </fileset>
          </filesets>
        </configuration>
      </plugin>
      <!-- instructs javadocs plugin to run in aggregation mode -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9</version>
        <configuration>
          <charset>${project.build.sourceEncoding}</charset>
          <docencoding>${project.build.sourceEncoding}</docencoding>
          <docfilessubdirs>true</docfilessubdirs>
          <links>
            <link>http://download.oracle.com/javase/7/docs/api/</link>
            <link>http://lucene.apache.org/solr/4_8_1/solr-core/</link>
            <link>http://lucene.apache.org/core/4_8_1/core/</link>
            <link>http://lucene.apache.org/core/4_8_1/analyzers-common/</link>
          </links>
          <notimestamp>true</notimestamp>
          <show>protected</show>
          <source>1.7</source>
        </configuration>
        <executions>
          <execution>
            <id>aggregate</id>
            <goals>
              <goal>aggregate</goal>
            </goals>
            <phase>site</phase>
          </execution>
        </executions>
      </plugin>
      <!-- maven site generates documentation for use in project website -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
        <version>3.3</version>
        <configuration>
          <generateReports>true</generateReports>
          <inputEncoding>${project.build.sourceEncoding}</inputEncoding>
          <outputEncoding>${project.build.sourceEncoding}</outputEncoding>
          <reportPlugins>
            <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>jdepend-maven-plugin</artifactId>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-project-info-reports-plugin</artifactId>
              <version>2.6</version>
              <configuration>
                <anonymousConnection>scm:git:git@github.com:ksclarke/solr-iso639-filter.git</anonymousConnection>
                <developerConnection>scm:git:git@github.com:ksclarke/solr-iso639-filter.git</developerConnection>
              </configuration>
              <reportSets>
                <reportSet>
                  <reports>
                    <report>summary</report>
                    <report>license</report>
                    <report>modules</report>
                    <report>project-team</report>
                    <report>plugins</report>
                    <report>dependency-info</report>
                  </reports>
                </reportSet>
              </reportSets>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-surefire-plugin</artifactId>
              <version>2.16</version>
              <configuration>
                <forkCount>3</forkCount>
                <reuseForks>true</reuseForks>
              </configuration>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-changes-plugin</artifactId>
              <version>2.9</version>
              <reportSets>
                <reportSet>
                  <reports>
                    <report>changes-report</report>
                  </reports>
                </reportSet>
              </reportSets>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-changelog-plugin</artifactId>
              <version>2.2</version>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>2.9</version>
              <reportSets>
                <reportSet>
                  <id>default</id>
                  <reports>
                    <report>javadoc</report>
                  </reports>
                </reportSet>
                <reportSet>
                  <id>aggregate</id>
                  <reports>
                    <report>aggregate</report>
                  </reports>
                </reportSet>
              </reportSets>
            </plugin>
            <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>findbugs-maven-plugin</artifactId>
              <version>2.5.2</version>
              <configuration>
                <!-- below usually would be a package, but HelpMojo causes probs -->
                <onlyAnalyze>info.freelibrary.maven.CreateSolrCoreMojo,info.freelibrary.maven.CreateSolrCoreMojo$SolrCoreFilter,info.freelibrary.maven.DeleteSolrCoreMojo</onlyAnalyze>
              </configuration>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-pmd-plugin</artifactId>
              <version>3.0.1</version>
              <configuration>
                <aggregate>true</aggregate>
                <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
                <minimumTokens>100</minimumTokens>
                <linkXRef>true</linkXRef>
                <verbose>true</verbose>
                <targetJdk>1.7</targetJdk>
              </configuration>
            </plugin>
            <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>taglist-maven-plugin</artifactId>
              <version>2.4</version>
              <configuration>
                <tagListOptions>
                  <tagClasses>
                    <tagClass>
                      <displayName>TODOs</displayName>
                      <tags>
                        <tag>
                          <matchString>TODO</matchString>
                          <matchType>exact</matchType>
                        </tag>
                      </tags>
                    </tagClass>
                    <tagClass>
                      <displayName>FIXMEs</displayName>
                      <tags>
                        <tag>
                          <matchString>FIXME</matchString>
                          <matchType>exact</matchType>
                        </tag>
                      </tags>
                    </tagClass>
                  </tagClasses>
                </tagListOptions>
              </configuration>
            </plugin>
            <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>cobertura-maven-plugin</artifactId>
              <version>2.5.2</version>
              <configuration>
                <aggregate>true</aggregate>
                <outputDirectory>${project.reporting.outputDirectory}/cobertura</outputDirectory>
              </configuration>
            </plugin>
            <!-- checkstyle here generates the plugin's reports -->
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-checkstyle-plugin</artifactId>
              <version>${maven.checkstyle.version}</version>
              <configuration>
                <consoleOutput>true</consoleOutput>
                <!-- these checks are loaded from the freelib-build-tools jar -->
                <configLocation>checkstyle/checkstyle.xml</configLocation>
                <!-- these suppressions are project specific -->
                <suppressionsLocation>${project.build.directory}/classes/checkstyle-suppressions.xml</suppressionsLocation>
              </configuration>
            </plugin>
          </reportPlugins>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.apache.maven.doxia</groupId>
            <artifactId>doxia-module-markdown</artifactId>
            <version>1.3</version>
          </dependency>
          <dependency>
            <groupId>lt.velykis.maven.skins</groupId>
            <artifactId>reflow-velocity-tools</artifactId>
            <version>1.0.0</version>
          </dependency>
          <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity</artifactId>
            <version>1.7</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.16</version>
        <configuration>
          <systemPropertyVariables>
            <solr.scope>${solr.scope}</solr.scope>
          </systemPropertyVariables>
          <!-- Our integration tests shouldn't be run as unit tests -->
          <excludes>
            <exclude>**/*IntegrationTest.java</exclude>
          </excludes>
          <argLine>-XX:-UseSplitVerifier</argLine>
        </configuration>
      </plugin>
    </plugins>
    <!-- allows publishing of generated documentation to a public s3 site -->
    <extensions>
      <extension>
        <groupId>org.kuali.maven.wagons</groupId>
        <artifactId>maven-s3-wagon</artifactId>
        <version>1.1.20</version>
      </extension>
    </extensions>
  </build>
  <profiles>
    <!--
      Below is pretty verbose way to check solr.version(s), but Maven doesn't
      give us a startsWith() check for command line properties, so...
    -->
    <profile>
      <id>solr-3.6.1</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>3.6.1</value>
        </property>
      </activation>
      <properties>
        <solr.scope>3.x</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>3.6.1</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-3.6.2</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>3.6.2</value>
        </property>
      </activation>
      <properties>
        <solr.scope>3.x</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>3.6.2</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.0.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.0.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-1</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.0.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.1.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.1.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-1</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.1.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.2.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.2.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-1</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.2.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.2.1</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.2.1</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-1</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.2.1</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.3.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.3.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.3.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.3.1</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.3.1</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.3.1</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.4.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.4.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.4.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.5.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.5.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.5.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.5.1</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.5.1</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.5.1</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.6.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.6.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.6.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.6.1</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.6.1</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.6.1</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.7.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.7.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.7.0</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.7.1</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.7.1</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.7.1</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.7.2</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.7.2</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.7.2</solr.version>
      </properties>
    </profile>
    <profile>
      <id>solr-4.8.0</id>
      <activation>
        <property>
          <name>solr.version</name>
          <value>4.8.0</value>
        </property>
      </activation>
      <properties>
        <solr.scope>4.x-2</solr.scope>
        <!-- redundant, but `mvn release:prepare` needs this -->
        <solr.version>4.8.0</solr.version>
      </properties>
    </profile>
    <!-- a build profile just used on Travis runs to run the integration tests -->
    <profile>
      <id>travis</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-failsafe-plugin</artifactId>
            <version>2.16</version>
            <configuration>
              <systemPropertyVariables>
                <solr.scope>${solr.scope}</solr.scope>
              </systemPropertyVariables>
              <includes>
                <include>**/*IntegrationTest.java</include>
              </includes>
            </configuration>
            <executions>
              <execution>
                <goals>
                  <goal>integration-test</goal>
                  <goal>verify</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
    <!-- build profile only used when publishing versions of this project -->
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <!-- site to upload generated documentation to on formal releases -->
  <distributionManagement>
    <site>
      <id>s3.site</id>
      <url>s3://projects.freelibrary.info/solr-iso639-filter</url>
    </site>
  </distributionManagement>
  <!-- configuration used for publishing to the maven centralized repo -->
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
</project>
