-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpom.xml
More file actions
73 lines (66 loc) · 3.23 KB
/
pom.xml
File metadata and controls
73 lines (66 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.gemoc.modeldebugging.xdsmlframework</groupId>
<artifactId>org.gemoc.modeldebugging.xdsmlframework.root</artifactId>
<version>2.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.eclipse.gemoc</groupId>
<artifactId>org.eclipse.gemoc.modeldebugging.root</artifactId>
<version>2.3.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modules>
<!-- plugins -->
<module>plugins/org.eclipse.gemoc.xdsmlframework.ui.utils</module>
<module>plugins/org.eclipse.gemoc.xdsmlframework.ide.ui</module>
<module>plugins/org.eclipse.gemoc.xdsmlframework.extensions.sirius</module>
<module>tests/org.eclipse.gemoc.xdsmlframework.test.lib</module>
<!-- feature -->
<module>releng/org.eclipse.gemoc.xdsmlframework.feature</module>
<!-- WORKAROUND !! these components are added because we have a build cycle ! there is no cycle in the plugin
dependencies but these plugin are built in another build that depend in this one -->
<!-- <module>../multidimensional_trace_management/plugins/org.eclipse.gemoc.trace.gemoc.api</module>
-->
</modules>
<profiles>
<!-- Profiles are used for switching the repositories used for the build so they either use the CI update sites or local repositories -->
<profile>
<id>ignore_CI_repositories</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<repositories>
</repositories>
</profile>
<profile>
<id>use_CI_repositories</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<!-- <repository> -->
<!-- <id>Gemoc Target Platform all-except-gemoc-executionframework</id> -->
<!-- <layout>p2</layout> -->
<!-- <url>https://ci.inria.fr/gemoc/job/org.gemoc.targetplatform.redirects/lastSuccessfulBuild/artifact/org/gemoc/targetplatform/update/all-except-gemoc-executionframework</url> -->
<!-- </repository> -->
<repository>
<id>gemoc-studio_commons on CI</id>
<layout>p2</layout>
<url>https://ci.inria.fr/gemoc/job/gemoc-studio_commons/lastSuccessfulBuild/artifact/commons/releng/org.eclipse.gemoc.commons.repository/target/repository/</url>
</repository>
<!-- <repository>
<id>modeldebugging_framework_frameworkcommons on CI</id>
<layout>p2</layout>
<url>https://ci.inria.fr/gemoc/job/modeldebugging_framework_framework_commons/lastSuccessfulBuild/artifact/framework/framework_commons/releng/org.gemoc.modeldebugging.framework.commons.repository/target/repository/</url>
</repository>-->
<repository>
<id>modelanimation_siriusmodelanimation on CI</id>
<layout>p2</layout>
<url>http://obeo-siriuslab-nightly.s3-website-eu-west-1.amazonaws.com/SiriusAnimator/master/repository/</url>
</repository>
</repositories>
</profile>
</profiles>
</project>