-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
148 lines (140 loc) · 4.54 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eurekaclinical</groupId>
<artifactId>eurekaclinical-analytics-webclient</artifactId>
<version>2.1-Alpha-6-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Eureka! Clinical Analytics Web Client</name>
<description>Eureka! Clinical Analytics is a web application that
provides you with an easy way to phenotype a patient population based
on their clinical and administrative data, and load those phenotypes
and data into your own instance of the i2b2 data warehouse system.
</description>
<url>https://github.com/eurekaclinical/eurekaclinical-analytics-webclient.git</url>
<inceptionYear>2017</inceptionYear>
<parent>
<groupId>org.eurekaclinical</groupId>
<artifactId>eurekaclinical-parent</artifactId>
<version>4-Alpha-9</version>
</parent>
<scm>
<developerConnection>scm:git:https://github.com/eurekaclinical/eurekaclinical-analytics-webclient.git</developerConnection>
<connection>scm:git:https://github.com/eurekaclinical/eurekaclinical-analytics-webclient.git</connection>
<url>https://github.com/eurekaclinical/eurekaclinical-analytics-webclient.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/eurekaclinical/eurekaclinical-analytics-webclient/issues</url>
</issueManagement>
<!-- define the package versions for various project we will use -->
<properties>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>manual</distribution>
</license>
<license>
<name>GNU General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
<distribution>manual</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<!-- 1.4 doesn't work for us, can't find gulp (https://github.com/eirslett/frontend-maven-plugin/issues/586). -->
<version>1.6</version>
<configuration>
<workingDirectory />
<!-- If mvn clean install fails, delete the node folder in ${user.home}/.eurekaclinical/dev and run clean install again-->
<installDirectory>${user.home}/.eurekaclinical/dev</installDirectory>
</configuration>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v10.15.3</nodeVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
</execution>
<execution>
<id>gulp build</id>
<goals>
<goal>gulp</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<releaseProfiles>release-sign-artifacts,dist</releaseProfiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dist</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>webserver</id>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>run webserver</id>
<goals>
<goal>gulp</goal>
</goals>
<configuration>
<arguments>webserver</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>