This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathpom.xml
62 lines (59 loc) · 2.57 KB
/
pom.xml
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
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>org.drools</groupId>
<artifactId>drools-eclipse</artifactId>
<version>7.49.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.drools.updatesite</artifactId>
<packaging>eclipse-repository</packaging>
<name>Drools :: Eclipse :: Update site</name>
<description>
To use this update site locally:
- Build the drools project with maven (including the eclipse stuff).
- Open Eclipse.
- Open the menu "Help", menu item "Install new software..."
- Click on the button "Add..." to add a new software site.
- Fill in the name "drools local update site"
- Click on the button "Local..." and select "droolsjbpm-tools/drools-eclipse/org.drools.updatesite/target/repository/"
- Select all the features. Click the buttons "Next" and "Finish".
</description>
<properties>
<update.site.name>Drools ${project.version} Update Site</update.site.name>
<update.site.description>Nightly Build</update.site.description>
<update.site.version>${project.version}</update.site.version>
<target.eclipse.version>4.5 (Mars)</target.eclipse.version>
<siteTemplateFolder>siteTemplateFolder</siteTemplateFolder>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.jboss.tools.tycho-plugins</groupId>
<artifactId>repository-utils</artifactId>
<executions>
<execution>
<id>generate-facade</id>
<phase>package</phase>
<goals>
<goal>generate-repository-facade</goal>
</goals>
<configuration>
<associateSites>
<associateSite> http://download.jboss.org/jbosstools/targetplatforms/jbtistarget/mars</associateSite>
</associateSites>
<siteTemplateFolder>${siteTemplateFolder}</siteTemplateFolder>
<symbols>
<update.site.name>${update.site.name}</update.site.name>
<update.site.description>${update.site.description}</update.site.description>
<update.site.version>${update.site.version}</update.site.version>
<target.eclipse.version>${target.eclipse.version}</target.eclipse.version>
</symbols>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>