Skip to content

Commit 1fd1d7f

Browse files
committed
Merge branch 'release/1.0-beta-3'
2 parents 293176b + f0426dc commit 1fd1d7f

File tree

278 files changed

+9190
-4809
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+9190
-4809
lines changed

core/pom.xml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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>

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/Component.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/Component.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

3-
import com.axellience.vuegwt.client.component.VueComponent;
4-
import com.axellience.vuegwt.client.component.options.CustomizeOptions;
5-
import com.axellience.vuegwt.client.directive.VueDirective;
3+
import com.axellience.vuegwt.core.client.component.VueComponent;
4+
import com.axellience.vuegwt.core.client.component.options.CustomizeOptions;
5+
import com.axellience.vuegwt.core.client.directive.VueDirective;
66

77
import java.lang.annotation.Retention;
88
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/Computed.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/Computed.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/HookMethod.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/HookMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/JsComponent.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/JsComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;
@@ -14,5 +14,5 @@
1414
@Retention(SOURCE)
1515
public @interface JsComponent
1616
{
17-
17+
String value();
1818
}

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/Prop.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/Prop.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/PropDefault.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/PropDefault.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/PropValidator.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/PropValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/component/annotations/Watch.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/component/Watch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.component.annotations;
1+
package com.axellience.vuegwt.core.annotations.component;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

src/main/java/com/axellience/vuegwt/jsr69/directive/annotations/Directive.java renamed to core/src/main/java/com/axellience/vuegwt/core/annotations/directive/Directive.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.axellience.vuegwt.jsr69.directive.annotations;
1+
package com.axellience.vuegwt.core.annotations.directive;
22

33
import java.lang.annotation.Retention;
44
import java.lang.annotation.Target;

0 commit comments

Comments
 (0)