forked from eclipse-lsp4e/lsp4e
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
81 lines (79 loc) · 2.76 KB
/
pom.xml
File metadata and controls
81 lines (79 loc) · 2.76 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.lsp4e</groupId>
<artifactId>parent</artifactId>
<version>0.13.1-SNAPSHOT</version>
</parent>
<artifactId>org.eclipse.lsp4e</artifactId>
<packaging>eclipse-plugin</packaging>
<version>0.18.31-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<filesets>
<fileset>
<directory>resources/highlight.min.js</directory>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.13.0</version>
<configuration>
<!-- https://maven-download-plugin.github.io/maven-download-plugin/docsite/1.9.0/wget-mojo.html -->
<alwaysVerifyChecksum>true</alwaysVerifyChecksum>
<overwrite>true</overwrite>
<skipCache>false</skipCache>
<readTimeOut>10000</readTimeOut>
</configuration>
<executions>
<execution>
<id>fetch-highlight.min.js</id>
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://unpkg.com/@highlightjs/cdn-assets@11.11.1/highlight.min.js</url>
<sha256>c4a399dd6f488bc97a3546e3476747b3e714c99c57b9473154c6fb8d259b9381</sha256>
<outputDirectory>resources/highlight.min.js</outputDirectory>
</configuration>
</execution>
<execution>
<id>fetch-highlight.styles.default.min.css</id>
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/default.min.css</url>
<sha256>fbde0ac0921d86c356c41532e7319c887a23bd1b8ff00060cab447249f03c7cf</sha256>
<outputDirectory>resources/highlight.min.js/styles</outputDirectory>
</configuration>
</execution>
<execution>
<id>fetch-highlight.styles.dark.min.css</id>
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://unpkg.com/@highlightjs/cdn-assets@11.11.1/styles/dark.min.css</url>
<sha256>bf437be81145907d1d081f1b52be1c1d254df00ff309a3a8a4cb92989595ff9c</sha256>
<outputDirectory>resources/highlight.min.js/styles</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>