Skip to content

Commit

Permalink
(Part 2 -- trying again) Make compile warnings into errors; update so…
Browse files Browse the repository at this point in the history
…me plugins; use https in web based generator
  • Loading branch information
srowen committed Jul 26, 2015
1 parent 935868c commit d3c092e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@
<target>${java.version}</target>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>
Expand Down Expand Up @@ -416,7 +417,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.15</version>
<version>2.16</version>
<configuration>
<configLocation>src/checkstyle/checkstyle.xml</configLocation>
<!-- Android generated files -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private static void setGridStyle(HTMLTable grid) {

private static String getUrl(int sizeX, int sizeY, String ecLevel, String encoding, String content) {
StringBuilder result = new StringBuilder(100);
result.append("http://zxing.org/w/chart?cht=qr");
result.append("https://zxing.org/w/chart?cht=qr");
result.append("&chs=").append(sizeX).append('x').append(sizeY);
result.append("&chld=").append(ecLevel);
result.append("&choe=").append(encoding);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
-->
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>zxing-hrd</application>
<version>11</version>
<version>12</version>
</appengine-web-app>
2 changes: 1 addition & 1 deletion zxing.appspot.com/src/main/webapp/app.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
application: zxing-hrd
version: 11
version: 12
runtime: python27
api_version: 1
threadsafe: true
Expand Down
2 changes: 1 addition & 1 deletion zxingorg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.3.0.RC1</version>
<version>9.3.0.v20150612</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit d3c092e

Please sign in to comment.