Skip to content

Commit

Permalink
Added Eclipse P2 Update Site project org.eclipse.egit.bc.update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlFranzis committed Jul 26, 2013
1 parent 6e9e096 commit f3bdca8
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
17 changes: 17 additions & 0 deletions org.eclipse.egit.bc.update/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.eclipse.egit.bc.update</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.UpdateSiteBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.UpdateSiteNature</nature>
</natures>
</projectDescription>
7 changes: 7 additions & 0 deletions org.eclipse.egit.bc.update/category.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/org.eclipse.egit.bc.feature_1.0.0.jar" id="org.eclipse.egit.bc.feature" version="1.0.0">
<category name="EGitBeyondCompare"/>
</feature>
<category-def name="EGitBeyondCompare" label="EGitBeyondCompare"/>
</site>
48 changes: 48 additions & 0 deletions org.eclipse.egit.bc.update/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>al.franzis.eclipse</groupId>
<artifactId>org.eclipse.egit.bc.update</artifactId>
<version>1.0.0</version>
<packaging>eclipse-repository</packaging>
<repositories>
<!-- P2 repositories used by Tycho to resolve OSGi dependencies -->
<repository>
<id>kepler</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/kepler</url>
</repository>
<repository>
<id>galileoTest</id>
<layout>p2</layout>
<url>http://download.eclipse.org/eclipse/updates/3.6-JUnit-Tests/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<!-- Enable <resolver> so Tycho uses P2 repositories specified in the <repositories>
section above to resolve OSGi dependencies -->
<resolver>p2</resolver>
<pomDependencies>consider</pomDependencies>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<tycho-version>0.18.0</tycho-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>

0 comments on commit f3bdca8

Please sign in to comment.