CPD Results
The following document contains the results of PMD's CPD 6.46.0.
Duplications
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 90 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 225 |
Set<String> result = new TreeSet<>(); if ( StringUtils.isEmpty( parentGroupId ) ) { for ( String groupId : contents.keySet() ) { int index = groupId.indexOf( '.' ); result.add( index == -1 ? groupId : groupId.substring( 0, index ) ); } } else { String prefix = parentGroupId + '.'; int start = prefix.length(); for ( String groupId : contents.keySet() ) { if ( groupId.startsWith( prefix ) ) { int index = groupId.indexOf( '.', start ); result.add( index == -1 ? groupId.substring( start ) : groupId.substring( start, index ) ); } } } return result; } /** * {@inheritDoc} */ public synchronized Set<String> getArtifactIds( String groupId ) { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( groupId ); return artifactMap == null ? Collections.emptySet() : new TreeSet<>(artifactMap.keySet() ); } /** * {@inheritDoc} */ public synchronized Set<String> getVersions( String groupId, String artifactId ) { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( groupId ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifactId ) ); return versionMap == null ? Collections.emptySet() : new TreeSet<>( versionMap.keySet() ); } /** * {@inheritDoc} */ public synchronized Set<Artifact> getArtifacts( String groupId, String artifactId, String version ) { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( groupId ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifactId ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( version ) ); return filesMap == null ? Collections.emptySet() : new HashSet<>( filesMap.keySet() ); } /** * {@inheritDoc} */ public synchronized long getLastModified( Artifact artifact ) throws IOException, ArtifactNotFoundException { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( artifact.getGroupId() ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifact.getArtifactId() ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( artifact.getVersion() ) ); Content content = ( filesMap == null ? null : filesMap.get( artifact ) ); if ( content == null ) { if ( artifact.isSnapshot() && artifact.getTimestamp() == null && filesMap != null ) { Artifact best = null; for ( Map.Entry<Artifact, Content> entry : filesMap.entrySet() ) { Artifact a = entry.getKey(); if ( artifact.equalSnapshots( a ) && ( best == null || best.compareTo( a ) < 0 ) ) { best = a; content = entry.getValue(); } } if ( content == null ) { throw new ArtifactNotFoundException( artifact ); } } else { throw new ArtifactNotFoundException( artifact ); } } return content.getLastModified(); } /** * {@inheritDoc} */ public synchronized long getSize( Artifact artifact ) throws IOException, ArtifactNotFoundException { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( artifact.getGroupId() ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifact.getArtifactId() ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( artifact.getVersion() ) ); Content content = ( filesMap == null ? null : filesMap.get( artifact ) ); if ( content == null ) { if ( artifact.isSnapshot() && artifact.getTimestamp() == null && filesMap != null ) { Artifact best = null; for ( Map.Entry<Artifact, Content> entry : filesMap.entrySet() ) { Artifact a = entry.getKey(); if ( artifact.equalSnapshots( a ) && ( best == null || best.compareTo( a ) < 0 ) ) { best = a; content = entry.getValue(); } } if ( content == null ) { throw new ArtifactNotFoundException( artifact ); } } else { throw new ArtifactNotFoundException( artifact ); } } return content.getBytes().length; |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 421 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 565 |
Content content = entry.getValue(); SimpleDateFormat fmt = new SimpleDateFormat( "yyyyMMddHHmmss" ); fmt.setTimeZone( TimeZone.getTimeZone( "GMT" ) ); String lastUpdatedTime = fmt.format( new Date( content.getLastModified() ) ); try { Maven3.addSnapshotVersion( snapshotVersions, artifact, lastUpdatedTime ); } catch ( LinkageError e ) { // Maven 2 } if ( "pom".equals( artifact.getType() ) ) { if ( artifact.getBuildNumber() != null && maxBuildNumber < artifact.getBuildNumber()) { maxBuildNumber = artifact.getBuildNumber(); timestamp = artifact.getTimestampString(); } else { maxBuildNumber = Math.max( 1, maxBuildNumber ); } lastUpdated = Math.max( lastUpdated, content.getLastModified() ); found = true; } } if ( !snapshotVersions.isEmpty() || found ) { Versioning versioning = metadata.getVersioning(); if ( versioning == null ) { versioning = new Versioning(); } metadata.setGroupId( groupId ); metadata.setArtifactId( artifactId ); metadata.setVersion( version ); try { Maven3.addSnapshotVersions( versioning, snapshotVersions ); } catch ( LinkageError e ) { // Maven 2 } if ( maxBuildNumber > 0 ) { Snapshot snapshot = new Snapshot(); snapshot.setBuildNumber( maxBuildNumber ); snapshot.setTimestamp( timestamp ); versioning.setSnapshot( snapshot ); } versioning.setLastUpdatedTimestamp( new Date( lastUpdated ) ); metadata.setVersioning( versioning ); foundMetadata = true; } } } if ( !foundMetadata ) { throw new MetadataNotFoundException( path ); } return metadata; } /** * {@inheritDoc} */ public synchronized long getMetadataLastModified( String path ) throws IOException, MetadataNotFoundException { boolean haveResult = false; long result = 0; path = StringUtils.stripEnd( StringUtils.stripStart( path, "/" ), "/" ); String groupId = path.replace( '/', '.' ); Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( groupId ); if ( artifactMap != null ) { for ( Map<String, Map<Artifact, Content>> versionMap : artifactMap.values() ) { for ( Map<Artifact, Content> filesMap : versionMap.values() ) { for ( Content content : filesMap.values() ) { haveResult = true; result = Math.max( result, content.getLastModified() ); } } } } int index = path.lastIndexOf( '/' ); groupId = index == -1 ? groupId : groupId.substring( 0, index ).replace( '/', '.' ); String artifactId = ( index == -1 ? null : path.substring( index + 1 ) ); if ( artifactId != null ) { artifactMap = contents.get( groupId ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifactId ) ); if ( versionMap != null ) { for ( Map<Artifact, Content> filesMap : versionMap.values() ) { for ( Content content : filesMap.values() ) { haveResult = true; result = Math.max( result, content.getLastModified() ); } } } } int index2 = index == -1 ? -1 : path.lastIndexOf( '/', index - 1 ); groupId = index2 == -1 ? groupId : groupId.substring( 0, index2 ).replace( '/', '.' ); artifactId = index2 == -1 ? artifactId : path.substring( index2 + 1, index ); String version = index2 == -1 ? null : path.substring( index + 1 ); if ( version != null && version.endsWith( "-SNAPSHOT" ) ) { artifactMap = contents.get( groupId ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifactId ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( version ) ); if ( filesMap != null ) { for ( Content content : filesMap.values() ) { haveResult = true; result = Math.max( result, content.getLastModified() ); } } } if ( haveResult ) { return result; } throw new MetadataNotFoundException( path ); } |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 308 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 452 |
Model model = reader.read(xmlStreamReader); if ( model == null || !"maven-plugin".equals( model.getPackaging() ) ) { continue; } Plugin plugin = new Plugin(); plugin.setArtifactId( artifactId ); plugin.setName( model.getName() ); // TODO proper goal-prefix determination // ugh! this is incredibly hacky and does not handle some fool that sets the goal prefix in // a parent pom... ok unlikely, but stupid is as stupid does boolean havePrefix = false; final Build build = model.getBuild(); if ( build != null && build.getPlugins() != null ) { havePrefix = setPluginGoalPrefixFromConfiguration( plugin, build.getPlugins() ); } if ( !havePrefix && build != null && build.getPluginManagement() != null && build.getPluginManagement().getPlugins() != null ) { havePrefix = setPluginGoalPrefixFromConfiguration( plugin, build.getPluginManagement().getPlugins() ); } if ( !havePrefix && artifactId.startsWith( "maven-" ) && artifactId.endsWith( "-plugin" ) ) { plugin.setPrefix( StringUtils.removeStart( StringUtils.removeEnd( artifactId, "-plugin" ), "maven-" ) ); havePrefix = true; } if ( !havePrefix && artifactId.endsWith( "-maven-plugin" ) ) { plugin.setPrefix( StringUtils.removeEnd( artifactId, "-maven-plugin" ) ); havePrefix = true; } if ( !havePrefix ) { plugin.setPrefix( artifactId ); } plugins.add( plugin ); foundMetadata = true; break; } catch ( ArtifactNotFoundException | XmlPullParserException e ) { // ignore } } } if ( !plugins.isEmpty() ) { metadata.setPlugins( plugins ); } } int index = path.lastIndexOf( '/' ); groupId = ( index == -1 ? groupId : groupId.substring( 0, index ) ).replace( '/', '.' ); String artifactId = ( index == -1 ? null : path.substring( index + 1 ) ); if ( artifactId != null ) { Set<String> artifactVersions = getVersions( groupId, artifactId ); if ( artifactVersions != null && !artifactVersions.isEmpty() ) { metadata.setGroupId( groupId ); metadata.setArtifactId( artifactId ); Versioning versioning = new Versioning(); List<String> versions = new ArrayList<>( artifactVersions ); versions.sort(INSTANCE); // sort the Maven way long lastUpdated = 0; for ( String version : versions ) { try { long lastModified = getLastModified( new Artifact( groupId, artifactId, version, "pom" ) ); versioning.addVersion( version ); if ( lastModified >= lastUpdated ) { lastUpdated = lastModified; versioning.setLastUpdatedTimestamp( new Date( lastModified ) ); versioning.setLatest( version ); if ( !version.endsWith( "-SNAPSHOT" ) ) { versioning.setRelease( version ); } } } catch ( ArtifactNotFoundException e ) { // ignore } } metadata.setVersioning( versioning ); foundMetadata = true; } } int index2 = index == -1 ? -1 : path.lastIndexOf( '/', index - 1 ); groupId = index2 == -1 ? groupId : groupId.substring( 0, index2 ).replace( '/', '.' ); artifactId = index2 == -1 ? artifactId : path.substring( index2 + 1, index ); String version = index2 == -1 ? null : path.substring( index + 1 ); if ( version != null && version.endsWith( "-SNAPSHOT" ) ) { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( groupId ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifactId ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( version ) ); if ( filesMap != null ) { List<SnapshotVersion> snapshotVersions = new ArrayList<>(); int maxBuildNumber = 0; long lastUpdated = 0; String timestamp = null; boolean found = false; for ( Map.Entry<Artifact, Content> entry : filesMap.entrySet() ) |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/DiskArtifactStore.java | Mock Repository Manager :: Servlet | 180 |
org/codehaus/mojo/mrm/impl/maven/FileSystemArtifactStore.java | Mock Repository Manager :: Servlet | 155 |
Matcher matcher = rule.matcher( file.getName() ); if ( !matcher.matches() ) { return null; } if ( matcher.group( 1 ).equals( "SNAPSHOT" ) ) { return new Artifact( groupId, artifactId, version, matcher.group( 9 ), matcher.group( 10 ) ); } try { Calendar cal = new GregorianCalendar(); cal.setTimeZone( TimeZone.getTimeZone( "GMT" ) ); cal.set( Calendar.YEAR, Integer.parseInt( matcher.group( 2 ) ) ); cal.set( Calendar.MONTH, Integer.parseInt( matcher.group( 3 ) ) - 1 ); cal.set( Calendar.DAY_OF_MONTH, Integer.parseInt( matcher.group( 4 ) ) ); cal.set( Calendar.HOUR_OF_DAY, Integer.parseInt( matcher.group( 5 ) ) ); cal.set( Calendar.MINUTE, Integer.parseInt( matcher.group( 6 ) ) ); cal.set( Calendar.SECOND, Integer.parseInt( matcher.group( 7 ) ) ); long timestamp = cal.getTimeInMillis(); int buildNumber = Integer.parseInt( matcher.group( 8 ) ); return new Artifact( groupId, artifactId, version, matcher.group( 9 ), matcher.group( 10 ), timestamp, buildNumber ); } catch ( NullPointerException e ) { return null; } } }; } else { rule = Pattern.compile( "\\Q" + artifactId + "\\E-\\Q" + version + "\\E(?:-([^.]+))?\\.(.+)" ); factory = new ArtifactFactory() { public Artifact get( File file ) |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 220 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 353 |
} /** * {@inheritDoc} */ public synchronized InputStream get( Artifact artifact ) throws IOException, ArtifactNotFoundException { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( artifact.getGroupId() ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifact.getArtifactId() ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( artifact.getVersion() ) ); Content content = ( filesMap == null ? null : filesMap.get( artifact ) ); if ( content == null ) { if ( artifact.isSnapshot() && artifact.getTimestamp() == null && filesMap != null ) { Artifact best = null; for ( Map.Entry<Artifact, Content> entry : filesMap.entrySet() ) { Artifact a = entry.getKey(); if ( artifact.equalSnapshots( a ) && ( best == null || best.compareTo( a ) < 0 ) ) { best = a; content = entry.getValue(); } } if ( content == null ) { throw new ArtifactNotFoundException( artifact ); } } else { throw new ArtifactNotFoundException( artifact ); } } return new ByteArrayInputStream( content.getBytes() ); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 149 |
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 187 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 284 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 321 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 358 |
public synchronized long getLastModified( Artifact artifact ) throws IOException, ArtifactNotFoundException { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( artifact.getGroupId() ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifact.getArtifactId() ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( artifact.getVersion() ) ); Content content = ( filesMap == null ? null : filesMap.get( artifact ) ); if ( content == null ) { if ( artifact.isSnapshot() && artifact.getTimestamp() == null && filesMap != null ) { Artifact best = null; for ( Map.Entry<Artifact, Content> entry : filesMap.entrySet() ) { Artifact a = entry.getKey(); if ( artifact.equalSnapshots( a ) && ( best == null || best.compareTo( a ) < 0 ) ) { best = a; content = entry.getValue(); } } if ( content == null ) { throw new ArtifactNotFoundException( artifact ); } } else { throw new ArtifactNotFoundException( artifact ); } } return content.getLastModified(); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 149 |
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 187 |
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 225 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 284 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 321 |
public synchronized long getLastModified( Artifact artifact ) throws IOException, ArtifactNotFoundException { Map<String, Map<String, Map<Artifact, Content>>> artifactMap = contents.get( artifact.getGroupId() ); Map<String, Map<Artifact, Content>> versionMap = ( artifactMap == null ? null : artifactMap.get( artifact.getArtifactId() ) ); Map<Artifact, Content> filesMap = ( versionMap == null ? null : versionMap.get( artifact.getVersion() ) ); Content content = ( filesMap == null ? null : filesMap.get( artifact ) ); if ( content == null ) { if ( artifact.isSnapshot() && artifact.getTimestamp() == null && filesMap != null ) { Artifact best = null; for ( Map.Entry<Artifact, Content> entry : filesMap.entrySet() ) { Artifact a = entry.getKey(); if ( artifact.equalSnapshots( a ) && ( best == null || best.compareTo( a ) < 0 ) ) { best = a; content = entry.getValue(); } } if ( content == null ) { throw new ArtifactNotFoundException( artifact ); } } else { throw new ArtifactNotFoundException( artifact ); } } return content.getLastModified(); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 585 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 732 |
public synchronized long getArchetypeCatalogLastModified() throws ArchetypeCatalogNotFoundException { if ( archetypeCatalog != null ) { return archetypeCatalog.getLastModified(); } else { throw new ArchetypeCatalogNotFoundException(); } } /** * If the plugin configurations contain a reference to the <code>maven-plugin-plugin</code> and that contains * configuration of the <code>goalPrefix</code>, update the supplied plugin with that prefix. * * @param plugin the plugin to update. * @param pluginConfigs the configurations of {@link org.apache.maven.model.Plugin} to search. * @return <code>true</code> if the prefix has been set. * @since 1.0 */ private boolean setPluginGoalPrefixFromConfiguration( Plugin plugin, List<org.apache.maven.model.Plugin> pluginConfigs ) { for ( org.apache.maven.model.Plugin def : pluginConfigs ) { if ( ( def.getGroupId() == null || StringUtils.equals( "org.apache.maven.plugins", def.getGroupId() ) ) && StringUtils.equals( "maven-plugin-plugin", def.getArtifactId() ) ) { Xpp3Dom configuration = (Xpp3Dom) def.getConfiguration(); if ( configuration != null ) { final Xpp3Dom goalPrefix = configuration.getChild( "goalPrefix" ); if ( goalPrefix != null ) { plugin.setPrefix( goalPrefix.getValue() ); return true; } } break; } } return false; } private static final Comparator<String> INSTANCE = new VersionComparator(); /** * Compares two versions using Maven's version comparison rules. * * @since 1.0 */ private static class VersionComparator implements Comparator<String> { |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 460 |
org/codehaus/mojo/mrm/impl/maven/DiskArtifactStore.java | Mock Repository Manager :: Servlet | 184 |
org/codehaus/mojo/mrm/impl/maven/FileSystemArtifactStore.java | Mock Repository Manager :: Servlet | 159 |
} if ( matcher.group( 1 ).equals( "SNAPSHOT" ) ) { return new Artifact( groupId, artifactId, version, matcher.group( 9 ), matcher.group( 10 ) ); } try { Calendar cal = new GregorianCalendar(); cal.setTimeZone( TimeZone.getTimeZone( "GMT" ) ); cal.set( Calendar.YEAR, Integer.parseInt( matcher.group( 2 ) ) ); cal.set( Calendar.MONTH, Integer.parseInt( matcher.group( 3 ) ) - 1 ); cal.set( Calendar.DAY_OF_MONTH, Integer.parseInt( matcher.group( 4 ) ) ); cal.set( Calendar.HOUR_OF_DAY, Integer.parseInt( matcher.group( 5 ) ) ); cal.set( Calendar.MINUTE, Integer.parseInt( matcher.group( 6 ) ) ); cal.set( Calendar.SECOND, Integer.parseInt( matcher.group( 7 ) ) ); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 305 |
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 465 |
} try { Calendar cal = new GregorianCalendar(); cal.setTimeZone( TimeZone.getTimeZone( "GMT" ) ); cal.set( Calendar.YEAR, Integer.parseInt( matcher.group( 2 ) ) ); cal.set( Calendar.MONTH, Integer.parseInt( matcher.group( 3 ) ) - 1 ); cal.set( Calendar.DAY_OF_MONTH, Integer.parseInt( matcher.group( 4 ) ) ); cal.set( Calendar.HOUR_OF_DAY, Integer.parseInt( matcher.group( 5 ) ) ); cal.set( Calendar.MINUTE, Integer.parseInt( matcher.group( 6 ) ) ); cal.set( Calendar.SECOND, Integer.parseInt( matcher.group( 7 ) ) ); cal.set( Calendar.MILLISECOND, 0); long timestamp = cal.getTimeInMillis(); int buildNumber = Integer.parseInt( matcher.group( 8 ) ); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 265 |
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 437 |
Matcher snapshotArtifact = SNAPSHOT_ARTIFACT.matcher( path ); if ( snapshotArtifact.matches() ) { String groupId = StringUtils.stripEnd( snapshotArtifact.group( 1 ), "/" ).replace( '/', '.' ); String artifactId = snapshotArtifact.group( 2 ); String version = snapshotArtifact.group( 3 ) + "-SNAPSHOT"; Pattern rule = Pattern.compile( "\\Q" + artifactId + "\\E-(?:\\Q" + StringUtils.removeEnd( version, "-SNAPSHOT" ) + "\\E-(SNAPSHOT|(\\d{4})(\\d{2})(\\d{2})\\.(\\d{2})(\\d{2})(\\d{2})-(\\d+)))(?:-([^.]+))?\\.([^/]*)" ); Matcher matcher = rule.matcher( name ); if ( !matcher.matches() ) { String classifier = snapshotArtifact.group( 5 ); String type = snapshotArtifact.group( 6 ); if ( classifier != null ) { classifier = classifier.substring( 1 ); } if ( StringUtils.isEmpty( classifier ) ) { classifier = null; } return new ArtifactFileEntry( this, parent, |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 305 |
org/codehaus/mojo/mrm/impl/maven/DiskArtifactStore.java | Mock Repository Manager :: Servlet | 188 |
org/codehaus/mojo/mrm/impl/maven/FileSystemArtifactStore.java | Mock Repository Manager :: Servlet | 163 |
} try { Calendar cal = new GregorianCalendar(); cal.setTimeZone( TimeZone.getTimeZone( "GMT" ) ); cal.set( Calendar.YEAR, Integer.parseInt( matcher.group( 2 ) ) ); cal.set( Calendar.MONTH, Integer.parseInt( matcher.group( 3 ) ) - 1 ); cal.set( Calendar.DAY_OF_MONTH, Integer.parseInt( matcher.group( 4 ) ) ); cal.set( Calendar.HOUR_OF_DAY, Integer.parseInt( matcher.group( 5 ) ) ); cal.set( Calendar.MINUTE, Integer.parseInt( matcher.group( 6 ) ) ); cal.set( Calendar.SECOND, Integer.parseInt( matcher.group( 7 ) ) ); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 277 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 423 |
} /** * {@inheritDoc} */ public synchronized Metadata getMetadata( String path ) throws IOException, MetadataNotFoundException { Metadata metadata = new Metadata(); boolean foundMetadata = false; path = StringUtils.stripEnd( StringUtils.stripStart( path, "/" ), "/" ); String groupId = path.replace( '/', '.' ); Set<String> pluginArtifactIds = getArtifactIds( groupId ); if ( pluginArtifactIds != null ) { List<Plugin> plugins = new ArrayList<>(); for ( String artifactId : pluginArtifactIds ) { Set<String> pluginVersions = getVersions( groupId, artifactId ); if ( pluginVersions == null || pluginVersions.isEmpty() ) { continue; } String[] versions = pluginVersions.toArray(new String[0]); Arrays.sort( versions, INSTANCE ); |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/MemoryArtifactStore.java | Mock Repository Manager :: Servlet | 714 |
org/codehaus/mojo/mrm/impl/maven/MockArtifactStore.java | Mock Repository Manager :: Servlet | 1001 |
} } /** * In order to allow the use of Maven 3 methods from a plugin running in Maven 2, we need to encapsulate all the * Maven 3 method signatures in a separate class so that we can catch the {@link LinkageError} that will be thrown * when the class is attempted to load. If we didn't do it this way then our class could not load either. * * @since 1.0 */ private static class Maven3 { /** * Adds a snapshot version to the list of snapshot versions. * * @param snapshotVersions the list of snapshot versions. * @param artifact the artifact to add details of. * @param lastUpdatedTime the time to flag for last updated. * @since 1.0 */ private static void addSnapshotVersion( List<SnapshotVersion> snapshotVersions, Artifact artifact, String lastUpdatedTime ) { try { SnapshotVersion snapshotVersion = new SnapshotVersion(); snapshotVersion.setExtension( artifact.getType() ); snapshotVersion.setClassifier( artifact.getClassifier() == null ? "" : artifact.getClassifier() ); snapshotVersion.setVersion( artifact.getTimestampVersion() ); snapshotVersion.setUpdated( lastUpdatedTime ); snapshotVersions.add( snapshotVersion ); } catch ( NoClassDefFoundError e ) { // Maven 2 } } /** * Add the list of {@link SnapshotVersion}s to the {@link Versioning}. * * @param versioning the versionioning to add to. * @param snapshotVersions the snapshot versions to add. * @since 1.0 */ private static void addSnapshotVersions( Versioning versioning, List<SnapshotVersion> snapshotVersions ) { try { for ( SnapshotVersion snapshotVersion : snapshotVersions ) { versioning.addSnapshotVersion( snapshotVersion ); } } catch ( NoClassDefFoundError e ) { // Maven 2 } } } } |
File | Project | Line |
---|---|---|
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 336 |
org/codehaus/mojo/mrm/impl/maven/ArtifactStoreFileSystem.java | Mock Repository Manager :: Servlet | 486 |
} } else { Matcher matcher = ARTIFACT.matcher( path ); if ( matcher.matches() ) { String groupId = StringUtils.stripEnd( matcher.group( 1 ), "/" ).replace( '/', '.' ); String artifactId = matcher.group( 2 ); String version = matcher.group( 3 ); String classifier = matcher.group( 5 ); String type = matcher.group( 6 ); if ( classifier != null ) { classifier = classifier.substring( 1 ); } if ( StringUtils.isEmpty( classifier ) ) { classifier = null; } |