|
11 | 11 | <module>org.omg.sysml</module> |
12 | 12 | <module>org.omg.kerml.xtext</module> |
13 | 13 | <module>org.omg.sysml.xtext</module> |
14 | | - <module>org.omg.sysml.plantuml</module> |
| 14 | + <module>org.omg.kerml.xtext.ui</module> |
| 15 | + <module>org.omg.sysml.xtext.ui</module> |
| 16 | + <module>org.omg.kerml.xtext.ide</module> |
| 17 | + <module>org.omg.sysml.xtext.ide</module> |
15 | 18 | <module>org.omg.sysml.interactive</module> |
| 19 | + <module>org.omg.sysml.feature</module> |
| 20 | + <module>org.omg.sysml.plantuml</module> |
| 21 | + <module>org.omg.sysml.plantuml.eclipse</module> |
| 22 | + <module>org.omg.sysml.plantuml.feature</module> |
| 23 | + <module>org.omg.sysml.site</module> |
16 | 24 | </modules> |
17 | 25 |
|
18 | 26 | <properties> |
19 | 27 | <tycho-version>1.6.0</tycho-version> |
20 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
21 | | - <eclipse-repository>http://download.eclipse.org/releases/2019-12</eclipse-repository> |
| 29 | + <eclipse-repository>https://download.eclipse.org/releases/2019-12</eclipse-repository> |
| 30 | + <plantuml-repository>https://hallvard.github.io/plantuml</plantuml-repository> |
22 | 31 | <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
| 32 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 33 | + <maven.compiler.source>1.8</maven.compiler.source> |
23 | 34 | </properties> |
24 | 35 |
|
25 | 36 | <repositories> |
|
28 | 39 | <url>${eclipse-repository}</url> |
29 | 40 | <layout>p2</layout> |
30 | 41 | </repository> |
| 42 | + <repository> |
| 43 | + <id>plantuml-eclipse</id> |
| 44 | + <url>${plantuml-repository}</url> |
| 45 | + <layout>p2</layout> |
| 46 | + </repository> |
31 | 47 | </repositories> |
32 | 48 |
|
33 | 49 | <build> |
34 | | - <plugins> |
35 | | - <plugin> |
36 | | - <groupId>org.eclipse.tycho</groupId> |
37 | | - <artifactId>tycho-maven-plugin</artifactId> |
38 | | - <version>${tycho-version}</version> |
39 | | - <extensions>true</extensions> |
40 | | - </plugin> |
41 | | - <plugin> |
42 | | - <groupId>org.eclipse.tycho</groupId> |
43 | | - <artifactId>tycho-packaging-plugin</artifactId> |
44 | | - <version>${tycho-version}</version> |
45 | | - <configuration> |
46 | | - <strictVersions>false</strictVersions> |
47 | | - </configuration> |
48 | | - </plugin> |
49 | | - </plugins> |
50 | | -</build> |
| 50 | + <plugins> |
| 51 | + <plugin> |
| 52 | + <groupId>org.eclipse.tycho</groupId> |
| 53 | + <artifactId>tycho-maven-plugin</artifactId> |
| 54 | + <version>${tycho-version}</version> |
| 55 | + <extensions>true</extensions> |
| 56 | + </plugin> |
| 57 | + |
| 58 | + <plugin> |
| 59 | + <groupId>org.eclipse.tycho</groupId> |
| 60 | + <artifactId>tycho-p2-repository-plugin</artifactId> |
| 61 | + <version>${tycho-version}</version> |
| 62 | + <configuration> |
| 63 | + <includeAllDependencies>false</includeAllDependencies> |
| 64 | + </configuration> |
| 65 | + </plugin> |
| 66 | + |
| 67 | + <plugin> |
| 68 | + <groupId>org.eclipse.tycho.extras</groupId> |
| 69 | + <artifactId>tycho-source-feature-plugin</artifactId> |
| 70 | + <version>${tycho-version}</version> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>source-feature</id> |
| 74 | + <phase>package</phase> |
| 75 | + <goals> |
| 76 | + <goal>source-feature</goal> |
| 77 | + </goals> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + <configuration> |
| 81 | + <excludes/> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + <plugin> |
| 85 | + <groupId>org.eclipse.tycho</groupId> |
| 86 | + <artifactId>tycho-source-plugin</artifactId> |
| 87 | + <version>${tycho-version}</version> |
| 88 | + <executions> |
| 89 | + <execution> |
| 90 | + <id>plugin-source</id> |
| 91 | + <goals> |
| 92 | + <goal>plugin-source</goal> |
| 93 | + </goals> |
| 94 | + </execution> |
| 95 | + </executions> |
| 96 | + </plugin> |
| 97 | + |
| 98 | + <plugin> |
| 99 | + <groupId>org.eclipse.tycho</groupId> |
| 100 | + <artifactId>tycho-packaging-plugin</artifactId> |
| 101 | + <version>${tycho-version}</version> |
| 102 | + <configuration> |
| 103 | + <strictVersions>false</strictVersions> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + </plugins> |
| 107 | + </build> |
51 | 108 | </project> |
0 commit comments