-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpom.xml
More file actions
52 lines (45 loc) · 1.37 KB
/
pom.xml
File metadata and controls
52 lines (45 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.nodeclipse.nodeclipse-1</groupId>
<artifactId>parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
</parent>
<artifactId>org.nodeclipse.site.test</artifactId>
<packaging>eclipse-repository</packaging>
<name>org.nodeclipse.site.test</name>
<description>org.nodeclipse.site.test (p2 repository / update site)</description>
<repositories>
<repository>
<id>eexplorer</id>
<layout>p2</layout>
<url>https://culmat.github.io/eExplorer/updatesite/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.9</version>
<configuration>
<repositoryOwner>culmat</repositoryOwner>
<repositoryName>eExplorer</repositoryName>
<message>Releasing update site for ${project.version}</message>
<path>updatesite</path>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>