|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
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/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion>
|
4 | 5 | <parent>
|
5 | 6 | <groupId>org.springframework.boot</groupId>
|
6 |
| - <artifactId>spring-boot-parent</artifactId> |
7 |
| - <version>2.0.0.BUILD-SNAPSHOT</version> |
8 |
| - <relativePath>../spring-boot-parent</relativePath> |
| 7 | + <artifactId>spring-boot-tests</artifactId> |
| 8 | + <version>${revision}</version> |
9 | 9 | </parent>
|
10 | 10 | <artifactId>spring-boot-integration-tests</artifactId>
|
11 | 11 | <packaging>pom</packaging>
|
12 | 12 | <name>Spring Boot Integration Tests</name>
|
13 | 13 | <description>Spring Boot Integration Tests</description>
|
14 |
| - <url>http://projects.spring.io/spring-boot/</url> |
15 |
| - <organization> |
16 |
| - <name>Pivotal Software, Inc.</name> |
17 |
| - <url>http://www.spring.io</url> |
18 |
| - </organization> |
19 | 14 | <properties>
|
20 |
| - <main.basedir>${basedir}/..</main.basedir> |
| 15 | + <main.basedir>${basedir}/../..</main.basedir> |
21 | 16 | <java.version>1.8</java.version>
|
22 | 17 | </properties>
|
23 | 18 | <modules>
|
|
26 | 21 | <module>spring-boot-launch-script-tests</module>
|
27 | 22 | <module>spring-boot-security-tests</module>
|
28 | 23 | </modules>
|
29 |
| - <profiles> |
30 |
| - <profile> |
31 |
| - <id>default</id> |
32 |
| - <activation> |
33 |
| - <activeByDefault>true</activeByDefault> |
34 |
| - </activation> |
35 |
| - <build> |
36 |
| - <plugins> |
37 |
| - <plugin> |
38 |
| - <!-- Invoke integration tests in the install phase, after the maven-plugin |
39 |
| - is available --> |
40 |
| - <groupId>org.apache.maven.plugins</groupId> |
41 |
| - <artifactId>maven-invoker-plugin</artifactId> |
42 |
| - <inherited>false</inherited> |
43 |
| - <configuration> |
44 |
| - <settingsFile>src/it/settings.xml</settingsFile> |
45 |
| - <projectsDirectory>${main.basedir}/spring-boot-samples/</projectsDirectory> |
46 |
| - <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> |
47 |
| - <skipInvocation>${skipTests}</skipInvocation> |
48 |
| - <streamLogs>true</streamLogs> |
49 |
| - <profiles> |
50 |
| - <profile>integration-test</profile> |
51 |
| - </profiles> |
52 |
| - <localRepositoryPath> </localRepositoryPath> |
53 |
| - <pomIncludes> |
54 |
| - <pomInclude>*/pom.xml</pomInclude> |
55 |
| - </pomIncludes> |
56 |
| - </configuration> |
57 |
| - <executions> |
58 |
| - <execution> |
59 |
| - <id>integration-test</id> |
60 |
| - <phase>install</phase> |
61 |
| - <goals> |
62 |
| - <goal>install</goal> |
63 |
| - <goal>run</goal> |
64 |
| - </goals> |
65 |
| - </execution> |
66 |
| - </executions> |
67 |
| - </plugin> |
68 |
| - <plugin> |
69 |
| - <groupId>org.apache.maven.plugins</groupId> |
70 |
| - <artifactId>maven-antrun-plugin</artifactId> |
71 |
| - <inherited>false</inherited> |
72 |
| - <executions> |
73 |
| - <execution> |
74 |
| - <id>clean-samples</id> |
75 |
| - <phase>clean</phase> |
76 |
| - <goals> |
77 |
| - <goal>run</goal> |
78 |
| - </goals> |
79 |
| - <configuration> |
80 |
| - <target> |
81 |
| - <delete includeemptydirs="true"> |
82 |
| - <fileset dir="${main.basedir}/spring-boot-samples" includes="**/target/" /> |
83 |
| - </delete> |
84 |
| - </target> |
85 |
| - </configuration> |
86 |
| - </execution> |
87 |
| - </executions> |
88 |
| - </plugin> |
89 |
| - <plugin> |
90 |
| - <groupId>org.apache.maven.plugins</groupId> |
91 |
| - <artifactId>maven-clean-plugin</artifactId> |
92 |
| - <inherited>false</inherited> |
93 |
| - <executions> |
94 |
| - <execution> |
95 |
| - <id>clean-samples</id> |
96 |
| - <phase>clean</phase> |
97 |
| - <goals> |
98 |
| - <goal>clean</goal> |
99 |
| - </goals> |
100 |
| - </execution> |
101 |
| - </executions> |
102 |
| - </plugin> |
103 |
| - </plugins> |
104 |
| - </build> |
105 |
| - </profile> |
106 |
| - <profile> |
107 |
| - <id>full</id> |
108 |
| - </profile> |
109 |
| - </profiles> |
| 24 | + <build> |
| 25 | + <plugins> |
| 26 | + <plugin> |
| 27 | + <groupId>org.apache.maven.plugins</groupId> |
| 28 | + <artifactId>maven-install-plugin</artifactId> |
| 29 | + <configuration> |
| 30 | + <skip>true</skip> |
| 31 | + </configuration> |
| 32 | + </plugin> |
| 33 | + </plugins> |
| 34 | + </build> |
110 | 35 | </project>
|
0 commit comments