Skip to content

Commit

Permalink
Added Eclipse Feature project org.eclipse.egit.bc.feature
Browse files Browse the repository at this point in the history
  • Loading branch information
AlFranzis committed Jul 26, 2013
1 parent 5f42d73 commit 6e9e096
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
17 changes: 17 additions & 0 deletions org.eclipse.egit.bc.feature/.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.feature</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.FeatureBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>
1 change: 1 addition & 0 deletions org.eclipse.egit.bc.feature/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin.includes = feature.xml
26 changes: 26 additions & 0 deletions org.eclipse.egit.bc.feature/feature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.eclipse.egit.bc.feature"
label="org.eclipse.egit.bc.feature"
version="1.0.0">

<description url="https://github.com/AlFranzis/EgitBeyondCompare">
Eclipse EGit Beyond Compare integration
</description>

<copyright url="http://www.example.com/copyright">
[Enter Copyright Description here.]
</copyright>

<license url="http://opensource.org/licenses/EPL-1.0">
The software is published under the terms and conditions of the Eclipse Public License 1.0 (EPL-1.0)
</license>

<plugin
id="org.eclipse.egit.bc"
download-size="0"
install-size="0"
version="1.0.0"
unpack="false"/>

</feature>
47 changes: 47 additions & 0 deletions org.eclipse.egit.bc.feature/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<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.feature</artifactId>
<version>1.0.0</version>
<packaging>eclipse-feature</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 6e9e096

Please sign in to comment.