diff --git a/Gruntfile.js b/Gruntfile.js index adb79a6..a3d9127 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + /*global module:false*/ module.exports = function(grunt) { // Project configuration. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1163dd3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) IBM Corp. 2014,2016. All Rights Reserved. +Node module: loopback-connector-remote +This project is licensed under the MIT License, full text below. + +-------- + +MIT license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index c3f5f84..0000000 --- a/LICENSE.md +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (c) 2013-2015 StrongLoop, Inc and other contributors. - -loopback-connector-remote uses a dual license model. - -You may use this library under the terms of the [MIT License][], -or under the terms of the [StrongLoop Subscription Agreement][]. - -[MIT License]: http://opensource.org/licenses/MIT -[StrongLoop Subscription Agreement]: http://strongloop.com/license diff --git a/index.js b/index.js index 191d30b..c1b944e 100644 --- a/index.js +++ b/index.js @@ -1 +1,6 @@ +// Copyright IBM Corp. 2014. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + module.exports = require('./lib/remote-connector'); \ No newline at end of file diff --git a/lib/relations.js b/lib/relations.js index ca68294..3f4a67a 100644 --- a/lib/relations.js +++ b/lib/relations.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + /*! * Dependencies */ diff --git a/lib/remote-connector.js b/lib/remote-connector.js index b6024bd..e27ca10 100644 --- a/lib/remote-connector.js +++ b/lib/remote-connector.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + /** * Dependencies. */ diff --git a/test/helper.js b/test/helper.js index 30a47cc..b92df5d 100644 --- a/test/helper.js +++ b/test/helper.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + var loopback = require('loopback'); var remoteConnector = require('..'); diff --git a/test/models.test.js b/test/models.test.js index 9d6b659..c0054cc 100644 --- a/test/models.test.js +++ b/test/models.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + var assert = require('assert'); var helper = require('./helper'); var TaskEmitter = require('strong-task-emitter'); diff --git a/test/remote-connector.test.js b/test/remote-connector.test.js index 695cbab..0cd894d 100644 --- a/test/remote-connector.test.js +++ b/test/remote-connector.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2014,2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + var assert = require('assert'); var helper = require('./helper'); diff --git a/test/remote-models.test.js b/test/remote-models.test.js index ffcf0e4..c6044a3 100644 --- a/test/remote-models.test.js +++ b/test/remote-models.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2016. All Rights Reserved. +// Node module: loopback-connector-remote +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + var assert = require('assert'); var helper = require('./helper'); var TaskEmitter = require('strong-task-emitter');