-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
179 lines (178 loc) · 7.65 KB
/
pom.xml
File metadata and controls
179 lines (178 loc) · 7.65 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<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>
<artifactId>javascript-modules</artifactId>
<groupId>org.jahia.modules</groupId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<artifactId>javascript-modules-library</artifactId>
<name>Javascript Modules Library</name>
<packaging>pom</packaging>
<description>Javascript library (wrapped as a Maven project) used to build Javascript modules that run on Jahia.</description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javascript-modules-engine-java</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<!-- equivalent of 'yarn clean' -->
<directory>${project.basedir}/dist/</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<!-- Map Yarn commands to corresponding Maven phases -->
<executions>
<execution>
<id>install node and yarn</id>
<phase>initialize</phase>
<goals>
<goal>install-node-and-yarn</goal>
</goals>
</execution>
<execution>
<id>yarn install</id>
<phase>initialize</phase>
<goals>
<goal>yarn</goal>
</goals>
</execution>
<execution>
<id>yarn lint</id>
<phase>compile</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>lint</arguments>
</configuration>
</execution>
<execution>
<id>yarn build</id>
<phase>compile</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>build</arguments>
</configuration>
</execution>
<execution>
<id>set-alpha-version</id>
<phase>deploy</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>node ../.m2/sync-version.js ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}-alpha-${timestamp}</arguments>
</configuration>
</execution>
<execution>
<id>publish-alpha-tag</id>
<phase>deploy</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --tag alpha --access public --provenance</arguments>
</configuration>
</execution>
<execution>
<id>reset-version</id>
<phase>deploy</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>node ../.m2/sync-version.js ${project.version}</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-backend-typescript-types</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>
javascript-modules-engine-java
</includeArtifactIds>
<classifier>typescript-types</classifier>
<type>tgz</type>
<outputDirectory>${project.build.directory}/types
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Keep package.json version in sync -->
<id>release-prepare</id>
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<!-- Keep the package.json in sync with the maven version -->
<execution>
<id>sync-version</id>
<phase>process-resources</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>node ../.m2/sync-version.js ${project.version}</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release-perform</id>
<!-- publish the tgz during the release:perform task (i.e. when the profile "release-perform" is enabled) -->
<build>
<plugins>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<!-- Execution bound on the "deploy" phase: -->
<execution>
<id>publish-package</id>
<phase>deploy</phase>
<goals>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --access public --provenance</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>