|
20 | 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
21 | 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
22 | 22 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
23 | | - <modelVersion>4.0.0</modelVersion> |
24 | | - <artifactId>cloud-plugin-api-discovery</artifactId> |
25 | | - <name>Apache CloudStack Plugin - API Discovery</name> |
26 | | - <parent> |
27 | | - <groupId>org.apache.cloudstack</groupId> |
28 | | - <artifactId>cloudstack-plugins</artifactId> |
29 | | - <version>4.1.0-SNAPSHOT</version> |
30 | | - <relativePath>../../pom.xml</relativePath> |
31 | | - </parent> |
32 | | - <dependencies> |
33 | | - <dependency> |
34 | | - <groupId>org.apache.cloudstack</groupId> |
35 | | - <artifactId>cloud-api</artifactId> |
36 | | - <version>${project.version}</version> |
37 | | - </dependency> |
38 | | - <dependency> |
39 | | - <groupId>org.apache.cloudstack</groupId> |
40 | | - <artifactId>cloud-utils</artifactId> |
41 | | - <version>${project.version}</version> |
42 | | - </dependency> |
43 | | - </dependencies> |
| 23 | + <modelVersion>4.0.0</modelVersion> |
| 24 | + <artifactId>cloud-plugin-api-discovery</artifactId> |
| 25 | + <name>Apache CloudStack Plugin - API Discovery</name> |
| 26 | + <parent> |
| 27 | + <groupId>org.apache.cloudstack</groupId> |
| 28 | + <artifactId>cloudstack-plugins</artifactId> |
| 29 | + <version>4.1.0-SNAPSHOT</version> |
| 30 | + <relativePath>../../pom.xml</relativePath> |
| 31 | + </parent> |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>org.apache.cloudstack</groupId> |
| 35 | + <artifactId>cloud-api</artifactId> |
| 36 | + <version>${project.version}</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>org.apache.cloudstack</groupId> |
| 40 | + <artifactId>cloud-utils</artifactId> |
| 41 | + <version>${project.version}</version> |
| 42 | + </dependency> |
| 43 | + </dependencies> |
| 44 | + <build> |
| 45 | + <defaultGoal>install</defaultGoal> |
| 46 | + <sourceDirectory>src</sourceDirectory> |
| 47 | + <testSourceDirectory>test</testSourceDirectory> |
| 48 | + <testResources> |
| 49 | + <testResource> |
| 50 | + <directory>test/resources</directory> |
| 51 | + </testResource> |
| 52 | + </testResources> |
| 53 | + <plugins> |
| 54 | + <plugin> |
| 55 | + <groupId>org.apache.maven.plugins</groupId> |
| 56 | + <artifactId>maven-surefire-plugin</artifactId> |
| 57 | + <configuration> |
| 58 | + <argLine>-Xmx1024m</argLine> |
| 59 | + <excludes> |
| 60 | + <exclude>org/apache/cloudstack/discovery/integration/*</exclude> |
| 61 | + </excludes> |
| 62 | + </configuration> |
| 63 | + </plugin> |
| 64 | + </plugins> |
| 65 | + </build> |
44 | 66 | </project> |
0 commit comments