Skip to content

Commit dc8dfc0

Browse files
committed
changes for 1.1.0
1 parent 3da6858 commit dc8dfc0

File tree

5 files changed

+709
-365
lines changed

5 files changed

+709
-365
lines changed

Diff for: .gitignore

+40-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*.class
22

3+
# Auth filed
4+
*.auth
5+
*.azureauth
6+
37
# Mobile Tools for Java (J2ME)
48
.mtj.tmp/
59

@@ -8,5 +12,39 @@
812
*.war
913
*.ear
1014

11-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
12-
hs_err_pid*
15+
# Azure Tooling #
16+
node_modules
17+
packages
18+
19+
# Eclipse #
20+
*.pydevproject
21+
.project
22+
.metadata
23+
bin/**
24+
tmp/**
25+
tmp/**/*
26+
*.tmp
27+
*.bak
28+
*.swp
29+
*~.nib
30+
local.properties
31+
.classpath
32+
.settings/
33+
.loadpath
34+
35+
# Other Tooling #
36+
.classpath
37+
.project
38+
target/
39+
.idea
40+
*.iml
41+
42+
# Mac OS #
43+
.DS_Store
44+
.DS_Store?
45+
46+
# Windows #
47+
Thumbs.db
48+
49+
# reduced pom files should not be included
50+
dependency-reduced-pom.xml

Diff for: README.md

+37-37
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
---
2-
services: Appservice
3-
platforms: java
4-
author: jianghaolu
5-
---
6-
7-
#Getting Started with Appservice - Manage Function App Basic - in Java #
8-
9-
10-
Azure App Service basic sample for managing function apps.
11-
- Create 3 function apps under the same new app service plan:
12-
- 1, 2 are in the same resource group, 3 in a different one
13-
- 1, 3 are under the same consumption plan, 2 under a basic app service plan
14-
- List function apps
15-
- Delete a function app
16-
17-
18-
## Running this Sample ##
19-
20-
To run this sample:
21-
22-
Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an auth file. See [how to create an auth file](https://github.com/Azure/azure-sdk-for-java/blob/master/AUTH.md).
23-
24-
git clone https://github.com/Azure-Samples/app-service-java-manage-functions.git
25-
26-
cd app-service-java-manage-functions
27-
28-
mvn clean compile exec:java
29-
30-
## More information ##
31-
32-
[http://azure.com/java] (http://azure.com/java)
33-
34-
If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)
35-
36-
---
37-
1+
---
2+
services: Appservice
3+
platforms: java
4+
author: jianghaolu
5+
---
6+
7+
#Getting Started with Appservice - Manage Function App Basic - in Java #
8+
9+
10+
Azure App Service basic sample for managing function apps.
11+
- Create 3 function apps under the same new app service plan:
12+
- 1, 2 are in the same resource group, 3 in a different one
13+
- 1, 3 are under the same consumption plan, 2 under a basic app service plan
14+
- List function apps
15+
- Delete a function app
16+
17+
18+
## Running this Sample ##
19+
20+
To run this sample:
21+
22+
Set the environment variable `AZURE_AUTH_LOCATION` with the full path for an auth file. See [how to create an auth file](https://github.com/Azure/azure-sdk-for-java/blob/master/AUTH.md).
23+
24+
git clone https://github.com/Azure-Samples/app-service-java-manage-functions.git
25+
26+
cd app-service-java-manage-functions
27+
28+
mvn clean compile exec:java
29+
30+
## More information ##
31+
32+
[http://azure.com/java] (http://azure.com/java)
33+
34+
If you don't have a Microsoft Azure subscription you can get a FREE trial account [here](http://go.microsoft.com/fwlink/?LinkId=330212)
35+
36+
---
37+
3838
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>com.microsoft.azure</groupId>
5555
<artifactId>azure</artifactId>
56-
<version>1.0.0</version>
56+
<version>1.1.0</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>commons-net</groupId>

0 commit comments

Comments
 (0)