Skip to content

Commit 9ece9ae

Browse files
committed
releng
1 parent a510f38 commit 9ece9ae

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<module>plugins/com.abstratt.imageviewer</module>
3939
<module>features/com.abstratt.eclipsegraphviz.feature</module>
4040
<module>repositories/com.abstratt.eclipsegraphviz.repository</module>
41+
<module>repositories/com.abstratt.eclipsegraphviz.p2site</module>
4142
</modules>
4243

4344
<build>
@@ -67,7 +68,7 @@
6768
<targetFile>dependencies.target</targetFile>
6869
</targetFiles>
6970
</configuration>
70-
</plugin>
71+
</plugin>
7172
</plugins>
7273
</build>
7374
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>com.abstratt.eclipsegraphviz</groupId>
7+
<artifactId>com.abstratt.eclipsegraphviz.p2site</artifactId>
8+
<version>2.11.0-SNAPSHOT</version>
9+
<packaging>pom</packaging>
10+
<parent>
11+
<artifactId>com.abstratt.eclipsegraphviz.parent</artifactId>
12+
<groupId>com.abstratt.eclipsegraphviz</groupId>
13+
<version>2.11.0-SNAPSHOT</version>
14+
<relativePath>../..</relativePath>
15+
</parent>
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.eclipse.tycho</groupId>
20+
<artifactId>tycho-p2-repository-plugin</artifactId>
21+
<version>${tycho-version}</version>
22+
<executions>
23+
<execution>
24+
<configuration>
25+
<includeReactor>true</includeReactor>
26+
</configuration>
27+
<phase>package</phase>
28+
<goals>
29+
<goal>assemble-maven-repository</goal>
30+
</goals>
31+
</execution>
32+
</executions>
33+
</plugin>
34+
</plugins>
35+
</build>
36+
</project>

0 commit comments

Comments
 (0)