|
22 | 22 | <modelVersion>4.0.0</modelVersion>
|
23 | 23 |
|
24 | 24 | <parent>
|
25 |
| - <groupId>org.apache.aries.blueprint</groupId> |
26 |
| - <artifactId>blueprint-parent</artifactId> |
27 |
| - <version>1.0.0</version> |
28 |
| - <relativePath>../../blueprint-parent/pom.xml</relativePath> |
| 25 | + <groupId>org.apache.aries</groupId> |
| 26 | + <artifactId>parent</artifactId> |
| 27 | + <version>2.1.2-SNAPSHOT</version> |
| 28 | + <relativePath>../../../parent/pom.xml</relativePath> |
29 | 29 | </parent>
|
30 | 30 |
|
31 | 31 | <groupId>org.apache.aries.blueprint</groupId>
|
|
35 | 35 | <name>Apache Aries Blueprint Maven Plugin iTest</name>
|
36 | 36 |
|
37 | 37 | <properties>
|
38 |
| - <java.target.version>1.7</java.target.version> |
39 |
| - <java.source.version>1.7</java.source.version> |
| 38 | + <aries.skip.version.check>true</aries.skip.version.check> |
40 | 39 |
|
41 |
| - <blueprint-maven-plugin.version>1.9.1-SNAPSHOT</blueprint-maven-plugin.version> |
| 40 | + <blueprint-maven-plugin.version>1.10.1-SNAPSHOT</blueprint-maven-plugin.version> |
42 | 41 | <maven-invoker-plugin.version>3.9.0</maven-invoker-plugin.version>
|
| 42 | + <groovy.version>4.0.24</groovy.version> |
43 | 43 | </properties>
|
44 | 44 |
|
45 | 45 | <scm>
|
|
51 | 51 | <build>
|
52 | 52 | <plugins>
|
53 | 53 | <plugin>
|
54 |
| - <artifactId>maven-compiler-plugin</artifactId> |
| 54 | + <groupId>org.apache.maven.plugins</groupId> |
| 55 | + <artifactId>maven-invoker-plugin</artifactId> |
| 56 | + <version>${maven-invoker-plugin.version}</version> |
55 | 57 | <configuration>
|
56 |
| - <target>${java.target.version}</target> |
57 |
| - <source>${java.source.version}</source> |
| 58 | + <projectsDirectory>src/it</projectsDirectory> |
| 59 | + <pomIncludes> |
| 60 | + <pomInclude>*/pom.xml</pomInclude> |
| 61 | + </pomIncludes> |
| 62 | + <postBuildHookScript>verify</postBuildHookScript> |
| 63 | + <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
| 64 | + <parallelThreads>4</parallelThreads> |
58 | 65 | </configuration>
|
| 66 | + <executions> |
| 67 | + <execution> |
| 68 | + <goals> |
| 69 | + <goal>run</goal> |
| 70 | + </goals> |
| 71 | + </execution> |
| 72 | + </executions> |
| 73 | + <dependencies> |
| 74 | + <dependency> |
| 75 | + <groupId>org.apache.groovy</groupId> |
| 76 | + <artifactId>groovy-xml</artifactId> |
| 77 | + <version>${groovy.version}</version> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
59 | 80 | </plugin>
|
60 | 81 | </plugins>
|
61 | 82 | </build>
|
62 |
| - |
63 |
| - <profiles> |
64 |
| - <profile> |
65 |
| - <id>integration-test</id> |
66 |
| - <build> |
67 |
| - <plugins> |
68 |
| - <plugin> |
69 |
| - <groupId>org.apache.maven.plugins</groupId> |
70 |
| - <artifactId>maven-invoker-plugin</artifactId> |
71 |
| - <version>${maven-invoker-plugin.version}</version> |
72 |
| - <configuration> |
73 |
| - <projectsDirectory>src/it</projectsDirectory> |
74 |
| - <pomIncludes> |
75 |
| - <pomInclude>*/pom.xml</pomInclude> |
76 |
| - </pomIncludes> |
77 |
| - <postBuildHookScript>verify</postBuildHookScript> |
78 |
| - <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
79 |
| - <parallelThreads>4</parallelThreads> |
80 |
| - </configuration> |
81 |
| - <executions> |
82 |
| - <execution> |
83 |
| - <goals> |
84 |
| - <goal>run</goal> |
85 |
| - </goals> |
86 |
| - </execution> |
87 |
| - </executions> |
88 |
| - </plugin> |
89 |
| - </plugins> |
90 |
| - </build> |
91 |
| - </profile> |
92 |
| - </profiles> |
93 | 83 | </project>
|
0 commit comments