|
1 | 1 | <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">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - <groupId>org.kohsuke</groupId> |
| 3 | + <parent> |
| 4 | + <groupId>org.kohsuke</groupId> |
| 5 | + <artifactId>pom</artifactId> |
| 6 | + <version>1</version> |
| 7 | + </parent> |
| 8 | + |
4 | 9 | <artifactId>github-api</artifactId>
|
5 |
| - <packaging>jar</packaging> |
6 | 10 | <version>1.9-SNAPSHOT</version>
|
7 | 11 | <name>GitHub API for Java</name>
|
8 |
| - <url>http://kohsuke.org/github-api/</url> |
| 12 | + <url>http://github-api.kohsuke.org/</url> |
9 | 13 | <description>GitHub API for Java</description>
|
10 | 14 |
|
| 15 | + <scm> |
| 16 | + <connection>scm:git:git@github.com/kohsuke/${project.artifactId}.git</connection> |
| 17 | + <developerConnection>scm:git:ssh://git@github.com/kohsuke/${project.artifactId}.git</developerConnection> |
| 18 | + <url>http://${project.artifactId}.kohsuke.org/</url> |
| 19 | + </scm> |
| 20 | + |
11 | 21 | <distributionManagement>
|
12 |
| - <repository> |
13 |
| - <id>maven.jenkins-ci.org</id> |
14 |
| - <url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url> |
15 |
| - </repository> |
16 | 22 | <site>
|
17 |
| - <id>kohsuke.org</id> |
18 |
| - <url>scp://kohsuke.org/home/kohsuke/kohsuke.org/github-api/</url> |
| 23 | + <id>github-pages</id> |
| 24 | + <url>gitsite:git@github.com/kohsuke/${project.artifactId}.git</url> |
19 | 25 | </site>
|
20 | 26 | </distributionManagement>
|
21 | 27 |
|
22 |
| - <repositories> |
23 |
| - <repository> |
24 |
| - <id>m.g.o-public</id> |
25 |
| - <url>http://maven.glassfish.org/content/groups/public/</url> |
26 |
| - <releases> |
27 |
| - <enabled>true</enabled> |
28 |
| - </releases> |
29 |
| - <snapshots> |
30 |
| - <enabled>false</enabled> |
31 |
| - </snapshots> |
32 |
| - </repository> |
33 |
| - </repositories> |
34 |
| - |
35 |
| - <pluginRepositories> |
36 |
| - <pluginRepository> |
37 |
| - <id>m.g.o-public</id> |
38 |
| - <url>http://maven.glassfish.org/content/groups/public/</url> |
39 |
| - <releases> |
40 |
| - <enabled>true</enabled> |
41 |
| - </releases> |
42 |
| - <snapshots> |
43 |
| - <enabled>false</enabled> |
44 |
| - </snapshots> |
45 |
| - </pluginRepository> |
46 |
| - </pluginRepositories> |
47 |
| - |
48 |
| - <build> |
49 |
| - <plugins> |
50 |
| - <plugin> |
51 |
| - <artifactId>maven-compiler-plugin</artifactId> |
52 |
| - <configuration> |
53 |
| - <source>1.5</source> |
54 |
| - <target>1.5</target> |
55 |
| - </configuration> |
56 |
| - </plugin> |
57 |
| - <plugin> |
58 |
| - <groupId>org.apache.maven.plugins</groupId> |
59 |
| - <artifactId>maven-release-plugin</artifactId> |
60 |
| - <version>2.0</version> |
61 |
| - <dependencies> |
62 |
| - <dependency> |
63 |
| - <groupId>org.apache.maven.scm</groupId> |
64 |
| - <artifactId>maven-scm-provider-gitexe</artifactId> |
65 |
| - <version>1.2</version> |
66 |
| - </dependency> |
67 |
| - </dependencies> |
68 |
| - </plugin> |
69 |
| - <plugin> |
70 |
| - <groupId>org.apache.maven.plugins</groupId> |
71 |
| - <artifactId>maven-scm-plugin</artifactId> |
72 |
| - <version>1.3</version> |
73 |
| - </plugin> |
74 |
| - </plugins> |
75 |
| - <extensions> |
76 |
| - <extension> |
77 |
| - <groupId>org.jvnet.wagon-svn</groupId> |
78 |
| - <artifactId>wagon-svn</artifactId> |
79 |
| - <version>1.9</version> |
80 |
| - </extension> |
81 |
| - <extension> |
82 |
| - <groupId>org.apache.maven.wagon</groupId> |
83 |
| - <artifactId>wagon-ssh</artifactId> |
84 |
| - <version>1.0-beta-7</version> |
85 |
| - </extension> |
86 |
| - </extensions> |
87 |
| - </build> |
88 |
| - |
89 |
| - <scm> |
90 |
| - <connection>scm:git:git@github.com:kohsuke/github-api.git</connection> |
91 |
| - </scm> |
92 |
| - |
93 |
| - <developers> |
94 |
| - <developer> |
95 |
| - <id>kohsuke</id> |
96 |
| - <name>Kohsuke Kawaguchi</name> |
97 |
| - </developer> |
98 |
| - </developers> |
99 |
| - |
100 |
| - <licenses> |
101 |
| - <license> |
102 |
| - <name>MIT License</name> |
103 |
| - <distribution>repository</distribution> |
104 |
| - <url>http://www.opensource.org/licenses/mit-license.php</url> |
105 |
| - </license> |
106 |
| - </licenses> |
107 |
| - |
108 | 28 | <dependencies>
|
109 | 29 | <dependency>
|
110 | 30 | <groupId>org.jvnet.hudson</groupId>
|
|
0 commit comments