Skip to content

Commit

Permalink
Prepare 1.9.0 release (#206)
Browse files Browse the repository at this point in the history
Changes:
- project version changed from 1.8.3-SNAPSHOT to 1.9.0-SNAPSHOT
- update all "@SInCE TBD"
  • Loading branch information
cstamas authored Oct 26, 2022
1 parent 5b6c319 commit 2b85869
Show file tree
Hide file tree
Showing 49 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion maven-resolver-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Runtime exception to be thrown when multiple actions were executed and one or more failed. To be used when no
* fallback on resolver side is needed or is possible.
*
* @since TBD
* @since 1.9.0
*/
public final class MultiRuntimeException
extends RuntimeException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,15 +278,15 @@ public interface RepositorySystemSession extends AutoCloseable
* that handlers cannot use {@link RepositorySystem} to resolve/collect/and so on, handlers are meant to perform
* some internal cleanup on session close. Attempt to add handler to closed session will throw.
*
* @since TBD
* @since 1.9.0
*/
void addOnCloseHandler( Consumer<RepositorySystemSession> handler );

/**
* Returns {@code true} if this instance was already closed. Closed sessions should NOT be used anymore.
*
* @return {@code true} if session was closed.
* @since TBD
* @since 1.9.0
*/
boolean isClosed();

Expand Down Expand Up @@ -320,7 +320,7 @@ public interface RepositorySystemSession extends AutoCloseable
* }
* }</pre>
*
* @since TBD
* @since 1.9.0
*/
@Override
void close();
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-connector-basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-connector-basic</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-demos</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>resolver-demo-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-demos/maven-resolver-demo-snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-demos</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-demo-snippets</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-demos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-demos</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-impl</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* Remote repository filter manager.
*
* @since TBD
* @since 1.9.0
*/
public interface RemoteRepositoryFilterManager
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* <p>
* This implementation ensures that implementations have "name" property, used in configuration properties above.
*
* @since TBD
* @since 1.9.0
*/
abstract class FileTrustedChecksumsSourceSupport
implements TrustedChecksumsSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* The name of this implementation is "sparse-directory".
*
* @see LocalPathComposer
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( SparseDirectoryTrustedChecksumsSource.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
* <p>
* The name of this implementation is "summary-file".
*
* @since TBD
* @since 1.9.0
* @see <a href="https://man7.org/linux/man-pages/man1/sha1sum.1.html">sha1sum man page</a>
* @see <a href="https://www.gnu.org/software/coreutils/manual/coreutils.html#md5sum-invocation">GNU Coreutils: md5sum</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* Adapter that adapts {@link TrustedChecksumsSource} to {@link ProvidedChecksumsSource} used by connector. Hence, any
* "trusted" source exist that is enabled, automatically becomes "provided" source as well.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( TrustedToProvidedChecksumsSourceAdapter.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class BfDependencyCollector
/**
* The count of threads to be used when collecting POMs in parallel, default value 5.
*
* @since TBD
* @since 1.9.0
*/
static final String CONFIG_PROP_THREADS = "aether.dependencyCollector.bf.threads";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* <p>
* The created {@link RemoteRepositoryFilter} instance is created once per session and cached.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* A filtering connector that filter transfers using remote repository filter and delegates to another connector.
*
* @since TBD
* @since 1.9.0
*/
public final class FilteringRepositoryConnector
implements RepositoryConnector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* The groupId file once loaded are cached in session, so in-flight groupId file change during session are NOT
* noticed.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( GroupIdRemoteRepositoryFilterSource.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
* <a href="https://repository.apache.org/content/repositories/releases/.meta/prefixes.txt">prefixes.txt</a></li>
* </ul>
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( PrefixesRemoteRepositoryFilterSource.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* repository basedir.</li>
* </ul>
*
* @since TBD
* @since 1.9.0
*/
public abstract class RemoteRepositoryFilterSourceSupport
implements RemoteRepositoryFilterSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Support class to implement {@link ArtifactResolverPostProcessor}.
*
* @since TBD
* @since 1.9.0
*/
public abstract class ArtifactResolverPostProcessorSupport
implements ArtifactResolverPostProcessor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
* implies that if two enabled checksum sources "disagree" about an artifact checksum, the validation failure is
* inevitable.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( TrustedChecksumsArtifactResolverPostProcessor.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* {@link NameMapper} and resolves the resulting "file system friendly" names against local
* repository basedir.
*
* @since TBD
* @since 1.9.0
*/
public class BasedirNameMapper implements NameMapper
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* <p>
* This mapper is usable in any scenario, but intent was to produce more "compact" name mapper for file locking.
*
* @since TBD
* @since 1.9.0
*/
public class HashingNameMapper implements NameMapper
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public interface NameMapper
* Returns {@code true} if lock names returned by this lock name mapper are file system friendly, can be used
* as file names and paths.
*
* @since TBD
* @since 1.9.0
*/
boolean isFileSystemFriendly();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* The "discriminating" name mapper provider.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( DiscriminatingNameMapperProvider.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* The "file-gav" name mapper provider.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( FileGAVNameMapperProvider.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* The "file-hgav" name mapper provider.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( FileHashingGAVNameMapperProvider.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* The "gav" name mapper provider.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( GAVNameMapperProvider.NAME )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* The "static" name mapper provider.
*
* @since TBD
* @since 1.9.0
*/
@Singleton
@Named( StaticNameMapperProvider.NAME )
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-named-locks-hazelcast/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-named-locks-hazelcast</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-named-locks-redisson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-named-locks-redisson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-named-locks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-named-locks</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-spi</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* for "trust" (like some crypto magic or what not). It all boils down that the source being used by implementation is
* "trusted" by user or not.
*
* @since TBD
* @since 1.9.0
*/
public interface TrustedChecksumsSource
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface ChecksumAlgorithmFactorySelector
*
* @throws IllegalArgumentException if any asked algorithm name is not supported.
* @throws NullPointerException if passed in list of names is {@code null}.
* @since TBD
* @since 1.9.0
*/
default List<ChecksumAlgorithmFactory> selectList( Collection<String> algorithmNames )
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Remote repository filter that decides should the given artifact or metadata be accepted (for further processing)
* from remote repository or not.
*
* @since TBD
* @since 1.9.0
*/
public interface RemoteRepositoryFilter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Remote repository filter source component.
*
* @since TBD
* @since 1.9.0
*/
public interface RemoteRepositoryFilterSource
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* artifact results, if needed even produce resolution failure. It will always be invoked (even when failure is about
* to happen), so detecting these cases are left to post processor implementations.
*
* @since TBD
* @since 1.9.0
*/
public interface ArtifactResolverPostProcessor
{
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-test-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-test-util</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-transport-classpath/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-transport-classpath</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-transport-file/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-transport-file</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven-resolver-transport-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver</artifactId>
<version>1.8.3-SNAPSHOT</version>
<version>1.9.0-SNAPSHOT</version>
</parent>

<artifactId>maven-resolver-transport-http</artifactId>
Expand Down
Loading

0 comments on commit 2b85869

Please sign in to comment.