owl-cli 7.10.0 → 7.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <project name="owlPasswordService" default="all" basedir=".">
3
+ <property file="../../owl-models/build.properties"></property>
4
+ <target name="build">
5
+ <mkdir dir="out"/>
6
+ <exec executable="java">
7
+ <arg line="-jar"></arg>
8
+ <arg path="../lib/appBuilder.jar"/>
9
+ <arg line="src/"></arg>
10
+ <arg line="out/owlPasswordService.zip"/>
11
+ </exec>
12
+ </target>
13
+
14
+ <target name="deploy">
15
+ <exec executable="java">
16
+ <arg line="-jar "></arg>
17
+ <arg path="../lib/appDeployer.jar"/>
18
+ <arg line="${deployUrl}"></arg>
19
+ <arg line="${deployPass}"></arg>
20
+ <arg line="out/owlPasswordService.zip"/>
21
+ <arg line="owlPasswordService"/>
22
+ <arg line="owlPasswordService"/>
23
+ </exec>
24
+ </target>
25
+
26
+ <target name="all" depends="build,deploy">
27
+ </target>
28
+ </project>
@@ -0,0 +1,6 @@
1
+ {
2
+ "libs_namespace": "owlPasswordService",
3
+ "libs": [
4
+ "services/consts.jsx"
5
+ ]
6
+ }
@@ -0,0 +1,17 @@
1
+ //测试环境的账号密码
2
+ var stockusers = [
3
+ {
4
+ uid:'0',
5
+ loginId:"root",
6
+ password:'12345678',
7
+ name:"超级管理员",
8
+ allowed_appIds:["*"]
9
+ },
10
+ {
11
+ uid:'1',
12
+ loginId:"admin",
13
+ password:"12345678",
14
+ name:"系统管理员",
15
+ allowed_appIds:["*"]
16
+ }
17
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "owl-cli",
3
- "version": "7.10.0",
3
+ "version": "7.11.0",
4
4
  "main": "index.js",
5
5
  "preferGlobal": true,
6
6
  "bin": {