View | Details | Raw Unified | Return to bug 412211 | Differences between
and this patch

Collapse All | Expand All

(-)a/.gitignore (+3 lines)
Lines 30-32 temp.folder Link Here
30
src.zip
30
src.zip
31
.fbwarnings
31
.fbwarnings
32
javaCompiler...args
32
javaCompiler...args
33
34
# maven
35
target/
(-)a/org.eclipse.wst.common.snippets.tests/pom.xml (+26 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012, 2013 Eclipse Foundation and others.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
    Thanh Ha (Eclipse Foundation) - initial implementation
11
-->
12
13
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
14
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
15
  <modelVersion>4.0.0</modelVersion>
16
  <parent>
17
    <groupId>org.eclipse.webtools.common</groupId>
18
    <artifactId>org.eclipse.webtools.common.snippets</artifactId>
19
    <version>3.5.0-SNAPSHOT</version>
20
  </parent>
21
22
  <groupId>org.eclipse.webtools.common</groupId>
23
  <artifactId>org.eclipse.wst.common.snippets.tests</artifactId>
24
  <version>1.0.400-SNAPSHOT</version>
25
  <packaging>eclipse-plugin</packaging>
26
</project>
(-)a/org.eclipse.wst.common.snippets/pom.xml (+46 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012, 2013 Eclipse Foundation and others.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
    Thanh Ha (Eclipse Foundation) - initial implementation
11
-->
12
13
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
14
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
15
  <modelVersion>4.0.0</modelVersion>
16
  <parent>
17
    <groupId>org.eclipse.webtools.common</groupId>
18
    <artifactId>org.eclipse.webtools.common.snippets</artifactId>
19
    <version>3.5.0-SNAPSHOT</version>
20
  </parent>
21
22
  <groupId>org.eclipse.webtools.common</groupId>
23
  <artifactId>org.eclipse.wst.common.snippets</artifactId>
24
  <version>1.2.200-SNAPSHOT</version>
25
  <packaging>eclipse-plugin</packaging>
26
27
  <build>
28
    <plugins>
29
      <plugin>
30
        <groupId>org.eclipse.tycho</groupId>
31
        <artifactId>target-platform-configuration</artifactId>
32
        <configuration>
33
          <dependency-resolution>
34
            <extraRequirements>
35
              <requirement>
36
                <type>eclipse-plugin</type>
37
                <id>com.ibm.icu</id>
38
                <versionRange>0.0.0</versionRange>
39
              </requirement>
40
            </extraRequirements>
41
          </dependency-resolution>
42
        </configuration>
43
      </plugin>
44
    </plugins>
45
  </build> 
46
</project>
(-)a/pom.xml (-1 / +33 lines)
Added Link Here
0
- 
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012, 2013 Eclipse Foundation and others.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
    Thanh Ha (Eclipse Foundation) - initial implementation
11
-->
12
13
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
14
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
15
  <modelVersion>4.0.0</modelVersion>
16
17
  <parent>
18
    <groupId>org.eclipse</groupId>
19
    <artifactId>wtp-parent</artifactId>
20
    <version>3.5.0-SNAPSHOT</version>
21
    <relativePath>../wtp-parent</relativePath>
22
  </parent>
23
24
  <groupId>org.eclipse.webtools.common</groupId>
25
  <artifactId>org.eclipse.webtools.common.snippets</artifactId>
26
  <version>3.5.0-SNAPSHOT</version>
27
  <packaging>pom</packaging>
28
29
  <modules>
30
    <module>org.eclipse.wst.common.snippets</module>
31
    <module>org.eclipse.wst.common.snippets.tests</module>
32
  </modules>
33
</project>

Return to bug 412211