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 385030 | Differences between
and this patch

Collapse All | Expand All

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

Return to bug 385030