Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Region Tags #1199

Merged
merged 1 commit into from
Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions appengine-java8/twilio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,11 @@ Copyright 2015 Google Inc.


<dependencies>
<!-- [START dependencies] -->
<dependency>
<groupId>com.twilio.sdk</groupId>
<artifactId>twilio-java-sdk</artifactId>
<version>6.3.0</version>
</dependency>
<!-- [END dependencies] -->

<dependency>
<groupId>javax.servlet</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

// [START example]
@SuppressWarnings("serial")
public class ReceiveCallServlet extends HttpServlet {

Expand All @@ -44,4 +43,3 @@ public void service(HttpServletRequest req, HttpServletResponse resp)
resp.getWriter().print(twiml.toXML());
}
}
// [END example]
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

// [START example]
@SuppressWarnings("serial")
public class ReceiveSmsServlet extends HttpServlet {

Expand All @@ -48,4 +47,3 @@ public void service(HttpServletRequest request, HttpServletResponse response)
response.getWriter().print(twiml.toXML());
}
}
// [END example]
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;

// [START example]
@SuppressWarnings("serial")
public class SendSmsServlet extends HttpServlet {

Expand Down Expand Up @@ -62,4 +61,3 @@ public void service(HttpServletRequest req, HttpServletResponse resp)
}
}
}
// [END example]
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- [START config] -->
<!-- [START gae_java8_twilio_config] -->
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<runtime>java8</runtime>
<threadsafe>true</threadsafe>
Expand All @@ -21,4 +21,4 @@
<env-var name="TWILIO_NUMBER" value="YOUR-TWILIO-NUMBER" />
</env-variables>
</appengine-web-app>
<!-- [END config] -->
<!-- [END gae_java8_twilio_config] -->
4 changes: 2 additions & 2 deletions appengine/twilio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ Copyright 2015 Google Inc.
</properties>

<dependencies>
<!-- [START dependencies] -->
<!-- [START gae_twilio_dependencies] -->
<dependency>
<groupId>com.twilio.sdk</groupId>
<artifactId>twilio-java-sdk</artifactId>
<version>6.3.0</version>
</dependency>
<!-- [END dependencies] -->
<!-- [END gae_twilio_dependencies] -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

// [START example]
// [START gae_twilio_receive_call]
@SuppressWarnings("serial")
public class ReceiveCallServlet extends HttpServlet {

Expand All @@ -44,4 +44,4 @@ public void service(HttpServletRequest req, HttpServletResponse resp) throws IOE
resp.getWriter().print(twiml.toXML());
}
}
// [END example]
// [END gae_twilio_receive_call]
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

// [START example]
// [START gae_twilio_receive_sms]
@SuppressWarnings("serial")
public class ReceiveSmsServlet extends HttpServlet {

Expand All @@ -49,4 +49,4 @@ public void service(HttpServletRequest request, HttpServletResponse response) th
response.getWriter().print(twiml.toXML());
}
}
// [END example]
// [END gae_twilio_receive_sms]
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;

// [START example]
// [START gae_twilio_send_sms]
@SuppressWarnings("serial")
public class SendSmsServlet extends HttpServlet {

Expand Down Expand Up @@ -62,4 +62,4 @@ public void service(HttpServletRequest req, HttpServletResponse resp) throws IOE
}
}
}
// [END example]
// [END gae_twilio_send_sms]
4 changes: 2 additions & 2 deletions appengine/twilio/src/main/webapp/WEB-INF/appengine-web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- [START config] -->
<!-- [START gae_twilio_config] -->
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>YOUR-PROJECT-ID</application>
<version>YOUR-VERSION-ID</version>
Expand All @@ -22,4 +22,4 @@
<env-var name="TWILIO_NUMBER" value="YOUR-TWILIO-NUMBER" />
</env-variables>
</appengine-web-app>
<!-- [END config] -->
<!-- [END gae_twilio_config] -->
4 changes: 2 additions & 2 deletions flexible/cloudstorage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
<type>jar</type>
<scope>provided</scope>
</dependency>
<!-- [START dependencies] -->
<!-- [START gae_flex_storage_dependencies] -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>1.38.0</version>
</dependency>
<!-- [END dependencies] -->
<!-- [END gae_flex_storage_dependencies] -->
</dependencies>
<build>
<!-- for hot reload of the web application -->
Expand Down