This repository was archived by the owner on Mar 8, 2020. It is now read-only.
File tree 19 files changed +210
-411
lines changed
vehicle-manufacture-car-builder
vehicle-manufacture-manufacturing
19 files changed +210
-411
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Licensed under the Apache License, Version 2.0 (the "License");
3
+ # you may not use this file except in compliance with the License.
4
+ # You may obtain a copy of the License at
5
+ #
6
+ # http://www.apache.org/licenses/LICENSE-2.0
7
+ #
8
+ # Unless required by applicable law or agreed to in writing, software
9
+ # distributed under the License is distributed on an "AS IS" BASIS,
10
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ # See the License for the specific language governing permissions and
12
+ # limitations under the License.
13
+ #
14
+
1
15
# Logs
2
16
logs
3
17
* .log
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
2
15
3
16
# Exit on first error, print all commands.
4
17
set -ev
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
2
15
3
16
# Exit on first error, print all commands.
4
17
set -ev
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
2
15
3
16
# Exit on first error, print all commands.
4
17
set -ev
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
2
15
3
16
# Exit on first error, print all commands.
4
17
set -ev
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ Licensed under the Apache License, Version 2.0 (the "License");
2
+ you may not use this file except in compliance with the License.
3
+ You may obtain a copy of the License at
4
+
5
+ http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software
8
+ distributed under the License is distributed on an "AS IS" BASIS,
9
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ See the License for the specific language governing permissions and
11
+ limitations under the License.
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
2
15
3
16
DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
4
17
mkdir ${DIR} /fabric-tools && cd ${DIR} /fabric-tools
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Licensed under the Apache License, Version 2.0 (the "License");
3
+ * you may not use this file except in compliance with the License.
4
+ * You may obtain a copy of the License at
5
+ *
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Unless required by applicable law or agreed to in writing, software
9
+ * distributed under the License is distributed on an "AS IS" BASIS,
10
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ * See the License for the specific language governing permissions and
12
+ * limitations under the License.
13
+ */
1
14
2
15
'use strict'
3
16
var chalk = require ( 'chalk' ) ;
Original file line number Diff line number Diff line change 8
8
"preinstall" : " npm install -g cordova" ,
9
9
"postinstall" : " npm run pkgcheck && npm run bootstrap" ,
10
10
"bootstrap" : " git submodule init && git submodule update && lerna bootstrap" ,
11
+ "pretest" : " npm run licchk" ,
11
12
"test" : " lerna run test" ,
12
13
"pkgcheck" : " node ./scripts/pkgcheck.js" ,
13
14
"pkgstamp" : " node ./scripts/pkgstamp.js" ,
14
- "pkgbump" : " node ./scripts/pkgbump.js && node ./scripts/pkgcheck.js --fix"
15
+ "pkgbump" : " node ./scripts/pkgbump.js && node ./scripts/pkgcheck.js --fix" ,
16
+ "licchk" : " license-check-and-add"
15
17
},
16
18
"dependencies" : {
17
19
"chalk" : " ^1.1.3" ,
22
24
"colors" : " ^1.1.2" ,
23
25
"lerna" : " ^2.0.0" ,
24
26
"moment" : " ^2.18.1" ,
25
- "semver" : " ^5.4.1"
27
+ "semver" : " ^5.4.1" ,
28
+ "license-check-and-add" : " ~2.3.0"
26
29
},
27
30
"repository" : {
28
31
"type" : " git" ,
29
32
"url" :
" [email protected] :hyperledger/composer-sample-applications"
33
+ },
34
+ "license-check-and-add-config" : {
35
+ "folder" : " ." ,
36
+ "license" : " LICENSE.txt" ,
37
+ "exact_paths_method" : " EXCLUDE" ,
38
+ "exact_paths" : [
39
+ " .git" ,
40
+ " node_modules" ,
41
+ " packages" ,
42
+ " .travis/fix_github_https_repo.sh"
43
+ ],
44
+ "file_type_method" : " EXCLUDE" ,
45
+ "file_types" : [
46
+ " .cfg" ,
47
+ " .enc" ,
48
+ " .log" ,
49
+ " .md" ,
50
+ " .yml"
51
+ ],
52
+ "insert_license" : false ,
53
+ "license_formats" : {
54
+ "js" : {
55
+ "prepend" : " /*" ,
56
+ "append" : " */" ,
57
+ "eachLine" : {
58
+ "prepend" : " * "
59
+ }
60
+ }
61
+ }
30
62
}
31
63
}
You can’t perform that action at this time.
0 commit comments