forked from kiegroup/jbpm-designer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
97 lines (89 loc) · 2.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.drools</groupId>
<artifactId>droolsjbpm-parent</artifactId>
<version>6.0.0-SNAPSHOT</version>
<!-- relativePath causes out-of-date problems on hudson slaves -->
<!--<relativePath>../droolsjbpm-build-bootstrap/pom.xml</relativePath>-->
</parent>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-designer</artifactId>
<packaging>pom</packaging>
<name>jBPM Designer</name>
<description>jBPM Designer - web-based BPMN2 modeller</description>
<url>https://github.com/droolsjbpm/jbpm-designer</url>
<scm>
<connection>scm:git:git@github.com:droolsjbpm/jbpm-designer.git</connection>
<developerConnection>scm:git:git@github.com:droolsjbpm/jbpm-designer.git</developerConnection>
<url>https://github.com/droolsjbpm/jbpm-designer</url>
</scm>
<modules>
<module>jbpm-designer-api</module>
<module>jbpm-designer-backend</module>
<module>jbpm-designer-client</module>
<module>jbpm-designer-standalone</module>
</modules>
<properties>
<port>8888</port>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes</outputDirectory>
<resources>
<resource>
<directory>target/generated-sources/annotations</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>fullProfile</id>
<activation>
<property>
<name>full</name>
</property>
</activation>
<modules>
<module>jbpm-designer-distribution-wars</module>
</modules>
</profile>
</profiles>
<repositories>
<repository>
<id>jboss-thirdparty-uploads</id>
<name>JBoss ThirdParty Uploads</name>
<url>https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/</url>
</repository>
<repository>
<id>intalio</id>
<url>http://www.intalio.org/public/maven2/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>