You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2014/10/30 07:09:46 UTC

svn commit: r1635398 - in /maven/shared/trunk/maven-shared-jar: ./ src/main/java/org/apache/maven/shared/jar/ src/main/java/org/apache/maven/shared/jar/classes/ src/main/java/org/apache/maven/shared/jar/identification/exposers/ src/main/java/org/apache...

Author: hboutemy
Date: Thu Oct 30 06:09:45 2014
New Revision: 1635398

URL: http://svn.apache.org/r1635398
Log:
upgraded parent pom

Modified:
    maven/shared/trunk/maven-shared-jar/pom.xml
    maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/JarAnalyzer.java
    maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/classes/ImportVisitor.java
    maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/EmbeddedMavenModelExposer.java
    maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/RepositorySearchExposer.java
    maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/StaticMainOutputExposer.java
    maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/hash/JarBytecodeHashAnalyzer.java

Modified: maven/shared/trunk/maven-shared-jar/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/pom.xml?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/pom.xml (original)
+++ maven/shared/trunk/maven-shared-jar/pom.xml Thu Oct 30 06:09:45 2014
@@ -24,7 +24,7 @@
   <parent>
     <groupId>org.apache.maven.shared</groupId>
     <artifactId>maven-shared-components</artifactId>
-    <version>20</version>
+    <version>21</version>
     <relativePath>../maven-shared-components/pom.xml</relativePath>
   </parent>
 

Modified: maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/JarAnalyzer.java
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/JarAnalyzer.java?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/JarAnalyzer.java (original)
+++ maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/JarAnalyzer.java Thu Oct 30 06:09:45 2014
@@ -95,7 +95,8 @@ public class JarAnalyzer
      * Constructor. Opens the JAR file, so should be matched by a call to {@link #closeQuietly()}.
      *
      * @param file the JAR file to open
-     * @throws java.io.IOException if there is a problem opening the JAR file, or reading the manifest. The JAR file will be closed if this occurs.
+     * @throws java.io.IOException if there is a problem opening the JAR file, or reading the manifest. The JAR file
+     *             will be closed if this occurs.
      */
     public JarAnalyzer( File file )
         throws IOException
@@ -140,8 +141,8 @@ public class JarAnalyzer
     }
 
     /**
-     * Get the data for an individual entry in the JAR. The caller should closeQuietly the input stream, and should not retain
-     * the stream as the JAR file may be closed elsewhere.
+     * Get the data for an individual entry in the JAR. The caller should closeQuietly the input stream, and should not
+     * retain the stream as the JAR file may be closed elsewhere.
      *
      * @param entry the JAR entry to read from
      * @return the input stream of the individual JAR entry.

Modified: maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/classes/ImportVisitor.java
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/classes/ImportVisitor.java?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/classes/ImportVisitor.java (original)
+++ maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/classes/ImportVisitor.java Thu Oct 30 06:09:45 2014
@@ -47,7 +47,8 @@ public class ImportVisitor
     private JavaClass javaClass;
 
     /**
-     * Pattern to detect if the import is qualified and allows retrieval of the actual import name from the string via the group 1.
+     * Pattern to detect if the import is qualified and allows retrieval of the actual import name from the string via
+     * the group 1.
      */
     private static final Pattern QUALIFIED_IMPORT_PATTERN = Pattern.compile( "L([a-zA-Z][a-zA-Z0-9\\.]+);" );
 

Modified: maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/EmbeddedMavenModelExposer.java
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/EmbeddedMavenModelExposer.java?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/EmbeddedMavenModelExposer.java (original)
+++ maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/EmbeddedMavenModelExposer.java Thu Oct 30 06:09:45 2014
@@ -35,11 +35,11 @@ import java.io.InputStreamReader;
 import java.util.List;
 import java.util.jar.JarEntry;
 
-
 /**
  * Exposer that examines a JAR file for any embedded Maven metadata for identification.
  *
- * @plexus.component role="org.apache.maven.shared.jar.identification.JarIdentificationExposer" role-hint="embeddedMavenModel"
+ * @plexus.component role="org.apache.maven.shared.jar.identification.JarIdentificationExposer"
+ *                   role-hint="embeddedMavenModel"
  */
 public class EmbeddedMavenModelExposer
     extends AbstractLogEnabled

Modified: maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/RepositorySearchExposer.java
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/RepositorySearchExposer.java?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/RepositorySearchExposer.java (original)
+++ maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/RepositorySearchExposer.java Thu Oct 30 06:09:45 2014
@@ -40,7 +40,8 @@ import java.util.List;
  * {@link #setFileHashAnalyzer(org.apache.maven.shared.jar.identification.hash.JarHashAnalyzer)},
  * {@link #setRepositoryHashSearch(org.apache.maven.shared.jar.identification.repository.RepositoryHashSearch)}
  *
- * @plexus.component role="org.apache.maven.shared.jar.identification.JarIdentificationExposer" role-hint="repositorySearch"
+ * @plexus.component role="org.apache.maven.shared.jar.identification.JarIdentificationExposer"
+ *                   role-hint="repositorySearch"
  */
 public class RepositorySearchExposer
     extends AbstractLogEnabled

Modified: maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/StaticMainOutputExposer.java
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/StaticMainOutputExposer.java?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/StaticMainOutputExposer.java (original)
+++ maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/exposers/StaticMainOutputExposer.java Thu Oct 30 06:09:45 2014
@@ -32,7 +32,8 @@ import java.util.List;
  * <code>main</code> method if it exists to obtain the version.
  *
  * @todo not currently implemented
- * @plexus.component role="org.apache.maven.shared.jar.identification.JarIdentificationExposer" role-hint="staticMainOutput"
+ * @plexus.component role="org.apache.maven.shared.jar.identification.JarIdentificationExposer"
+ *                   role-hint="staticMainOutput"
  */
 public class StaticMainOutputExposer
     implements JarIdentificationExposer

Modified: maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/hash/JarBytecodeHashAnalyzer.java
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/hash/JarBytecodeHashAnalyzer.java?rev=1635398&r1=1635397&r2=1635398&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/hash/JarBytecodeHashAnalyzer.java (original)
+++ maven/shared/trunk/maven-shared-jar/src/main/java/org/apache/maven/shared/jar/identification/hash/JarBytecodeHashAnalyzer.java Thu Oct 30 06:09:45 2014
@@ -35,7 +35,8 @@ import java.util.jar.JarEntry;
  * Analyzer that calculates the hash code for the entire file. Can be used to detect an exact copy of the file's class
  * data. Useful to see thru a recompile, recompression, or timestamp change.
  * <p/>
- * If you are not using Plexus, you must call {@link #setDigester(org.codehaus.plexus.digest.StreamingDigester)} before use
+ * If you are not using Plexus, you must call {@link #setDigester(org.codehaus.plexus.digest.StreamingDigester)} before
+ * use
  *
  * @plexus.component role="org.apache.maven.shared.jar.identification.hash.JarHashAnalyzer" role-hint="bytecode"
  */