Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 385010 | Differences between
and this patch

Collapse All | Expand All

(-)eclipse.platform.resources/bundles/org.eclipse.core.filesystem.linux.x86/pom.xml (+62 lines)
Lines 45-48 Link Here
45
      </plugin>
45
      </plugin>
46
    </plugins>
46
    </plugins>
47
  </build>
47
  </build>
48
49
  <profiles>
50
    <profile>
51
      <id>build-natives</id>
52
      <activation>
53
        <property>
54
          <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
55
          <name>native</name>
56
          <value>gtk.linux.x86</value>
57
        </property>
58
      </activation>
59
      <build>
60
        <plugins>
61
          <plugin>
62
            <artifactId>maven-antrun-plugin</artifactId>
63
            <version>1.7</version>
64
            <executions>
65
              <execution>
66
                <id>natives</id>
67
                <phase>process-resources</phase>
68
                <configuration>
69
                  <target>
70
                    <exec executable="make" newenvironment="false" dir="../org.eclipse.core.filesystem/natives/unix/linux/"/>
71
           <copy todir="os/linux/x86" >
72
           <fileset dir="../org.eclipse.core.filesystem/natives/unix/linux/">
73
               <include name="libunixfile_*.so"/>
74
           </fileset>
75
           </copy>
76
                  </target>
77
                </configuration>
78
                <goals>
79
                  <goal>run</goal>
80
                </goals>
81
              </execution>
82
            </executions>
83
            <dependencies>
84
              <dependency>
85
                <groupId>bsf</groupId>
86
                <artifactId>bsf</artifactId>
87
                <version>2.4.0</version>
88
              </dependency>
89
              <dependency>
90
                <groupId>rhino</groupId>
91
                <artifactId>js</artifactId>
92
                <version>1.7R2</version>
93
              </dependency>
94
              <dependency>
95
                <groupId>org.apache.ant</groupId>
96
                <artifactId>ant-apache-bsf</artifactId>
97
                <version>1.8.3</version>
98
              </dependency>
99
              <dependency>
100
                <groupId>org.apache.ant</groupId>
101
                <artifactId>ant-nodeps</artifactId>
102
                <version>1.8.1</version>
103
              </dependency>
104
            </dependencies>
105
          </plugin>
106
        </plugins>
107
      </build>
108
    </profile>
109
  </profiles>
48
</project>
110
</project>
(-)eclipse.platform.resources/bundles/org.eclipse.core.filesystem.linux.x86_64/pom.xml (-1 / +62 lines)
Lines 45-48 Link Here
45
      </plugin>
45
      </plugin>
46
    </plugins>
46
    </plugins>
47
  </build>
47
  </build>
48
49
  <profiles>
50
    <profile>
51
      <id>build-natives</id>
52
      <activation>
53
        <property>
54
          <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( -->
55
          <name>native</name>
56
          <value>gtk.linux.x86_64</value>
57
        </property>
58
      </activation>
59
      <build>
60
        <plugins>
61
          <plugin>
62
            <artifactId>maven-antrun-plugin</artifactId>
63
            <version>1.7</version>
64
            <executions>
65
              <execution>
66
                <id>natives</id>
67
                <phase>process-resources</phase>
68
                <configuration>
69
                  <target>
70
                    <exec executable="make" newenvironment="false" dir="../org.eclipse.core.filesystem/natives/unix/linux/"/>
71
           <copy todir="os/linux/x86_64/" >
72
           <fileset dir="../org.eclipse.core.filesystem/natives/unix/linux/">
73
               <include name="libunixfile_*.so"/>
74
           </fileset>
75
           </copy>
76
                  </target>
77
                </configuration>
78
                <goals>
79
                  <goal>run</goal>
80
                </goals>
81
              </execution>
82
            </executions>
83
            <dependencies>
84
              <dependency>
85
                <groupId>bsf</groupId>
86
                <artifactId>bsf</artifactId>
87
                <version>2.4.0</version>
88
              </dependency>
89
              <dependency>
90
                <groupId>rhino</groupId>
91
                <artifactId>js</artifactId>
92
                <version>1.7R2</version>
93
              </dependency>
94
              <dependency>
95
                <groupId>org.apache.ant</groupId>
96
                <artifactId>ant-apache-bsf</artifactId>
97
                <version>1.8.3</version>
98
              </dependency>
99
              <dependency>
100
                <groupId>org.apache.ant</groupId>
101
                <artifactId>ant-nodeps</artifactId>
102
                <version>1.8.1</version>
103
              </dependency>
104
            </dependencies>
105
          </plugin>
106
        </plugins>
107
      </build>
108
    </profile>
109
  </profiles>
48
</project>
110
</project>
49
- 

Return to bug 385010