Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 29585d5

Browse files
committed
Adding 1.1.0 egit-github core JAR file as Maven artifact
0 parents  commit 29585d5

11 files changed

+462
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
2+
#Sun Jul 03 09:58:11 PDT 2011
3+
github-parent-1.1.0-SNAPSHOT.pom>=
Lines changed: 253 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,253 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com>
4+
Copyright (C) 2011, Matthias Sohn <matthias.sohn@sap.com>
5+
6+
All rights reserved. This program and the accompanying materials
7+
are made available under the terms of the Eclipse Public License v1.0
8+
which accompanies this distribution, and is available at
9+
http://www.eclipse.org/legal/epl-v10.html
10+
-->
11+
<project
12+
xmlns="http://maven.apache.org/POM/4.0.0"
13+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15+
<modelVersion>4.0.0</modelVersion>
16+
17+
<version>1.1.0-SNAPSHOT</version>
18+
<prerequisites>
19+
<maven>3.0</maven>
20+
</prerequisites>
21+
22+
<groupId>org.eclipse.mylyn.github</groupId>
23+
<artifactId>github-parent</artifactId>
24+
<packaging>pom</packaging>
25+
26+
<name>Eclipse EGit Mylyn GitHub Connector Parent</name>
27+
28+
<licenses>
29+
<license>
30+
<name>Eclipse Public License v1.0</name>
31+
<comments>
32+
All rights reserved.
33+
34+
This program and the accompanying materials are made
35+
available under the terms of the Eclipse Public License v1.0
36+
which accompanies this distribution, and is available at
37+
http://www.eclipse.org/legal/epl-v10.htm
38+
</comments>
39+
</license>
40+
</licenses>
41+
42+
<properties>
43+
<tycho-version>0.12.0</tycho-version>
44+
<egit-site>file:/${basedir}/../../egit/org.eclipse.egit-updatesite/target/site</egit-site>
45+
<platform-version-name>indigo</platform-version-name>
46+
<wikitext-site>http://download.eclipse.org/tools/mylyn/update/weekly</wikitext-site>
47+
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
48+
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository</orbit-site>
49+
<download-publish-path>/home/data/httpd/download.eclipse.org/egit/github/updates-nightly</download-publish-path>
50+
</properties>
51+
52+
<modules>
53+
<module>org.eclipse.egit.github.core</module>
54+
<module>org.eclipse.mylyn.github.core</module>
55+
<module>org.eclipse.mylyn.github.ui</module>
56+
<module>org.eclipse.mylyn.github-feature</module>
57+
<module>org.eclipse.egit.github.core.tests</module>
58+
<!--module>org.eclipse.mylyn.github.tests</module -->
59+
<module>org.eclipse.mylyn.github-site</module>
60+
<module>org.eclipse.mylyn.github.doc</module>
61+
</modules>
62+
63+
<repositories>
64+
<repository>
65+
<id>egit</id>
66+
<layout>p2</layout>
67+
<url>${egit-site}</url>
68+
</repository>
69+
<repository>
70+
<id>indigo</id>
71+
<layout>p2</layout>
72+
<url>${eclipse-site}</url>
73+
</repository>
74+
<repository>
75+
<id>orbit</id>
76+
<layout>p2</layout>
77+
<url>${orbit-site}</url>
78+
</repository>
79+
<repository>
80+
<id>wikitext</id>
81+
<layout>p2</layout>
82+
<url>${wikitext-site}</url>
83+
</repository>
84+
</repositories>
85+
86+
<pluginRepositories>
87+
<pluginRepository>
88+
<id>maven.eclipse.org</id>
89+
<url>http://maven.eclipse.org/nexus/content/repositories/nightly-indigo</url>
90+
</pluginRepository>
91+
<!-- TODO: need 1.0.1.2-SNAPSHOT of the signing plugin until bugfix for
92+
https://bugs.eclipse.org/bugs/show_bug.cgi?id=347591
93+
is available in maven.eclipse.org -->
94+
<pluginRepository>
95+
<id>intalio-dash-signing-plugin</id>
96+
<url>http://intalio.org/public/maven2</url>
97+
<snapshots>
98+
<enabled>true</enabled>
99+
</snapshots>
100+
<releases>
101+
<enabled>true</enabled>
102+
</releases>
103+
</pluginRepository>
104+
</pluginRepositories>
105+
106+
<build>
107+
<plugins>
108+
<plugin>
109+
<groupId>org.eclipse.tycho</groupId>
110+
<artifactId>tycho-maven-plugin</artifactId>
111+
<version>${tycho-version}</version>
112+
<extensions>true</extensions>
113+
</plugin>
114+
<plugin>
115+
<groupId>org.eclipse.tycho</groupId>
116+
<artifactId>target-platform-configuration</artifactId>
117+
<version>${tycho-version}</version>
118+
<configuration>
119+
<resolver>p2</resolver>
120+
</configuration>
121+
</plugin>
122+
</plugins>
123+
<pluginManagement>
124+
<plugins>
125+
<plugin>
126+
<groupId>org.eclipse.tycho</groupId>
127+
<artifactId>tycho-compiler-plugin</artifactId>
128+
<version>${tycho-version}</version>
129+
<configuration>
130+
<encoding>UTF-8</encoding>
131+
</configuration>
132+
</plugin>
133+
<plugin>
134+
<groupId>org.apache.maven.plugins</groupId>
135+
<artifactId>maven-resources-plugin</artifactId>
136+
<version>2.4.1</version>
137+
<configuration>
138+
<encoding>UTF-8</encoding>
139+
</configuration>
140+
</plugin>
141+
<plugin>
142+
<groupId>org.eclipse.tycho</groupId>
143+
<artifactId>target-platform-configuration</artifactId>
144+
<version>${tycho-version}</version>
145+
<configuration>
146+
<resolver>p2</resolver>
147+
<pomDependencies>consider</pomDependencies>
148+
</configuration>
149+
</plugin>
150+
<plugin>
151+
<groupId>org.codehaus.mojo</groupId>
152+
<artifactId>findbugs-maven-plugin</artifactId>
153+
<version>2.3.2</version>
154+
<configuration>
155+
<findbugsXmlOutput>true</findbugsXmlOutput>
156+
<failOnError>false</failOnError>
157+
</configuration>
158+
<executions>
159+
<execution>
160+
<goals>
161+
<goal>check</goal>
162+
</goals>
163+
</execution>
164+
</executions>
165+
</plugin>
166+
<plugin>
167+
<groupId>org.apache.maven.plugins</groupId>
168+
<artifactId>maven-pmd-plugin</artifactId>
169+
<version>2.5</version>
170+
<configuration>
171+
<sourceEncoding>utf-8</sourceEncoding>
172+
<minimumTokens>100</minimumTokens>
173+
<targetJdk>1.5</targetJdk>
174+
<format>xml</format>
175+
<failOnViolation>false</failOnViolation>
176+
</configuration>
177+
<executions>
178+
<execution>
179+
<goals>
180+
<goal>cpd-check</goal>
181+
</goals>
182+
</execution>
183+
</executions>
184+
</plugin>
185+
<plugin>
186+
<groupId>org.apache.maven.plugins</groupId>
187+
<artifactId>maven-javadoc-plugin</artifactId>
188+
<version>2.8</version>
189+
<executions>
190+
<execution>
191+
<goals>
192+
<goal>aggregate</goal>
193+
</goals>
194+
</execution>
195+
</executions>
196+
</plugin>
197+
<plugin>
198+
<groupId>org.eclipse.dash.maven</groupId>
199+
<artifactId>eclipse-maven-signing-plugin</artifactId>
200+
<!-- TODO: need 1.0.1.2-SNAPSHOT of the signing plugin until bugfix for
201+
https://bugs.eclipse.org/bugs/show_bug.cgi?id=347591
202+
is available in maven.eclipse.org -->
203+
<version>1.0.1.2-SNAPSHOT</version>
204+
</plugin>
205+
</plugins>
206+
</pluginManagement>
207+
<sourceDirectory>src/</sourceDirectory>
208+
</build>
209+
210+
<profiles>
211+
<profile>
212+
<id>platform-helios</id>
213+
<activation>
214+
<property>
215+
<name>platform-version-name</name>
216+
<value>helios</value>
217+
</property>
218+
</activation>
219+
<properties>
220+
<eclipse-site>http://download.eclipse.org/releases/helios</eclipse-site>
221+
<platform-version>[3.6,3.7)</platform-version>
222+
</properties>
223+
</profile>
224+
<profile>
225+
<id>platform-indigo</id>
226+
<activation>
227+
<property>
228+
<name>platform-version-name</name>
229+
<value>indigo</value>
230+
</property>
231+
</activation>
232+
<properties>
233+
<eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site>
234+
<platform-version>[3.7,3.8)</platform-version>
235+
</properties>
236+
</profile>
237+
<profile>
238+
<id>static-checks</id>
239+
<build>
240+
<plugins>
241+
<plugin>
242+
<groupId>org.codehaus.mojo</groupId>
243+
<artifactId>findbugs-maven-plugin</artifactId>
244+
</plugin>
245+
<plugin>
246+
<groupId>org.apache.maven.plugins</groupId>
247+
<artifactId>maven-pmd-plugin</artifactId>
248+
</plugin>
249+
</plugins>
250+
</build>
251+
</profile>
252+
</profiles>
253+
</project>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata modelVersion="1.1.0">
3+
<groupId>org.eclipse.mylyn.github</groupId>
4+
<artifactId>github-parent</artifactId>
5+
<version>1.1.0-SNAPSHOT</version>
6+
<versioning>
7+
<snapshot>
8+
<localCopy>true</localCopy>
9+
</snapshot>
10+
<lastUpdated>20110703165811</lastUpdated>
11+
<snapshotVersions>
12+
<snapshotVersion>
13+
<extension>pom</extension>
14+
<value>1.1.0-SNAPSHOT</value>
15+
<updated>20110703165811</updated>
16+
</snapshotVersion>
17+
</snapshotVersions>
18+
</versioning>
19+
</metadata>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata>
3+
<groupId>org.eclipse.mylyn.github</groupId>
4+
<artifactId>github-parent</artifactId>
5+
<versioning>
6+
<versions>
7+
<version>1.1.0-SNAPSHOT</version>
8+
</versions>
9+
<lastUpdated>20110703165811</lastUpdated>
10+
</versioning>
11+
</metadata>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
2+
#Tue Aug 02 18:10:27 PDT 2011
3+
org.eclipse.egit.github.core-1.1.0-SNAPSHOT.jar>=
4+
org.eclipse.egit.github.core-1.1.0-SNAPSHOT-p2artifacts.xml>=
5+
org.eclipse.egit.github.core-1.1.0-SNAPSHOT-p2metadata.xml>=
6+
org.eclipse.egit.github.core-1.1.0-SNAPSHOT.pom>=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata modelVersion="1.1.0">
3+
<groupId>org.eclipse.mylyn.github</groupId>
4+
<artifactId>org.eclipse.egit.github.core</artifactId>
5+
<version>1.1.0-SNAPSHOT</version>
6+
<versioning>
7+
<snapshot>
8+
<localCopy>true</localCopy>
9+
</snapshot>
10+
<lastUpdated>20110803011027</lastUpdated>
11+
<snapshotVersions>
12+
<snapshotVersion>
13+
<classifier>p2artifacts</classifier>
14+
<extension>xml</extension>
15+
<value>1.1.0-SNAPSHOT</value>
16+
<updated>20110803011027</updated>
17+
</snapshotVersion>
18+
<snapshotVersion>
19+
<classifier>p2metadata</classifier>
20+
<extension>xml</extension>
21+
<value>1.1.0-SNAPSHOT</value>
22+
<updated>20110803011027</updated>
23+
</snapshotVersion>
24+
<snapshotVersion>
25+
<extension>jar</extension>
26+
<value>1.1.0-SNAPSHOT</value>
27+
<updated>20110803011027</updated>
28+
</snapshotVersion>
29+
<snapshotVersion>
30+
<extension>pom</extension>
31+
<value>1.1.0-SNAPSHOT</value>
32+
<updated>20110803011027</updated>
33+
</snapshotVersion>
34+
</snapshotVersions>
35+
</versioning>
36+
</metadata>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<?artifactRepository version='1.1.0'?>
3+
<artifacts size='1'>
4+
<artifact classifier='osgi.bundle' id='org.eclipse.egit.github.core' version='1.1.0.201108021810'>
5+
<properties size='6'>
6+
<property name='artifact.size' value='103739'/>
7+
<property name='download.size' value='103739'/>
8+
<property name='download.md5' value='b0db8a2446007bfe05d18bafc2f6c403'/>
9+
<property name='maven-groupId' value='org.eclipse.mylyn.github'/>
10+
<property name='maven-artifactId' value='org.eclipse.egit.github.core'/>
11+
<property name='maven-version' value='1.1.0-SNAPSHOT'/>
12+
</properties>
13+
</artifact>
14+
</artifacts>

0 commit comments

Comments
 (0)