Skip to content

Commit 4177f23

Browse files
committed
changes for 1.1.0
1 parent bd958f9 commit 4177f23

File tree

4 files changed

+653
-335
lines changed

4 files changed

+653
-335
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ local.properties
3535
# Other Tooling #
3636
.classpath
3737
.project
38-
target
38+
target/
3939
.idea
4040
*.iml
4141

CONTRIBUTING.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Contributing to Azure samples
2-
3-
Thank you for your interest in contributing to Azure samples!
4-
5-
## Ways to contribute
6-
7-
You can contribute to [Azure samples](https://azure.microsoft.com/documentation/samples/) in a few different ways:
8-
9-
- Submit feedback on [this sample page](https://azure.microsoft.com/documentation/samples/resources-java-manage-resource/) whether it was helpful or not.
10-
- Submit issues through [issue tracker](https://github.com/Azure-Samples/resources-java-manage-resource/issues) on GitHub. We are actively monitoring the issues and improving our samples.
1+
# Contributing to Azure samples
2+
3+
Thank you for your interest in contributing to Azure samples!
4+
5+
## Ways to contribute
6+
7+
You can contribute to [Azure samples](https://azure.microsoft.com/documentation/samples/) in a few different ways:
8+
9+
- Submit feedback on [this sample page](https://azure.microsoft.com/documentation/samples/resources-java-manage-resource/) whether it was helpful or not.
10+
- Submit issues through [issue tracker](https://github.com/Azure-Samples/resources-java-manage-resource/issues) on GitHub. We are actively monitoring the issues and improving our samples.
1111
- If you wish to make code changes to samples, or contribute something new, please follow the [GitHub Forks / Pull requests model](https://help.github.com/articles/fork-a-repo/): Fork the sample repo, make the change and propose it back by submitting a pull request.

pom.xml

+11-1
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,22 @@
5353
<dependency>
5454
<groupId>com.microsoft.azure</groupId>
5555
<artifactId>azure</artifactId>
56-
<version>1.0.0</version>
56+
<version>1.1.0</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.eclipse.jgit</groupId>
60+
<artifactId>org.eclipse.jgit</artifactId>
61+
<version>4.5.0.201609210915-r</version>
5762
</dependency>
5863
<dependency>
5964
<groupId>commons-net</groupId>
6065
<artifactId>commons-net</artifactId>
6166
<version>3.3</version>
6267
</dependency>
68+
<dependency>
69+
<groupId>com.github.cverges.expect4j</groupId>
70+
<artifactId>expect4j</artifactId>
71+
<version>1.6</version>
72+
</dependency>
6373
</dependencies>
6474
</project>

0 commit comments

Comments
 (0)