mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-15 18:12:35 +01:00
Use codegenerator to sync marvin cloudstackAPIs from a given cloudstack endpoint. Sometimes you want to synchronize marvin with the new APIs that you have introduced locally or any alterations you may have made the API. In such cases you can sync marvin's libraries as follows. $sudo mvn -Pdeveloper,marvin.sync -Dendpoint=localhost -pl :cloud-marvin This needs sudo privileges since it will call on pip to upgrade the existing marvin installation on your machine. The endpoint is where your management server is running and is exposing the API discovery plugin. A listApis call is made and the resulting json deserialized back into marvin's library entities. Signed-off-by: Prasanna Santhanam <tsp@apache.org>
219 lines
8.0 KiB
XML
219 lines
8.0 KiB
XML
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
|
license agreements. See the NOTICE file distributed with this work for additional
|
|
information regarding copyright ownership. The ASF licenses this file to
|
|
you under the Apache License, Version 2.0 (the "License"); you may not use
|
|
this file except in compliance with the License. You may obtain a copy of
|
|
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
|
|
by applicable law or agreed to in writing, software distributed under the
|
|
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
|
|
OF ANY KIND, either express or implied. See the License for the specific
|
|
language governing permissions and limitations under the License. -->
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>cloud-marvin</artifactId>
|
|
<name>Apache CloudStack marvin</name>
|
|
<packaging>pom</packaging>
|
|
<parent>
|
|
<groupId>org.apache.cloudstack</groupId>
|
|
<artifactId>cloud-tools</artifactId>
|
|
<version>4.2.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<version>1.7</version>
|
|
<executions>
|
|
<execution>
|
|
<id>clean</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<target>
|
|
<delete dir="marvin/cloudstackAPI"/>
|
|
<echo>Deleting ${project.artifactId} API sources</echo>
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-sources</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${basedir}/marvin</workingDirectory>
|
|
<executable>python</executable>
|
|
<arguments>
|
|
<argument>codegenerator.py</argument>
|
|
<argument>-s</argument>
|
|
<argument>${basedir}/../apidoc/target/commands.xml</argument>
|
|
<echo>Generating ${project.artifactId} API classes}</echo>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>install</id>
|
|
<phase>install</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${exec.workingdir}</workingDirectory>
|
|
<executable>python</executable>
|
|
<arguments>
|
|
<argument>setup.py</argument>
|
|
<argument>sdist</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<!-- Custom profiles for sync and integration tests-->
|
|
<profiles>
|
|
<profile>
|
|
<id>sync</id>
|
|
<activation>
|
|
<property>
|
|
<name>endpoint</name>
|
|
<value>localhost</value>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-sources</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${basedir}/marvin</workingDirectory>
|
|
<executable>python</executable>
|
|
<arguments>
|
|
<argument>codegenerator.py</argument>
|
|
<argument>-e</argument>
|
|
<argument>${endpoint}</argument>
|
|
<echo>Generating ${project.artifactId} API classes}</echo>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>package</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${exec.workingdir}</workingDirectory>
|
|
<executable>python</executable>
|
|
<arguments>
|
|
<argument>setup.py</argument>
|
|
<argument>sdist</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>install</id>
|
|
<phase>install</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${basedir}/dist</workingDirectory>
|
|
<executable>pip</executable>
|
|
<arguments>
|
|
<argument>install</argument>
|
|
<argument>--upgrade</argument>
|
|
<argument>Marvin-0.1.0.tar.gz</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>marvin</id>
|
|
<activation>
|
|
<property>
|
|
<name>marvin.config</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>pre-integration-test</id>
|
|
<phase>pre-integration-test</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${basedir}/marvin</workingDirectory>
|
|
<executable>python</executable>
|
|
<arguments>
|
|
<argument>deployAndRun.py</argument>
|
|
<argument>-c</argument>
|
|
<argument>${user.dir}/${marvin.config}</argument>
|
|
<argument>-t</argument>
|
|
<argument>/tmp/t.log</argument>
|
|
<argument>-r</argument>
|
|
<argument>/tmp/r.log</argument>
|
|
<argument>-f</argument>
|
|
<argument>${basedir}/marvin/testSetupSuccess.py</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>integration-test</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<workingDirectory>${basedir}/marvin</workingDirectory>
|
|
<executable>nosetests</executable>
|
|
<arguments>
|
|
<argument>--with-marvin</argument>
|
|
<argument>--marvin-config</argument>
|
|
<argument>${user.dir}/${marvin.config}</argument>
|
|
<argument>--load</argument>
|
|
<argument>-a</argument>
|
|
<argument>tags=simulator</argument>
|
|
<argument>${basedir}/../../test/integration/smoke/test_vm_life_cycle.py</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|