aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/project-dynamism/pom-interp.xml
blob: 40fdb4149d9c5c05427aaa96c01ca1cf48f5d808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <modelVersion>4.0.0</modelVersion>

  <groupId>org.test</groupId>
  <artifactId>test-build-dynamism</artifactId>
  <version>1</version>

  <build>
    <sourceDirectory>/${project.groupId}/src/main/java</sourceDirectory>
    <testSourceDirectory>/${pom.groupId}/src/test/java</testSourceDirectory>
    <scriptSourceDirectory>/${groupId}/src/main/scripts</scriptSourceDirectory>

    <plugins>
      <plugin>
        <artifactId>my-plugin</artifactId>
        <configuration>
          <testOne>${project.groupId}</testOne>
          <testTwo>${pom.groupId}</testTwo>
          <testThree>${groupId}</testThree>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>