-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
72 lines (62 loc) · 2.26 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
<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>jquery</artifactId>
<packaging>jar</packaging>
<version>2.0.0-SNAPSHOT</version>
<name>JQuery Plugin</name>
<description>The JWebMP implementation for JQuery</description>
<dependencies>
<dependency>
<groupId>com.jwebmp.client</groupId>
<artifactId>jwebmp-client</artifactId>
</dependency>
<dependency>
<groupId>com.jwebmp.plugins</groupId>
<artifactId>typescript-client</artifactId>
</dependency>
</dependencies>
<properties>
<ignore.moditect>true</ignore.moditect>
<project.scm.nameUrl>/JWebMP/Plugins/JQuery</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.guicedee</groupId>
<artifactId>fasterxml-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>