Skip to content

Commit f3bdca8

Browse files
committed
Added Eclipse P2 Update Site project org.eclipse.egit.bc.update
1 parent 6e9e096 commit f3bdca8

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>org.eclipse.egit.bc.update</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.pde.UpdateSiteBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.pde.UpdateSiteNature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<site>
3+
<feature url="features/org.eclipse.egit.bc.feature_1.0.0.jar" id="org.eclipse.egit.bc.feature" version="1.0.0">
4+
<category name="EGitBeyondCompare"/>
5+
</feature>
6+
<category-def name="EGitBeyondCompare" label="EGitBeyondCompare"/>
7+
</site>

org.eclipse.egit.bc.update/pom.xml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>al.franzis.eclipse</groupId>
6+
<artifactId>org.eclipse.egit.bc.update</artifactId>
7+
<version>1.0.0</version>
8+
<packaging>eclipse-repository</packaging>
9+
<repositories>
10+
<!-- P2 repositories used by Tycho to resolve OSGi dependencies -->
11+
<repository>
12+
<id>kepler</id>
13+
<layout>p2</layout>
14+
<url>http://download.eclipse.org/releases/kepler</url>
15+
</repository>
16+
<repository>
17+
<id>galileoTest</id>
18+
<layout>p2</layout>
19+
<url>http://download.eclipse.org/eclipse/updates/3.6-JUnit-Tests/</url>
20+
</repository>
21+
</repositories>
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.eclipse.tycho</groupId>
26+
<artifactId>tycho-maven-plugin</artifactId>
27+
<version>${tycho-version}</version>
28+
<extensions>true</extensions>
29+
</plugin>
30+
<plugin>
31+
<groupId>org.eclipse.tycho</groupId>
32+
<artifactId>target-platform-configuration</artifactId>
33+
<version>${tycho-version}</version>
34+
<configuration>
35+
<!-- Enable <resolver> so Tycho uses P2 repositories specified in the <repositories>
36+
section above to resolve OSGi dependencies -->
37+
<resolver>p2</resolver>
38+
<pomDependencies>consider</pomDependencies>
39+
</configuration>
40+
</plugin>
41+
</plugins>
42+
</build>
43+
<properties>
44+
<tycho-version>0.18.0</tycho-version>
45+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46+
</properties>
47+
48+
</project>

0 commit comments

Comments
 (0)