Skip to content

Commit 1aa44a1

Browse files
committed
Version updates.
1 parent e86dfb7 commit 1aa44a1

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

checkstyle.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<!-- Space after 'for' and 'if' -->
1818
<module name="RegexpSingleline">
19-
<property name="format" value="^\s*(for|if)[^ ]"/>
19+
<property name="format" value="^\s*(for|if)[^ ]\("/>
2020
<property name="message" value="Space needed before opening parenthesis."/>
2121
</module>
2222

@@ -102,7 +102,6 @@
102102
<!-- See http://checkstyle.sf.net/config_coding.html -->
103103
<!--module name="AvoidInlineConditionals"/-->
104104
<module name="CovariantEquals"/>
105-
<module name="DoubleCheckedLocking"/>
106105
<module name="EmptyStatement"/>
107106
<!--<module name="EqualsAvoidNull"/>-->
108107
<module name="EqualsHashCode"/>

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>com.android.tools.ddms</groupId>
8888
<artifactId>ddmlib</artifactId>
89-
<version>22.0</version>
89+
<version>22.0.2</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>junit</groupId>
@@ -173,7 +173,7 @@
173173
<plugin>
174174
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
175175
<artifactId>android-maven-plugin</artifactId>
176-
<version>3.5.1</version>
176+
<version>3.6.0</version>
177177
<configuration>
178178
<sdk>
179179
<platform>16</platform>
@@ -184,7 +184,7 @@
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-compiler-plugin</artifactId>
187-
<version>3.0</version>
187+
<version>3.1</version>
188188
<configuration>
189189
<source>${java.version}</source>
190190
<target>${java.version}</target>
@@ -206,7 +206,7 @@
206206
<plugin>
207207
<groupId>org.apache.maven.plugins</groupId>
208208
<artifactId>maven-checkstyle-plugin</artifactId>
209-
<version>2.9.1</version>
209+
<version>2.10</version>
210210
<configuration>
211211
<failsOnError>true</failsOnError>
212212
<configLocation>checkstyle.xml</configLocation>

0 commit comments

Comments
 (0)