You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ab...@apache.org on 2013/12/17 01:02:42 UTC

git commit: Switch to maven-compiler-plugin 3.1

Updated Branches:
  refs/heads/master 805d45a7a -> 16ea4fb33


Switch to maven-compiler-plugin 3.1


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/16ea4fb3
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/16ea4fb3
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/16ea4fb3

Branch: refs/heads/master
Commit: 16ea4fb33f61c9aad976a4520fea063a1a7f9144
Parents: 805d45a
Author: Andrew Bayer <an...@gmail.com>
Authored: Mon Dec 16 15:58:16 2013 -0800
Committer: Andrew Bayer <an...@gmail.com>
Committed: Mon Dec 16 16:02:26 2013 -0800

----------------------------------------------------------------------
 project/pom.xml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/16ea4fb3/project/pom.xml
----------------------------------------------------------------------
diff --git a/project/pom.xml b/project/pom.xml
index 3f10f64..d077c28 100644
--- a/project/pom.xml
+++ b/project/pom.xml
@@ -595,20 +595,20 @@
       </plugin>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.5.1</version>
+        <version>3.1</version>
         <configuration>
           <encoding>${project.build.sourceEncoding}</encoding>
           <source>${maven.compile.source}</source>
           <target>${maven.compile.target}</target>
             <showDeprecation>false</showDeprecation>
             <showWarnings>true</showWarnings>
-            <compilerArguments>
-              <Xlint />
-              <Xlint:-deprecation />
-              <Xlint:-rawtypes />
-              <Xlint:-serial />
-              <Xlint:-unchecked />
-            </compilerArguments>
+            <compilerArgs>
+              <compilerArg>-Xlint</compilerArg>
+              <compilerArg>-Xlint:-deprecation</compilerArg>
+              <compilerArg>-Xlint:-rawtypes</compilerArg>
+              <compilerArg>-Xlint:-serial</compilerArg>
+              <compilerArg>-Xlint:-unchecked</compilerArg>
+            </compilerArgs>
         </configuration>
       </plugin>
       <plugin>