Gilad Chaplik has uploaded a new change for review. Change subject: sla: initial module commit (4/X) ......................................................................
sla: initial module commit (4/X) Adding sla module to the server modules Change-Id: I634d2e44c09b730f4fb3598667ffa11adecea46a Signed-off-by: Gilad Chaplik <gchap...@redhat.com> --- M backend/manager/modules/bll/pom.xml M backend/manager/modules/pom.xml A backend/manager/modules/sla/pom.xml 3 files changed, 61 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/14/13114/1 diff --git a/backend/manager/modules/bll/pom.xml b/backend/manager/modules/bll/pom.xml index f21118d..59c2e11 100644 --- a/backend/manager/modules/bll/pom.xml +++ b/backend/manager/modules/bll/pom.xml @@ -65,6 +65,12 @@ <dependency> <groupId>${engine.groupId}</groupId> + <artifactId>sla</artifactId> + <version>${engine.version}</version> + </dependency> + + <dependency> + <groupId>${engine.groupId}</groupId> <artifactId>scheduler</artifactId> <version>${engine.version}</version> <scope>provided</scope> diff --git a/backend/manager/modules/pom.xml b/backend/manager/modules/pom.xml index c8ee4c4..bd2f0d7 100644 --- a/backend/manager/modules/pom.xml +++ b/backend/manager/modules/pom.xml @@ -20,6 +20,7 @@ <module>dal</module> <module>vdsbroker</module> <module>searchbackend</module> + <module>sla</module> <module>bll</module> <module>beans</module> <module>restapi</module> diff --git a/backend/manager/modules/sla/pom.xml b/backend/manager/modules/sla/pom.xml new file mode 100644 index 0000000..a596945 --- /dev/null +++ b/backend/manager/modules/sla/pom.xml @@ -0,0 +1,54 @@ +<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> + + <parent> + <groupId>org.ovirt.engine.core</groupId> + <artifactId>manager-modules</artifactId> + <version>3.3.0-SNAPSHOT</version> + </parent> + + <artifactId>sla</artifactId> + <packaging>jar</packaging> + + <name>Scheduling</name> + + <dependencies> + <dependency> + <groupId>${engine.groupId}</groupId> + <artifactId>compat</artifactId> + <version>${engine.version}</version> + </dependency> + + <dependency> + <groupId>${engine.groupId}</groupId> + <artifactId>common</artifactId> + <version>${engine.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + <phase>verify</phase> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + + <!-- Create the JBoss module: --> + <plugin> + <groupId>org.ovirt.engine</groupId> + <artifactId>jboss-modules-maven-plugin</artifactId> + </plugin> + + </plugins> + </build> + +</project> -- To view, visit http://gerrit.ovirt.org/13114 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I634d2e44c09b730f4fb3598667ffa11adecea46a Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Gilad Chaplik <gchap...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches