1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <parent >
8+ <groupId >com.axellience</groupId >
9+ <artifactId >vue-gwt-parent</artifactId >
10+ <version >1.0-beta-3</version >
11+ </parent >
12+
13+ <artifactId >vue-gwt-core</artifactId >
14+ <name >Vue GWT Core</name >
15+ <description >Vue GWT Core classes</description >
16+ <packaging >gwt-lib</packaging >
17+
18+ <dependencies >
19+
20+ <!-- GWT dependencies -->
21+ <dependency >
22+ <groupId >com.google.gwt</groupId >
23+ <artifactId >gwt-user</artifactId >
24+ </dependency >
25+ <dependency >
26+ <groupId >com.google.gwt</groupId >
27+ <artifactId >gwt-dev</artifactId >
28+ </dependency >
29+ <dependency >
30+ <groupId >com.google.jsinterop</groupId >
31+ <artifactId >base</artifactId >
32+ </dependency >
33+ <dependency >
34+ <groupId >com.google.elemental2</groupId >
35+ <artifactId >elemental2-core</artifactId >
36+ </dependency >
37+ <dependency >
38+ <groupId >com.google.elemental2</groupId >
39+ <artifactId >elemental2-dom</artifactId >
40+ </dependency >
41+
42+ <!-- Code Generation -->
43+ <dependency >
44+ <groupId >com.squareup</groupId >
45+ <artifactId >javapoet</artifactId >
46+ </dependency >
47+
48+ <!-- Template parsing -->
49+ <dependency >
50+ <groupId >org.jsoup</groupId >
51+ <artifactId >jsoup</artifactId >
52+ </dependency >
53+ <dependency >
54+ <groupId >com.github.javaparser</groupId >
55+ <artifactId >javaparser-core</artifactId >
56+ </dependency >
57+
58+ <!-- Nashorn dependencies -->
59+ <dependency >
60+ <groupId >com.coveo</groupId >
61+ <artifactId >nashorn-commonjs-modules</artifactId >
62+ </dependency >
63+
64+ <!-- Injection -->
65+ <dependency >
66+ <groupId >javax.inject</groupId >
67+ <artifactId >javax.inject</artifactId >
68+ </dependency >
69+ <dependency >
70+ <groupId >javax.inject</groupId >
71+ <artifactId >javax.inject</artifactId >
72+ <classifier >sources</classifier >
73+ </dependency >
74+
75+ </dependencies >
76+
77+ <build >
78+ <plugins >
79+ <plugin >
80+ <groupId >net.ltgt.gwt.maven</groupId >
81+ <artifactId >gwt-maven-plugin</artifactId >
82+ <extensions >true</extensions >
83+ <configuration >
84+ <moduleName >com.axellience.vuegwt.Core</moduleName >
85+ </configuration >
86+ </plugin >
87+ </plugins >
88+ </build >
89+ </project >
0 commit comments