(maven) branch dependabot/maven/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/commons-io-commons-io-2.14.0 created (now a4c6d1f33c)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-new/commons-io-commons-io-2.14.0 in repository https://gitbox.apache.org/repos/asf/maven.git at a4c6d1f33c Bump commons-io:commons-io No new revisions were added by this update.
(maven) branch dependabot/maven/its/core-it-support/maven-it-helper/org.apache.maven.shared-maven-shared-utils-3.3.3 created (now 88ea28d177)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/its/core-it-support/maven-it-helper/org.apache.maven.shared-maven-shared-utils-3.3.3 in repository https://gitbox.apache.org/repos/asf/maven.git at 88ea28d177 Bump org.apache.maven.shared:maven-shared-utils No new revisions were added by this update.
(maven) branch dependabot/maven/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-11/org.codehaus.plexus-plexus-utils-3.0.24 created (now bbead06490)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/its/core-it-support/core-it-plugins/maven-it-plugin-plexus-utils-11/org.codehaus.plexus-plexus-utils-3.0.24 in repository https://gitbox.apache.org/repos/asf/maven.git at bbead06490 Bump org.codehaus.plexus:plexus-utils No new revisions were added by this update.
(maven) branch dependabot/maven/its/core-it-suite/org.eclipse.jetty-jetty-server-9.4.55.v20240627 created (now 89369e4030)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/its/core-it-suite/org.eclipse.jetty-jetty-server-9.4.55.v20240627 in repository https://gitbox.apache.org/repos/asf/maven.git at 89369e4030 Bump org.eclipse.jetty:jetty-server in /its/core-it-suite No new revisions were added by this update.
(maven) branch master updated: Remove unused class (#1866)
This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git The following commit(s) were added to refs/heads/master by this push: new 51123f3abc Remove unused class (#1866) 51123f3abc is described below commit 51123f3abcedbf7e56228699ab1880543218a4ba Author: Guillaume Nodet AuthorDate: Tue Nov 5 17:00:23 2024 +0100 Remove unused class (#1866) --- .../impl/ConsumerPomBuilderTest.java | 49 +- .../api/services/model/ModelCacheFactory.java | 1 - 2 files changed, 1 insertion(+), 49 deletions(-) diff --git a/impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java b/impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java index 6e3d7ae56b..510d5d6196 100644 --- a/impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java +++ b/impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java @@ -22,7 +22,6 @@ import javax.inject.Inject; import java.nio.file.Path; import java.nio.file.Paths; -import java.util.Arrays; import java.util.List; import java.util.function.Consumer; @@ -30,14 +29,11 @@ import org.apache.maven.api.RemoteRepository; import org.apache.maven.api.Session; import org.apache.maven.api.SessionData; import org.apache.maven.api.model.Model; -import org.apache.maven.api.model.Parent; import org.apache.maven.api.services.ModelBuilder; import org.apache.maven.api.services.ModelBuilderRequest; import org.apache.maven.api.services.ModelSource; import org.apache.maven.api.services.model.ModelResolver; import org.apache.maven.api.services.model.ModelResolverException; -import org.apache.maven.api.spi.ModelTransformer; -import org.apache.maven.api.spi.ModelTransformerException; import org.apache.maven.di.Injector; import org.apache.maven.execution.MavenExecutionRequest; import org.apache.maven.internal.impl.InternalMavenSession; @@ -60,15 +56,7 @@ public class ConsumerPomBuilderTest extends AbstractRepositoryTestCase { @BeforeEach void setupTransformerContext() throws Exception { -// We need to hack things a bit here to get the transformer context to work -// * we cannot use the CIFriendlyVersionModelTransformer directly because -//it's a session scoped bean and all tests using a model builder would have -//to use a session and initialize the scope in order for DI to start -// * the transformer context is supposed to be immutable but in this case -//we don't build the full projects before, so we need to pass a mutable -//context to the model builder -// * we also need to bind the model resolver explicitly to avoid going -//to maven central +// We need bind the model resolver explicitly to avoid going to maven central getContainer().lookup(Injector.class).bindImplicit(MyModelResolver.class); InternalSession iSession = InternalSession.from(session); // set up the model resolver @@ -150,39 +138,4 @@ public class ConsumerPomBuilderTest extends AbstractRepositoryTestCase { return null; } } - -static class CIFriendlyVersionModelTransformer implements ModelTransformer { -private static final String SHA1_PROPERTY = "sha1"; -private static final String CHANGELIST_PROPERTY = "changelist"; -private static final String REVISION_PROPERTY = "revision"; -private final Session session; - -CIFriendlyVersionModelTransformer(Session session) { -this.session = session; -} - -@Override -public Model transformFileModel(Model model) throws ModelTransformerException { -return model.with() -.version(replaceCiFriendlyVersion(model.getVersion())) -.parent(replaceParent(model.getParent())) -.build(); -} - -Parent replaceParent(Parent parent) { -return parent != null ? parent.withVersion(replaceCiFriendlyVersion(parent.getVersion())) : null; -} - -String replaceCiFriendlyVersion(String version) { -if (version != null) { -for (String key : Arrays.asList(SHA1_PROPERTY, CHANGELIST_PROPERTY, REVISION_PROPERTY)) { -String val = session.getUserProperties().get(key); -if (val != null) { -version = version.replace("${" + key + "}", val); -} -} -} -return version; -} -} } diff --git a/impl/maven-impl/src/main/java/org/apache/maven/api/services/model/ModelCacheFactory.java b/impl/maven-impl/src/main/java/org/apache/maven/api/services/model/ModelCach
(maven) branch master updated: [MNG-8368] Fix dependency resolver not using project repositories (#1865)
This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git The following commit(s) were added to refs/heads/master by this push: new 62c94d123c [MNG-8368] Fix dependency resolver not using project repositories (#1865) 62c94d123c is described below commit 62c94d123ceb270afb4f34932d8be5f2282095ae Author: Guillaume Nodet AuthorDate: Tue Nov 5 17:01:08 2024 +0100 [MNG-8368] Fix dependency resolver not using project repositories (#1865) --- .../apache/maven/internal/impl/DefaultDependencyResolver.java| 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/impl/maven-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java b/impl/maven-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java index d91d43dab2..adfed73704 100644 --- a/impl/maven-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java +++ b/impl/maven-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java @@ -167,8 +167,13 @@ public class DefaultDependencyResolver implements DependencyResolver { InternalSession.from(nonNull(request, "request").getSession()); DependencyResolverResult result; DependencyResolverResult collectorResult = collect(request); -List repositories = -request.getRepositories() != null ? request.getRepositories() : session.getRemoteRepositories(); +List repositories = request.getRepositories() != null +? request.getRepositories() +: request.getProject().isPresent() +? session.getService(ProjectManager.class) +.getRemoteProjectRepositories( +request.getProject().get()) +: session.getRemoteRepositories(); if (request.getRequestType() == DependencyResolverRequest.RequestType.COLLECT) { result = collectorResult; } else {
(maven) branch dependabot/maven/its/core-it-support/core-it-plugins/mng7529-plugin/org.apache.maven-maven-core-3.8.1 created (now 4cf9db0d30)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/its/core-it-support/core-it-plugins/mng7529-plugin/org.apache.maven-maven-core-3.8.1 in repository https://gitbox.apache.org/repos/asf/maven.git at 4cf9db0d30 Bump org.apache.maven:maven-core No new revisions were added by this update.
(maven) branch master updated: [MNG-8362] Adding some missing config properties (#1861)
This is an automated email from the ASF dual-hosted git repository. cstamas pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git The following commit(s) were added to refs/heads/master by this push: new dfd5ec5f85 [MNG-8362] Adding some missing config properties (#1861) dfd5ec5f85 is described below commit dfd5ec5f85710a3242072704230719020903fa7c Author: Tamas Cservenak AuthorDate: Tue Nov 5 17:06:57 2024 +0100 [MNG-8362] Adding some missing config properties (#1861) To have them listed in generated docs, as they were forgotten. Also, adding a "compat" support for Maven 3.9.x property for chained reposes. --- https://issues.apache.org/jira/browse/MNG-8362 --- .../main/java/org/apache/maven/api/Constants.java | 36 ++- .../DefaultRepositorySystemSessionFactory.java | 7 + .../impl/resolver/DefaultVersionResolver.java | 3 +- .../resolver/RemoteSnapshotMetadataGenerator.java | 3 +- src/site/markdown/configuration.properties | 256 +++-- src/site/markdown/configuration.yaml | 20 +- src/site/markdown/maven-configuration.md | 75 +++--- 7 files changed, 241 insertions(+), 159 deletions(-) diff --git a/api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java b/api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java index 6e1f4fa7ad..fa53331b95 100644 --- a/api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java +++ b/api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java @@ -312,7 +312,7 @@ public final class Constants { /** * User property for chained LRM: list of "tail" local repository paths (separated by comma), to be used with - * {@code org.eclipse.aether.util.repository.ChainedLocalRepositoryManager}. + * org.eclipse.aether.util.repository.ChainedLocalRepositoryManager. * Default value: null, no chained LRM is used. * * @since 3.9.0 @@ -320,6 +320,17 @@ public final class Constants { @Config public static final String MAVEN_REPO_LOCAL_TAIL = "maven.repo.local.tail"; +/** + * User property for chained LRM: whether to ignore "availability check" in tail or not. Usually you do want + * to ignore it. This property is mapped onto corresponding Resolver 2.x property, is like a synonym for it. + * Default value: true. + * + * @since 3.9.0 + * @see https://maven.apache.org/resolver/configuration.html";>Resolver Configuration: aether.chainedLocalRepository.ignoreTailAvailability + */ +@Config +public static final String MAVEN_REPO_LOCAL_TAIL_IGNORE_AVAILABILITY = "maven.repo.local.tail.ignoreAvailability"; + /** * User property for reverse dependency tree. If enabled, Maven will record ".tracking" directory into local * repository with "reverse dependency tree", essentially explaining WHY given artifact is present in local @@ -386,5 +397,28 @@ public final class Constants { @Config(type = "java.lang.Boolean", defaultValue = "true") public static final String MAVEN_CONSUMER_POM = "maven.consumer.pom"; +/** + * User property for disabling version resolver cache. + * + * @since 3.0.0 + */ +@Config(type = "java.lang.Boolean", defaultValue = "false") +public static final String MAVEN_VERSION_RESOLVER_NO_CACHE = "maven.versionResolver.noCache"; + +/** + * User property for overriding calculated "build number" for snapshot deploys. Caution: this property should + * be RARELY used (if used at all). It may help in special cases like "aligning" a reactor build subprojects + * build numbers to perform a "snapshot lock down". Value given here must be maxRemoteBuildNumber + 1 + * or greater, otherwise build will fail. How the number to be obtained is left to user (ie by inspecting + * snapshot repository metadata or alike). + * + * Note: this feature is present in Maven 3.9.7 but with different key: maven.buildNumber. In Maven 4 + * as part of cleanup effort this key was renamed to properly reflect its purpose. + * + * @since 4.0.0 + */ +@Config(type = "java.lang.Integer") +public static final String MAVEN_DEPLOY_SNAPSHOT_BUILD_NUMBER = "maven.deploy.snapshot.buildNumber"; + private Constants() {} } diff --git a/impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java b/impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java index 9c214a5da4..9e1ad6501e 100644 --- a/impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java +++ b/impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java @@ -69,6 +69,7 @@ import org.eclipse.aether.util.graph.version.LowestVersionFilter; import org.eclipse.aether.uti
(maven) branch dependabot/maven/its/core-it-support/core-it-plugins/maven-it-plugin-ant-based/org.apache.ant-ant-1.9.16 created (now 13609c3e6f)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/its/core-it-support/core-it-plugins/maven-it-plugin-ant-based/org.apache.ant-ant-1.9.16 in repository https://gitbox.apache.org/repos/asf/maven.git at 13609c3e6f Bump org.apache.ant:ant No new revisions were added by this update.
(maven) branch master updated: [MNG-8365] Bump net.bytebuddy:byte-buddy from 1.15.7 to 1.15.10 (#1863)
This is an automated email from the ASF dual-hosted git repository. cstamas pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git The following commit(s) were added to refs/heads/master by this push: new 39eed0cad5 [MNG-8365] Bump net.bytebuddy:byte-buddy from 1.15.7 to 1.15.10 (#1863) 39eed0cad5 is described below commit 39eed0cad5ae3243681d23f98ab76b6aab44aece Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Tue Nov 5 15:47:03 2024 +0100 [MNG-8365] Bump net.bytebuddy:byte-buddy from 1.15.7 to 1.15.10 (#1863) Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.7 to 1.15.10. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.7...byte-buddy-1.15.10) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- https://issues.apache.org/jira/browse/MNG-8365 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4bfab58949..7032bda00c 100644 --- a/pom.xml +++ b/pom.xml @@ -144,7 +144,7 @@ under the License. 3.26.3 9.7.1 -1.15.7 +1.15.10 2.8.0 1.9.0 6.0.0
(maven) branch dependabot/maven/net.bytebuddy-byte-buddy-1.15.10 deleted (was 11e14a8222)
This is an automated email from the ASF dual-hosted git repository. cstamas pushed a change to branch dependabot/maven/net.bytebuddy-byte-buddy-1.15.10 in repository https://gitbox.apache.org/repos/asf/maven.git was 11e14a8222 Bump net.bytebuddy:byte-buddy from 1.15.7 to 1.15.10 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(maven) branch master updated: [MNG-8366] Bump ch.qos.logback:logback-classic from 1.5.11 to 1.5.12 (#1859)
This is an automated email from the ASF dual-hosted git repository. cstamas pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git The following commit(s) were added to refs/heads/master by this push: new 32e67f83c2 [MNG-8366] Bump ch.qos.logback:logback-classic from 1.5.11 to 1.5.12 (#1859) 32e67f83c2 is described below commit 32e67f83c2227d603fb42080e78767c1c2424265 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Tue Nov 5 15:48:04 2024 +0100 [MNG-8366] Bump ch.qos.logback:logback-classic from 1.5.11 to 1.5.12 (#1859) Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.11 to 1.5.12. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.11...v_1.5.12) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- https://issues.apache.org/jira/browse/MNG-8366 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7032bda00c..471f3162a7 100644 --- a/pom.xml +++ b/pom.xml @@ -156,7 +156,7 @@ under the License. 3.27.1 5.11.3 1.3 -1.5.11 +1.5.12 5.14.2 1.3 1.27
(maven) branch dependabot/maven/ch.qos.logback-logback-classic-1.5.12 deleted (was aba36c086d)
This is an automated email from the ASF dual-hosted git repository. cstamas pushed a change to branch dependabot/maven/ch.qos.logback-logback-classic-1.5.12 in repository https://gitbox.apache.org/repos/asf/maven.git was aba36c086d Bump ch.qos.logback:logback-classic from 1.5.11 to 1.5.12 The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(maven-integration-testing) branch maven-4.x created (now 96c6121a2)
This is an automated email from the ASF dual-hosted git repository. gnodet pushed a change to branch maven-4.x in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git at 96c6121a2 [MNG-8347] Additional tests (#398) No new revisions were added by this update.
(maven) branch merge-its updated (e333646392 -> 9d580a3013)
This is an automated email from the ASF dual-hosted git repository. gnodet pushed a change to branch merge-its in repository https://gitbox.apache.org/repos/asf/maven.git from e333646392 Integrate into maven's build add 54349cbc8a Disable graph on windows new 9d580a3013 Simplify hocon IT to not rely on a complex parent POM The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/maven/it/MavenITmng7836AlternativePomSyntaxTest.java| 5 ++--- .../resources/mng-7836-alternative-pom-syntax/simple/pom.hocon | 5 - pom.xml| 7 +++ 3 files changed, 5 insertions(+), 12 deletions(-)
(maven) 01/01: Simplify hocon IT to not rely on a complex parent POM
This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch merge-its in repository https://gitbox.apache.org/repos/asf/maven.git commit 9d580a30134c5f67d8cfb474275af02008048976 Author: Guillaume Nodet AuthorDate: Tue Nov 5 10:14:21 2024 +0100 Simplify hocon IT to not rely on a complex parent POM --- .../org/apache/maven/it/MavenITmng7836AlternativePomSyntaxTest.java | 5 ++--- .../test/resources/mng-7836-alternative-pom-syntax/simple/pom.hocon | 5 - 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7836AlternativePomSyntaxTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7836AlternativePomSyntaxTest.java index 67d9f49020..9c00356e7b 100644 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7836AlternativePomSyntaxTest.java +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7836AlternativePomSyntaxTest.java @@ -64,12 +64,11 @@ class MavenITmng7836AlternativePomSyntaxTest extends AbstractMavenIntegrationTes assertTrue(Files.isRegularFile(consumerPom)); List consumerPomLines = Files.readAllLines(consumerPom, StandardCharsets.UTF_8); -assertTrue(consumerPomLines.stream().anyMatch(l -> l.contains("Apache-2.0"))); -assertFalse(consumerPomLines.stream().anyMatch(l -> l.contains(""))); +assertTrue(consumerPomLines.stream().anyMatch(l -> l.contains("hocon-simple"))); // The build pom is the original POM, so the hocon file assertTrue(Files.isRegularFile(buildPom)); List buildPomLines = Files.readAllLines(buildPom, StandardCharsets.UTF_8); -assertTrue(buildPomLines.stream().anyMatch(l -> l.contains("groupId = org.apache.maven.extensions"))); +assertTrue(buildPomLines.stream().anyMatch(l -> l.contains("artifactId = hocon-simple"))); } } diff --git a/its/core-it-suite/src/test/resources/mng-7836-alternative-pom-syntax/simple/pom.hocon b/its/core-it-suite/src/test/resources/mng-7836-alternative-pom-syntax/simple/pom.hocon index 69c190e917..4a7f1970fd 100644 --- a/its/core-it-suite/src/test/resources/mng-7836-alternative-pom-syntax/simple/pom.hocon +++ b/its/core-it-suite/src/test/resources/mng-7836-alternative-pom-syntax/simple/pom.hocon @@ -17,11 +17,6 @@ # under the License. # modelVersion = 4.0.0 -parent { -groupId = org.apache.maven.extensions -artifactId = maven-extensions -version = 41 -} groupId = org.apache.maven.its.mng-7836 artifactId = hocon-simple version = 1.0.0-SNAPSHOT
(maven) branch merge-its deleted (was 9d580a3013)
This is an automated email from the ASF dual-hosted git repository. gnodet pushed a change to branch merge-its in repository https://gitbox.apache.org/repos/asf/maven.git was 9d580a3013 Simplify hocon IT to not rely on a complex parent POM The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(maven-fluido-skin) 01/02: [MSKINS-256] Use new site model in documentation
This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch new-site-model in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git commit da710d3a5d75494e7d17e724e34b022d12116a69 Author: Michael Osipov AuthorDate: Tue Nov 5 09:52:55 2024 +0100 [MSKINS-256] Use new site model in documentation --- src/site/apt/index.apt.vm | 105 +++--- src/site/site.xml | 6 +-- 2 files changed, 66 insertions(+), 45 deletions(-) diff --git a/src/site/apt/index.apt.vm b/src/site/apt/index.apt.vm index ca2b836..a026767 100644 --- a/src/site/apt/index.apt.vm +++ b/src/site/apt/index.apt.vm @@ -46,7 +46,8 @@ Welcome to ${project.name}! {{{/doxia/doxia-sitetools/doxia-site-model/site.html#class_skin}the <<>> site descriptor}}: +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] ${project.groupId} @@ -54,7 +55,7 @@ Welcome to ${project.name}! ${project.version} [...] - + +-+ @@ -68,7 +69,8 @@ Welcome to ${project.name}! Users have just play with flags in the <<>> element in <<>>: +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -77,7 +79,7 @@ Welcome to ${project.name}! [...] - + +-+ That allows users having 4 skins in only 1! @@ -100,7 +102,8 @@ Welcome to ${project.name}! the <<>> element in <<>>: +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -114,7 +117,7 @@ Welcome to ${project.name}! [...] - + +-+ ** {Topbar Container Style} @@ -122,7 +125,8 @@ Welcome to ${project.name}! You can configure the style attribute value of the div container for your topbar +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -131,7 +135,7 @@ Welcome to ${project.name}! [...] - + +-+ ** {Navbar Style} @@ -140,7 +144,8 @@ Welcome to ${project.name}! Use navbar-inverse to have the black one. +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -149,7 +154,7 @@ Welcome to ${project.name}! [...] - + +-+ ** {Configuring column class} @@ -159,7 +164,8 @@ Welcome to ${project.name}! You can change that using: +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -168,7 +174,7 @@ Welcome to ${project.name}! [...] - + +-+ ** {Matomo (e.g. Apache Analytics)} @@ -177,7 +183,8 @@ Welcome to ${project.name}! How to configure it for Apache Analytics, the <> element will contain some configuration (here some privacy setup): +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -191,7 +198,7 @@ Welcome to ${project.name}! [...] - + +-+ ** {Google Analytics} @@ -199,7 +206,8 @@ Welcome to ${project.name}! Users can optionally enable <> for the generated site: +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -209,13 +217,14 @@ Welcome to ${project.name}! [...] - + +-+ By default, <<>> and <<>> are enabled. You can disable both, but this might be illegal in several countries or regions (e.g., in the EU due to GDPR): +-+ - +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd";> [...] @@ -227,7 +236,7 @@ Welcome to ${project.name}! [...] - + +-+ ** {Google Search} @@ -237,17 +246,19 @@ Welcome to ${project.name}! * the <<>> property in <<>>, unless the <<>> property is set in the <<>>: +-+ - +http://maven.apache.org/SITE/2.0.
(maven-fluido-skin) branch new-site-model created (now b9c5358)
This is an automated email from the ASF dual-hosted git repository. michaelo pushed a change to branch new-site-model in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git at b9c5358 [MSKINS-257] Use new site model in ITs This branch includes the following new commits: new da710d3 [MSKINS-256] Use new site model in documentation new b9c5358 [MSKINS-257] Use new site model in ITs The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
(maven-fluido-skin) 02/02: [MSKINS-257] Use new site model in ITs
This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch new-site-model in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git commit b9c5358e24d03c7731e80e5b5b199e5f816f42d1 Author: Michael Osipov AuthorDate: Tue Nov 5 10:17:17 2024 +0100 [MSKINS-257] Use new site model in ITs --- src/it/mskins-10/src/site/site.xml | 6 ++-- src/it/mskins-107/src/site/site.xml| 6 ++-- src/it/mskins-13/src/site/site.xml | 6 ++-- src/it/mskins-14/src/site/site.xml | 6 ++-- src/it/mskins-143_default/src/site/site.xml| 6 ++-- src/it/mskins-143_false/src/site/site.xml | 6 ++-- src/it/mskins-143_true/src/site/site.xml | 6 ++-- src/it/mskins-14_sitesearch/src/site/site.xml | 6 ++-- src/it/mskins-15/src/site/site.xml | 6 ++-- src/it/mskins-16/src/site/site.xml | 22 +- .../sidebar-fb-like-share/src/site/site.xml| 8 ++--- .../sidebar-fb-recommend-share/src/site/site.xml | 8 ++--- .../topbar-fb-like-share/src/site/site.xml | 8 ++--- .../topbar-fb-recommend-share/src/site/site.xml| 8 ++--- src/it/mskins-17/src/site/site.xml | 6 ++-- src/it/mskins-174/src/site/site.xml| 6 ++-- .../mskins-177-apache-analytics/src/site/site.xml | 6 ++-- .../mskins-177-matomo-no-options/src/site/site.xml | 6 ++-- src/it/mskins-21/src/site/site.xml | 6 ++-- src/it/mskins-22/src/site/site.xml | 6 ++-- src/it/mskins-222/src/site/site.xml| 28 +++--- .../src/site/site.xml | 6 ++-- .../mskins-226-anchorjs-options/src/site/site.xml | 6 ++-- src/it/mskins-22_default/src/site/site.xml | 6 ++-- src/it/mskins-22_topbar/src/site/site.xml | 6 ++-- src/it/mskins-23/src/site/site.xml | 6 ++-- src/it/mskins-24/src/site/site.xml | 6 ++-- src/it/mskins-24_topbar/src/site/site.xml | 6 ++-- src/it/mskins-28/src/site/site.xml | 34 +++--- src/it/mskins-31/src/site/apt/site.xml | 6 ++-- src/it/mskins-31/src/site/site.xml | 6 ++-- src/it/mskins-33/src/site/site.xml | 6 ++-- src/it/mskins-33_topbar/src/site/site.xml | 6 ++-- src/it/mskins-41/src/site/site.xml | 6 ++-- src/it/mskins-47/src/site/site.xml | 6 ++-- src/it/mskins-72/src/site/site.xml | 6 ++-- src/it/mskins-85/src/site/site.xml | 6 ++-- src/it/sidebar/src/site/site.xml | 6 ++-- src/it/topbar-inverse/src/site/site.xml| 6 ++-- src/it/topbar/src/site/site.xml| 6 ++-- 40 files changed, 155 insertions(+), 159 deletions(-) diff --git a/src/it/mskins-10/src/site/site.xml b/src/it/mskins-10/src/site/site.xml index 3660fe4..bee6bfc 100644 --- a/src/it/mskins-10/src/site/site.xml +++ b/src/it/mskins-10/src/site/site.xml @@ -21,8 +21,8 @@ */ --> -http://maven.apache.org/DECORATION/1.1.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; - xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 http://maven.apache.org/xsd/decoration-1.1.0.xsd"; +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd"; name="${skinName}"> @@ -48,4 +48,4 @@ - \ No newline at end of file + diff --git a/src/it/mskins-107/src/site/site.xml b/src/it/mskins-107/src/site/site.xml index ac36fb8..477832d 100644 --- a/src/it/mskins-107/src/site/site.xml +++ b/src/it/mskins-107/src/site/site.xml @@ -21,8 +21,8 @@ */ --> -http://maven.apache.org/DECORATION/1.1.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; - xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 http://maven.apache.org/xsd/decoration-1.1.0.xsd"; +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd"; name="${skinName}"> @@ -37,4 +37,4 @@ https://maven.apache.org/skins/maven-fluido-skin/ITs.html"; /> - \ No newline at end of file + diff --git a/src/it/mskins-13/src/site/site.xml b/src/it/mskins-13/src/site/site.xml index b2277c4..26d83f7 100644 --- a/src/it/mskins-13/src/site/site.xml +++ b/src/it/mskins-13/src/site/site.xml @@ -21,8 +21,8 @@ */ --> -http://maven.apache.org/DECORATION/1.1.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; - xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 http://maven.apache.org/xsd/decoration-1.1.0.xsd"; +http://maven.apache.org/SITE/2.0.0"; xmlns:xsi="http://www.w3.org/2001
(maven-fluido-skin) branch master updated (8818948 -> b9c5358)
This is an automated email from the ASF dual-hosted git repository. michaelo pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git from 8818948 [maven-release-plugin] prepare for next development iteration add da710d3 [MSKINS-256] Use new site model in documentation add b9c5358 [MSKINS-257] Use new site model in ITs No new revisions were added by this update. Summary of changes: src/it/mskins-10/src/site/site.xml | 6 +- src/it/mskins-107/src/site/site.xml| 6 +- src/it/mskins-13/src/site/site.xml | 6 +- src/it/mskins-14/src/site/site.xml | 6 +- src/it/mskins-143_default/src/site/site.xml| 6 +- src/it/mskins-143_false/src/site/site.xml | 6 +- src/it/mskins-143_true/src/site/site.xml | 6 +- src/it/mskins-14_sitesearch/src/site/site.xml | 6 +- src/it/mskins-15/src/site/site.xml | 6 +- src/it/mskins-16/src/site/site.xml | 22 ++--- .../sidebar-fb-like-share/src/site/site.xml| 8 +- .../sidebar-fb-recommend-share/src/site/site.xml | 8 +- .../topbar-fb-like-share/src/site/site.xml | 8 +- .../topbar-fb-recommend-share/src/site/site.xml| 8 +- src/it/mskins-17/src/site/site.xml | 6 +- src/it/mskins-174/src/site/site.xml| 6 +- .../mskins-177-apache-analytics/src/site/site.xml | 6 +- .../mskins-177-matomo-no-options/src/site/site.xml | 6 +- src/it/mskins-21/src/site/site.xml | 6 +- src/it/mskins-22/src/site/site.xml | 6 +- src/it/mskins-222/src/site/site.xml| 28 ++ .../src/site/site.xml | 6 +- .../mskins-226-anchorjs-options/src/site/site.xml | 6 +- src/it/mskins-22_default/src/site/site.xml | 6 +- src/it/mskins-22_topbar/src/site/site.xml | 6 +- src/it/mskins-23/src/site/site.xml | 6 +- src/it/mskins-24/src/site/site.xml | 6 +- src/it/mskins-24_topbar/src/site/site.xml | 6 +- src/it/mskins-28/src/site/site.xml | 34 --- src/it/mskins-31/src/site/apt/site.xml | 6 +- src/it/mskins-31/src/site/site.xml | 6 +- src/it/mskins-33/src/site/site.xml | 6 +- src/it/mskins-33_topbar/src/site/site.xml | 6 +- src/it/mskins-41/src/site/site.xml | 6 +- src/it/mskins-47/src/site/site.xml | 6 +- src/it/mskins-72/src/site/site.xml | 6 +- src/it/mskins-85/src/site/site.xml | 6 +- src/it/sidebar/src/site/site.xml | 6 +- src/it/topbar-inverse/src/site/site.xml| 6 +- src/it/topbar/src/site/site.xml| 6 +- src/site/apt/index.apt.vm | 105 - src/site/site.xml | 6 +- 42 files changed, 221 insertions(+), 204 deletions(-)
(maven-fluido-skin) branch new-site-model deleted (was b9c5358)
This is an automated email from the ASF dual-hosted git repository. michaelo pushed a change to branch new-site-model in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git was b9c5358 [MSKINS-257] Use new site model in ITs The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
svn commit: r72808 - /release/maven/skins/
Author: michaelo Date: Tue Nov 5 18:32:00 2024 New Revision: 72808 Log: Maven Fluido Skin 2.0.0 released Added: release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip (with props) release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.asc release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.sha512 Removed: release/maven/skins/maven-fluido-skin-2.0.0-M11-source-release.zip release/maven/skins/maven-fluido-skin-2.0.0-M11-source-release.zip.asc release/maven/skins/maven-fluido-skin-2.0.0-M11-source-release.zip.sha512 Added: release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip == Binary file - no diff available. Propchange: release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip -- svn:mime-type = application/octet-stream Added: release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.asc == --- release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.asc (added) +++ release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.asc Tue Nov 5 18:32:00 2024 @@ -0,0 +1,11 @@ +-BEGIN PGP SIGNATURE- + +iQEzBAABCgAdFiEEaoFLH4acK76rfLcnGioclL3ologFAmcmi8YACgkQGioclL3o +logNmAgAravOHPd4pXVJdsEF4fwXw3x+hHt007vfFWdeSBYwBNtBY2P2CfOozhJ5 +uzMbMIcik5gxZz1mwDFp36iZmzWDFrC+0plEXSzd+Xj5fmT2rsJ8TXDjuAE7VjVu +O1UpvVcdw4jwzHPKddERL50dlcbaxnft3ZdZdU0/5SopueTgEtbQzVK07ZhoLG5l +Pds77s6fauFChNayVLeP+rf55AF+67GdCRhg8yt27dnws4UNApMO8g52FPLJ2D7a +oYnNrla9GV/l/mGdBIpV70BySVFlW5Yc7otS9D7IvJ37jp8AbwV8b8cPjIbxSrQA +CS70IY0NfbMM9tCOYgriWT1LmXTuHg== +=Q8Ly +-END PGP SIGNATURE- Added: release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.sha512 == --- release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.sha512 (added) +++ release/maven/skins/maven-fluido-skin-2.0.0-source-release.zip.sha512 Tue Nov 5 18:32:00 2024 @@ -0,0 +1 @@ +47c729759b80d9f54180ac81670be51ef1a31b745427ad159bf419cc8f71c863575663fe16f894186dacebe256816e2d974a428f6c6a44eab5604cf5a197e4bd \ No newline at end of file
(maven-parent) branch doxia2 updated (787d288 -> 78581fa)
This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a change to branch doxia2 in repository https://gitbox.apache.org/repos/asf/maven-parent.git discard 787d288 Upgrade plugin versions to migrate to Doxia 2 new 78581fa Upgrade plugin versions to migrate to Doxia 2 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (787d288) \ N -- N -- N refs/heads/doxia2 (78581fa) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
(maven-parent) 01/01: Upgrade plugin versions to migrate to Doxia 2
This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch doxia2 in repository https://gitbox.apache.org/repos/asf/maven-parent.git commit 78581faada206fe564536c481893ccca403684a8 Author: Sylwester Lachiewicz AuthorDate: Sun Nov 3 21:31:38 2024 +0100 Upgrade plugin versions to migrate to Doxia 2 --- pom.xml | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3369c1d..efa503c 100644 --- a/pom.xml +++ b/pom.xml @@ -958,9 +958,18 @@ under the License. 3.0.1 5.10.3 -1.12.0 6 2024-07-04T20:44:45Z + + +3.15.0 +3.10.1 +3.8.1 +3.5.1 +3.21.0 +2.0.0 +3.5.1 + 3.8.0
(maven-filtering) branch master updated: (ci) switch to Maven 4.0.0-beta-5
This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-filtering.git The following commit(s) were added to refs/heads/master by this push: new dc02934 (ci) switch to Maven 4.0.0-beta-5 dc02934 is described below commit dc029340978b7db07629d7bf5bebd695364e695e Author: Sylwester Lachiewicz AuthorDate: Tue Nov 5 23:45:16 2024 +0100 (ci) switch to Maven 4.0.0-beta-5 --- .github/workflows/maven-verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 7487c0a..875ad52 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -26,8 +26,8 @@ jobs: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4 with: - ff-maven: "4.0.0-beta-4" # Maven version for fail-fast-build - maven-matrix: '[ "4.0.0-beta-4" ]' + ff-maven: "4.0.0-beta-5" # Maven version for fail-fast-build + maven-matrix: '[ "4.0.0-beta-5" ]' maven4-enabled: true jdk-matrix: '[ "17", "21", "23" ]' ff-goal: verify
(maven-filtering) branch dependabot/maven/mavenVersion-4.0.0-beta-5 updated (d9cf286 -> 4b9378c)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/mavenVersion-4.0.0-beta-5 in repository https://gitbox.apache.org/repos/asf/maven-filtering.git discard d9cf286 Bump mavenVersion from 4.0.0-beta-3 to 4.0.0-beta-5 add dc02934 (ci) switch to Maven 4.0.0-beta-5 add 4b9378c Bump mavenVersion from 4.0.0-beta-3 to 4.0.0-beta-5 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (d9cf286) \ N -- N -- N refs/heads/dependabot/maven/mavenVersion-4.0.0-beta-5 (4b9378c) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .github/workflows/maven-verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
(maven) branch dependabot/maven/org.apache.maven-maven-archiver-3.6.3 created (now 695f0d89bc)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.apache.maven-maven-archiver-3.6.3 in repository https://gitbox.apache.org/repos/asf/maven.git at 695f0d89bc Bump org.apache.maven:maven-archiver from 3.6.0 to 3.6.3 No new revisions were added by this update.
(maven) branch dependabot/maven/org.apache.maven.reporting-maven-reporting-api-4.0.0 created (now 2142ded863)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.apache.maven.reporting-maven-reporting-api-4.0.0 in repository https://gitbox.apache.org/repos/asf/maven.git at 2142ded863 Bump org.apache.maven.reporting:maven-reporting-api from 3.1.0 to 4.0.0 No new revisions were added by this update.
(maven) branch dependabot/maven/org.apache.maven.plugins-maven-scm-publish-plugin-3.3.0 created (now 6029ae37b2)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.apache.maven.plugins-maven-scm-publish-plugin-3.3.0 in repository https://gitbox.apache.org/repos/asf/maven.git at 6029ae37b2 Bump org.apache.maven.plugins:maven-scm-publish-plugin from 1.1 to 3.3.0 No new revisions were added by this update.
(maven) branch dependabot/maven/org.ow2.asm-asm-9.7.1 created (now 08668d025f)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.ow2.asm-asm-9.7.1 in repository https://gitbox.apache.org/repos/asf/maven.git at 08668d025f Bump org.ow2.asm:asm from 7.3.1 to 9.7.1 No new revisions were added by this update.
(maven) branch dependabot/maven/org.codehaus.plexus-plexus-component-annotations-2.2.0 created (now f4839448bb)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.codehaus.plexus-plexus-component-annotations-2.2.0 in repository https://gitbox.apache.org/repos/asf/maven.git at f4839448bb Bump org.codehaus.plexus:plexus-component-annotations No new revisions were added by this update.
(maven-site) branch master updated: Update Maven Fluido Skin version
This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-site.git The following commit(s) were added to refs/heads/master by this push: new e225ba9c Update Maven Fluido Skin version e225ba9c is described below commit e225ba9c417830bea36e03285ec52f8330790d07 Author: Michael Osipov AuthorDate: Wed Nov 6 08:58:38 2024 +0100 Update Maven Fluido Skin version --- content/apt/skins/index.apt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/apt/skins/index.apt b/content/apt/skins/index.apt index a6eaff50..3f22f4af 100644 --- a/content/apt/skins/index.apt +++ b/content/apt/skins/index.apt @@ -38,7 +38,7 @@ Available Skins *---+--+--+--+++ || <> || <> || Site Plugin Version || <> || <> || <> *---+--+--+--+++ -| {{{/skins/maven-fluido-skin/} <<>>}} | 2.0.0-M11| [3.20.0,)| Skin based on Bootstrap CSS. | {{{http://gitbox.apache.org/repos/asf/maven-fluido-skin.git}Git}} / {{{https://github.com/apache/maven-fluido-skin/}GitHub}} | {{{https://issues.apache.org/jira/issues/?jql=project = MSKINS AND status != Closed AND component = "Fluido+Skin"}JIRA}} +| {{{/skins/maven-fluido-skin/} <<>>}} | 2.0.0 | [3.21.0,)| Skin based on Bootstrap CSS. | {{{http://gitbox.apache.org/repos/asf/maven-fluido-skin.git}Git}} / {{{https://github.com/apache/maven-fluido-skin/}GitHub}} | {{{https://issues.apache.org/jira/issues/?jql=project = MSKINS AND status != Closed AND component = "Fluido+Skin"}JIRA}} *---+--+--+--+++ | {{{/skins/maven-fluido-skin/} <<>>}} | 1.12.0 | [3.10.0,3.20.0) | Skin based on Bootstrap CSS. | {{{http://gitbox.apache.org/repos/asf/maven-fluido-skin.git/}Git}} / {{{https://github.com/apache/maven-fluido-skin/}GitHub}} | {{{https://issues.apache.org/jira/issues/?jql=project = MSKINS AND status != Closed AND component = "Fluido+Skin"}JIRA}} *---+--+--+--+++