Skip to content

Commit 8a2cd7d

Browse files
authored
Merge pull request #101 from optimizely/devel
merge devel into master.
2 parents bbbccca + c87c0a6 commit 8a2cd7d

Some content is hidden

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

42 files changed

+2351
-5481
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ branches:
2121
only:
2222
- master
2323
- devel
24-
- /^\d+\.\d+\.\d+(-SNAPSHOT)?$/ # trigger builds on tags which are semantically versioned to ship the SDK.
24+
- /^\d+\.\d+\.\d+(-SNAPSHOT)?$/ # trigger builds on tags which are semantically versioned to ship the SDK.

CONTRIBUTING.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ We welcome contributions and feedback! All contributors must sign our [Contribut
44

55
## Development process
66

7-
1. Create a branch off of `devel`: `git checkout -b YOUR_NAME/branch_name`.
7+
1. Create a branch off of `master`: `git checkout -b YOUR_NAME/branch_name`.
88
2. Commit your changes. Make sure to add tests!
9-
3. Run `./gradlew clean check` to make sure there are no possible bugs.
9+
3. Run `./gradlew clean check` to automatically catch potential bugs.
1010
4. `git push` your changes to GitHub.
11-
5. Make sure that all unit tests are passing and that there are no merge conflicts between your branch and `devel`.
12-
6. Open a pull request from `YOUR_NAME/branch_name` to `devel`.
13-
7. A repository maintainer will review your pull request and, if all goes well, merge it!
11+
5. Make sure that all unit tests are passing and that there are no merge conflicts between your branch and `master`.
12+
6. Open a pull request from `YOUR_NAME/branch_name` to `master`.
13+
7. A repository maintainer will review your pull request and, if all goes well, squash and merge it!
1414

1515
## Pull request acceptance criteria
1616

@@ -25,28 +25,28 @@ Refer to the [Google Java Style Guide](https://google.github.io/styleguide/javag
2525

2626
## License
2727

28-
By contributing your code, you agree to license your contribution under the terms of the
29-
[Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0).
30-
Your contributions should also include the following header:
28+
All contributions are under the CLA mentioned above. For this project, Optimizely uses the Apache 2.0 license, and so asks that by contributing your code, you agree to license your contribution under the terms of the [Apache License v2.0](http://www.apache.org/licenses/LICENSE-2.0). Your contributions should also include the following header:
3129

3230
```
33-
/**
34-
* Copyright 2016, Optimizely
35-
*
36-
* Licensed under the Apache License, Version 2.0 (the "License");
37-
* you may not use this file except in compliance with the License.
38-
* You may obtain a copy of the License at
39-
*
40-
* http://www.apache.org/licenses/LICENSE-2.0
41-
*
42-
* Unless required by applicable law or agreed to in writing, software
43-
* distributed under the License is distributed on an "AS IS" BASIS,
44-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45-
* See the License for the specific language governing permissions and
46-
* limitations under the License.
47-
*/
31+
/****************************************************************************
32+
* Copyright YEAR, Optimizely, Inc. and contributors *
33+
* *
34+
* Licensed under the Apache License, Version 2.0 (the "License"); *
35+
* you may not use this file except in compliance with the License. *
36+
* You may obtain a copy of the License at *
37+
* *
38+
* http://www.apache.org/licenses/LICENSE-2.0 *
39+
* *
40+
* Unless required by applicable law or agreed to in writing, software *
41+
* distributed under the License is distributed on an "AS IS" BASIS, *
42+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
43+
* See the License for the specific language governing permissions and *
44+
* limitations under the License. *
45+
***************************************************************************/
4846
```
4947

48+
The YEAR above should be the year of the contribution. If work on the file has been done over multiple years, list each year in the section above. Example: Optimizely writes the file and releases it in 2014. No changes are made in 2015. Change made in 2016. YEAR should be “2014, 2016”.
49+
5050
## Contact
5151

52-
If you have questions, please contact developers@optimizely.com.
52+
If you have questions, please contact developers@optimizely.com.

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ buildscript {
88

99
dependencies {
1010
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
11-
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:latest.release'
1211
}
1312
}
1413

@@ -19,9 +18,9 @@ plugins {
1918

2019
allprojects {
2120
group = 'com.optimizely.ab'
21+
apply plugin: 'idea'
2222
}
2323

24-
apply from: 'gradle/license.gradle'
2524
apply from: 'gradle/publish.gradle'
2625

2726
allprojects {

0 commit comments

Comments
 (0)