1<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">
2  <modelVersion>4.0.0</modelVersion>
3
4  <parent>
5    <groupId>org.codehaus.plexus</groupId>
6    <artifactId>plexus-components</artifactId>
7    <version>1.3.1</version>
8  </parent>
9
10  <artifactId>plexus-interpolation</artifactId>
11  <version>1.21</version>
12
13  <name>Plexus Interpolation API</name>
14
15  <scm>
16    <connection>scm:git:git@github.com:sonatype/plexus-interpolation.git</connection>
17    <developerConnection>scm:git:git@github.com:sonatype/plexus-interpolation.git</developerConnection>
18    <url>http://github.com/sonatype/plexus-interpolation</url>
19    <tag>plexus-interpolation-1.21</tag>
20  </scm>
21
22<build>
23<plugins>
24      <plugin>
25        <groupId>org.apache.maven.plugins</groupId>
26        <artifactId>maven-release-plugin</artifactId>
27        <version>2.5.1</version>
28        <configuration>
29          <!-- olamy: exclude files with strange names as failed here on osx -->
30          <checkModificationExcludes>
31            <checkModificationExclude>**/src/test/resources/utf8/**</checkModificationExclude>
32          </checkModificationExcludes>
33        </configuration>
34      </plugin>
35</plugins>
36</build>
37
38  <dependencies>
39    <dependency>
40      <groupId>junit</groupId>
41      <artifactId>junit</artifactId>
42      <version>3.8.2</version>
43      <scope>test</scope>
44    </dependency>
45  </dependencies>
46
47</project>
48