Skip to content

Commit d4c07ad

Browse files
committed
优化动态脚本
1 parent 27c134d commit d4c07ad

File tree

33 files changed

+25
-228
lines changed

33 files changed

+25
-228
lines changed

hsweb-web-bean/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-framework</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-bean</artifactId>

hsweb-web-concurrent/hsweb-web-concurrent-cache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-web-concurrent</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-concurrent-cache</artifactId>

hsweb-web-concurrent/hsweb-web-concurrent-lock/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-web-concurrent</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-concurrent-lock</artifactId>

hsweb-web-concurrent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-framework</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<packaging>pom</packaging>

hsweb-web-controller/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-framework</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-controller</artifactId>

hsweb-web-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-framework</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-core</artifactId>

hsweb-web-core/src/main/java/org/hsweb/web/core/CoreAutoConfiguration.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,4 @@ private void initScript(String language, Map<String, Object> vars) {
8080
}
8181
}
8282

83-
public static void main(String[] args) throws Exception {
84-
new CoreAutoConfiguration().init();
85-
DynamicScriptEngine e = DynamicScriptEngineFactory.getEngine("javascript");
86-
e.compile("test", "alert('aaa');");
87-
System.out.println(e.execute("test").getIfSuccess());
88-
89-
}
9083
}

hsweb-web-dao/hsweb-web-dao-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-web-dao</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-dao-api</artifactId>

hsweb-web-dao/hsweb-web-dao-mybatis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<dependency>
1111
<groupId>org.hsweb</groupId>
1212
<artifactId>hsweb-web-dao-mybatis</artifactId>
13-
<version>2.2.1-SNAPSHOT</version>
13+
<version>2.2-SNAPSHOT</version>
1414
</dependency>
1515
```
1616

hsweb-web-dao/hsweb-web-dao-mybatis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-web-dao</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-dao-mybatis</artifactId>

hsweb-web-dao/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-framework</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727
<packaging>pom</packaging>

hsweb-web-datasource/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-framework</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-message/pom.xml

Lines changed: 0 additions & 33 deletions
This file was deleted.

hsweb-web-message/src/main/java/org/hsweb/web/message/Message.java

Lines changed: 0 additions & 46 deletions
This file was deleted.

hsweb-web-message/src/main/java/org/hsweb/web/message/MessageHolder.java

Lines changed: 0 additions & 8 deletions
This file was deleted.

hsweb-web-message/src/main/java/org/hsweb/web/message/MessageManager.java

Lines changed: 0 additions & 10 deletions
This file was deleted.

hsweb-web-message/src/test/java/org/hsweb/web/message/AmqpTests.java

Lines changed: 0 additions & 42 deletions
This file was deleted.

hsweb-web-message/src/test/java/org/hsweb/web/message/Consumer.java

Lines changed: 0 additions & 21 deletions
This file was deleted.

hsweb-web-message/src/test/java/org/hsweb/web/message/SampleActiveMQApplication.java

Lines changed: 0 additions & 29 deletions
This file was deleted.

hsweb-web-message/src/test/resources/application.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

hsweb-web-oauth2/hsweb-web-oauth2-controller/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-web-oauth2</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-oauth2/hsweb-web-oauth2-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-web-oauth2</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-oauth2/hsweb-web-oauth2-mybatis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-web-oauth2</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-oauth2/hsweb-web-oauth2-service-simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-web-oauth2</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-oauth2/hsweb-web-oauth2-simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-web-oauth2</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-oauth2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-framework</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

hsweb-web-service/hsweb-web-service-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-web-service</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>hsweb-web-service-api</artifactId>

hsweb-web-service/hsweb-web-service-simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hsweb-web-service</artifactId>
77
<groupId>org.hsweb</groupId>
8-
<version>2.2.1-SNAPSHOT</version>
8+
<version>2.2-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

hsweb-web-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>hsweb-framework</artifactId>
2323
<groupId>org.hsweb</groupId>
24-
<version>2.2.1-SNAPSHOT</version>
24+
<version>2.2-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727
<modules>

0 commit comments

Comments
 (0)