|
9 | 9 | <version>0.7.0-SNAPSHOT</version> |
10 | 10 | <packaging>pom</packaging> |
11 | 11 | <name>EMF.cloud Modelserver GLSP Integration Parent</name> |
12 | | - |
| 12 | + <description>EMF.cloud Modelserver GLSP Integration Parent pom</description> |
13 | 13 | <!-- Required metadata for deploying releases to mvn central --> |
14 | 14 |
|
15 | 15 | <url>https://www.eclipse.org/emfcloud/</url> |
|
63 | 63 | <java.source>11</java.source> |
64 | 64 | <java.target>11</java.target> |
65 | 65 |
|
66 | | - <!-- Target: version used to reference target platform from our releng |
67 | | - bundle --> |
68 | | - <target.version>0.7.0-SNAPSHOT</target.version> |
| 66 | + |
69 | 67 |
|
70 | 68 | <!-- Deployment: used by the maven-deploy-plugin --> |
71 | 69 | <maven.deploy.skip>true</maven.deploy.skip> |
|
80 | 78 | <maven.clean.version>3.1.0</maven.clean.version> |
81 | 79 | <maven.checkstyle.version>3.1.1</maven.checkstyle.version> |
82 | 80 | <puppycrawl.checkstyle.version>8.39</puppycrawl.checkstyle.version> |
83 | | - <emfcloud.checkstyle.version>0.1.0-SNAPSHOT</emfcloud.checkstyle.version> |
| 81 | + <emfcloud.checkstyle.version>0.1.0-RC1</emfcloud.checkstyle.version> |
84 | 82 |
|
85 | 83 | <maven.resources.version>3.2.0</maven.resources.version> |
86 | 84 | <maven.surefire.version>3.0.0-M5</maven.surefire.version> |
|
98 | 96 |
|
99 | 97 | <emf.edit.version>2.16.0</emf.edit.version> |
100 | 98 | <glsp.version>0.9.0-SNAPSHOT</glsp.version> |
| 99 | + <modelserver.version>0.7.0-SNAPSHOT</modelserver.version> |
101 | 100 | <emf.transaction.version>1.4.0-v20100331-1738</emf.transaction.version> |
102 | 101 | </properties> |
103 | 102 |
|
|
129 | 128 | <activeByDefault>true</activeByDefault> |
130 | 129 | </activation> |
131 | 130 |
|
132 | | - |
| 131 | + <modules> |
| 132 | + <module>releng</module> |
| 133 | + </modules> |
133 | 134 |
|
134 | 135 | <build> |
135 | 136 | <pluginManagement> |
|
162 | 163 | <artifactId>tycho-versions-plugin</artifactId> |
163 | 164 | <version>${tycho.version}</version> |
164 | 165 | </plugin> |
| 166 | + <plugin> |
| 167 | + <groupId>org.eclipse.tycho</groupId> |
| 168 | + <artifactId>tycho-p2-repository-plugin</artifactId> |
| 169 | + <version>${tycho.version}</version> |
| 170 | + </plugin> |
| 171 | + <plugin> |
| 172 | + <groupId>org.eclipse.tycho</groupId> |
| 173 | + <artifactId>tycho-p2-plugin</artifactId> |
| 174 | + <version>${tycho.version}</version> |
| 175 | + </plugin> |
165 | 176 | </plugins> |
166 | 177 | </pluginManagement> |
167 | 178 | <plugins> |
|
199 | 210 | <goal>plugin-source</goal> |
200 | 211 | </goals> |
201 | 212 | </execution> |
| 213 | + <execution> |
| 214 | + <id>feature-source</id> |
| 215 | + <phase>package</phase> |
| 216 | + <goals> |
| 217 | + <goal>feature-source</goal> |
| 218 | + </goals> |
| 219 | + <configuration> |
| 220 | + <excludes> |
| 221 | + <plugin id="org.apache.batik.pdf" /> |
| 222 | + <plugin id="org.eclipse.wst.common.project.facet.core" /> |
| 223 | + <plugin id="org.eclipse.emfcloud.modelserver.lib" /> |
| 224 | + </excludes> |
| 225 | + </configuration> |
| 226 | + </execution> |
202 | 227 | </executions> |
203 | 228 | </plugin> |
204 | 229 | <plugin> |
|
229 | 254 | <groupId>org.eclipse.emfcloud.modelserver.glsp</groupId> |
230 | 255 | <artifactId>org.eclipse.emfcloud.modelserver.glsp.parent</artifactId> |
231 | 256 | <classifier>releng/org.eclipse.emfcloud.modelserver.glsp.releng.target/targetdefinition</classifier> |
232 | | - <version>${target.version}</version> |
| 257 | + <version>${project.version}</version> |
233 | 258 | </artifact> |
234 | 259 | </target> |
235 | 260 | </configuration> |
236 | 261 | </plugin> |
237 | | - </plugins> |
238 | | - </build> |
239 | | - </profile> |
240 | | - |
241 | | - <!-- P2-Release Profile: Used to build and Eclipse update site. Should |
242 | | - only be used in conjunction with the P2 Profile --> |
243 | | - <profile> |
244 | | - <id>p2-release</id> |
245 | | - <activation> |
246 | | - <activeByDefault>false</activeByDefault> |
247 | | - </activation> |
248 | | - |
249 | | - <modules> |
250 | | - <module>releng</module> |
251 | | - </modules> |
252 | | - |
253 | | - <build> |
254 | | - <pluginManagement> |
255 | | - <plugins> |
256 | | - <plugin> |
257 | | - <groupId>org.eclipse.tycho</groupId> |
258 | | - <artifactId>tycho-p2-repository-plugin</artifactId> |
259 | | - <version>${tycho.version}</version> |
260 | | - </plugin> |
261 | | - <plugin> |
262 | | - <groupId>org.eclipse.tycho</groupId> |
263 | | - <artifactId>tycho-p2-plugin</artifactId> |
264 | | - <version>${tycho.version}</version> |
265 | | - </plugin> |
266 | | - </plugins> |
267 | | - </pluginManagement> |
268 | | - <plugins> |
269 | | - <plugin> |
270 | | - <groupId>org.eclipse.tycho</groupId> |
271 | | - <artifactId>tycho-source-plugin</artifactId> |
272 | | - <executions> |
273 | | - <execution> |
274 | | - <id>feature-source</id> |
275 | | - <phase>package</phase> |
276 | | - <goals> |
277 | | - <goal>feature-source</goal> |
278 | | - </goals> |
279 | | - <configuration> |
280 | | - <excludes> |
281 | | - <plugin id="org.apache.batik.pdf" /> |
282 | | - <plugin id="org.eclipse.wst.common.project.facet.core" /> |
283 | | - <plugin id="org.eclipse.emfcloud.modelserver.lib" /> |
284 | | - </excludes> |
285 | | - </configuration> |
286 | | - </execution> |
287 | | - </executions> |
288 | | - </plugin> |
289 | 262 | <plugin> |
290 | 263 | <groupId>org.eclipse.tycho</groupId> |
291 | 264 | <artifactId>tycho-p2-plugin</artifactId> |
|
0 commit comments