-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
77 lines (65 loc) · 2.5 KB
/
pom.xml
File metadata and controls
77 lines (65 loc) · 2.5 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
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>com.jwebmp</groupId>
<artifactId>parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<groupId>com.jwebmp.plugins</groupId>
<artifactId>gallery</artifactId>
<packaging>jar</packaging>
<version>2.0.0-SNAPSHOT</version>
<name>BlueImp Gallery</name>
<description>blueimp Gallery is a touch-enabled, responsive and customizable image and video gallery,
carousel and lightbox, optimized for both mobile and desktop web browsers.
It features swipe, mouse and keyboard navigation, transition effects, slideshow functionality,
fullscreen support and on-demand content loading.
https://blueimp.github.io/Gallery/
</description>
<dependencies>
<dependency>
<groupId>com.jwebmp.core</groupId>
<artifactId>jwebmp-core</artifactId>
</dependency>
<dependency>
<groupId>com.jwebmp.plugins</groupId>
<artifactId>typescript-client</artifactId>
</dependency>
<dependency>
<groupId>com.jwebmp.core</groupId>
<artifactId>jwebmp-testlib</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<ignore.moditect>true</ignore.moditect>
<project.scm.nameUrl>/JWebMP/Plugins/Gallery</project.scm.nameUrl>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.guicedee</groupId>
<artifactId>standalone-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>
<dependency>
<groupId>com.jwebmp</groupId>
<artifactId>jwebmp-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>