diff --git a/OWNERS b/OWNERS index bdce0e97..9482c2f3 100644 --- a/OWNERS +++ b/OWNERS @@ -1,6 +1,7 @@ approvers: - shaowenchen + - linuxsuren reviewers: - runzexia #oncall - - shaowenchen \ No newline at end of file + - shaowenchen diff --git a/README.md b/README.md index 6b0d1fd8..5c57041d 100644 --- a/README.md +++ b/README.md @@ -1,175 +1,18 @@ -## 基于springboot构建流水线示例项目 +> **_NOTICE:_** Give [some historic reasons](https://github.com/kubesphere/devops-java-sample/issues/76), this repo has been archived. Please move forward to [devops-maven-sample](https://github.com/kubesphere/devops-maven-sample) if you want to help us improve the sample project. -Jenkinsfile in SCM 意为将 Jenkinsfile 文件本身作为源代码管理 (Source Control Management) 的一部分,根据该文件内的流水线配置信息快速构建工程内的 CI/CD 功能模块,比如阶段 (Stage),步骤 (Step) 和任务 (Job)。因此,在代码仓库中包含 Jenkinsfile。 -## 项目介绍 +## Repo Introduction -#### 本项目为kubesphere 基于springboot构建流水线示例项目,具体参见kubesphere [V2.1教程](https://v2-1.docs.kubesphere.io/docs/zh-CN/quick-start/devops-online/),[V3.0教程](https://kubesphere.com.cn/docs/devops-user-guide/how-to-use/create-a-pipeline-using-jenkinsfile/) +> English | [中文](README_zh.md) -项目中包含**Jenkinsfile in SCM** :Jenkinsfile-online文件(Jenkinsfile in SCM 意为将 Jenkinsfile 文件本身作为源代码管理 (Source Control Management) 的一部分),kubesphere 内置Jenkins容器,**Jenkins**可以根据该文件内的流水线配置信息快速构建工程内的 CI/CD 功能模块,比如阶段 (Stage),步骤 (Step) 和任务 (Job)。 +KubeSphere provides a Jenkins-based DevOps system [with various features](https://kubesphere.io/docs/devops-user-guide/understand-and-manage-devops-projects/overview/#features). This repository is used for a SpringBoot demo for DevOps on KubeSphere. For example, you can find a file of `Jenkinsfile-online` in the root directory, and you can use it to create a pipeline through the **Jenkinsfile in SCM** method. - Jenkinsfile 来创建流水线,流水线共包括 8 个阶段,最终将演示示例部署到 KubeSphere 集群中的开发环境和生产环境且能够通过公网访问。 仓库中的 dependency 分支为缓存测试用例,测试方式与 master 分支类似,对 dependency 的多次构建可体现出利用缓存可以有效的提升构建速度。 +For more information about how to use the KubeSphere DevOps system, you can refer to the following list of KubeSphere official documents. -## 项目使用 +## Document List -* 项目完成fork后,根据教程修改 Jenkinsfile-online中的环境变量为您自己值。 +- [Create a Pipeline Using a Jenkinsfile](https://kubesphere.io/docs/devops-user-guide/how-to-use/create-a-pipeline-using-jenkinsfile/) +- [Create a Pipeline Using Graphical Editing Panels](https://kubesphere.io/docs/devops-user-guide/how-to-use/create-a-pipeline-using-graphical-editing-panel/) +- [Build and Deploy a Maven Project](https://kubesphere.io/docs/devops-user-guide/examples/a-maven-project/) +- [Source to Image: Publish an App without a Dockerfile](https://kubesphere.io/docs/project-user-guide/image-builder/source-to-image/) - - -* 根据教程,使用项目管理员 `project-admin`账号登录 KubeSphere,在之前创建的企业空间 (demo-workspace) 下,点击 **项目 → 创建**,创建两个 **资源型项目** `kubesphere-sample-dev` 、kubesphere-sample-prod - - * 名称:固定为 `kubesphere-sample-dev`,kubesphere-sample-prod,若需要修改项目名称则需在本项目中的 [[deploy/dev-ol/](deploy/dev-ol/)] 、 [[deploy/prod-ol/](deploy/prod-ol/)]中修改 namespace 属性 - - ## Jenkinsfile-online文件介绍 - - 考虑到初学者可能对Jenkins文件不熟悉,对此文件进行介绍,方便您理解我们的流水线做了什么. - - ``` yaml - pipeline { - agent { - node { - label 'maven' // 定义流水线的代理为 maven,kubesphere内置了四个默认代理,在目前版本当中我们内置了 4 种类型的 podTemplate,base、 // nodejs、maven、go,并且在 Pod 中提供了隔离的 Docker 环境。具体参见官方文档 - } - } - - parameters { - string(name:'TAG_NAME',defaultValue: '',description:'') //定义 流水线描述 - } - environment { //定义流水线环境变量 - DOCKER_CREDENTIAL_ID = 'dockerhub-id' - GITHUB_CREDENTIAL_ID = 'github-id' - KUBECONFIG_CREDENTIAL_ID = 'demo-kubeconfig' - REGISTRY = 'docker.io' - DOCKERHUB_NAMESPACE = 'docker_username' - GITHUB_ACCOUNT = 'kubesphere' - APP_NAME = 'devops-java-sample' - } - ``` - - **[Jenkins Agent 说明]( https://v2-1.docs.kubesphere.io/docs/zh-CN/devops/jenkins-agent/)** - - * **第一步**检出代码 - - ```yaml - stages { - stage ('checkout scm') { - steps { - checkout(scm) - } - } - ``` - - * **第二步** 执行单元测试 - - ```yaml - stage ('unit test') { - steps { - container ('maven') { - sh 'mvn clean -gs `pwd`/configuration/settings.xml test' - } - } - } - ``` - - * **第三步** 执行单元测试 - - ```yaml - stage('push latest'){ - when{ - branch 'master' - } - steps{ - container ('maven') { - sh 'docker tag $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:latest ' - sh 'docker push $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:latest ' - } - } - } - - ``` - - * **第四步** 编译并推送 - - ```yaml - stage ('build & push') { - steps { - container ('maven') { - sh 'mvn -Dmaven.test.skip=true -gs `pwd`/configuration/settings.xml clean package' - sh 'docker build -f Dockerfile-online -t $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER .' - withCredentials([usernamePassword(passwordVariable : 'DOCKER_PASSWORD' ,usernameVariable : 'DOCKER_USERNAME' ,credentialsId : "$DOCKER_CREDENTIAL_ID" ,)]) { - sh 'echo "$DOCKER_PASSWORD" | docker login $REGISTRY -u "$DOCKER_USERNAME" --password-stdin' - sh 'docker push $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER' - } - } - } - } - ``` - - * **第五步** 推送至docker hub latest版本 - - ```yaml - stage('push latest'){ - when{ - branch 'master' - } - steps{ - container ('maven') { - sh 'docker tag $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:latest ' - sh 'docker push $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:latest ' - } - } - } - - ``` - - * **第六步** 弹出审核确认,是否部署到开发环境 - - ```yaml - stage('deploy to dev') { - when{ - branch 'master' - } - steps { - input(id: 'deploy-to-dev', message: 'deploy to dev?') - kubernetesDeploy(configs: 'deploy/dev-ol/**', enableConfigSubstitution: true, kubeconfigId: "$KUBECONFIG_CREDENTIAL_ID") - } - } - stage('push with tag'){ - when{ - expression{ - return params.TAG_NAME =~ /v.*/ - } - } - steps { - container ('maven') { - input(id: 'release-image-with-tag', message: 'release image with tag?') - withCredentials([usernamePassword(credentialsId: "$GITHUB_CREDENTIAL_ID", passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME')]) { - sh 'git config --global user.email "kubesphere@yunify.com" ' - sh 'git config --global user.name "kubesphere" ' - sh 'git tag -a $TAG_NAME -m "$TAG_NAME" ' - sh 'git push http://$GIT_USERNAME:$GIT_PASSWORD@github.com/$GITHUB_ACCOUNT/devops-java-sample.git --tags --ipv4' - } - sh 'docker tag $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:$TAG_NAME ' - sh 'docker push $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:$TAG_NAME ' - } - } - } - ``` - - * **第七步** 部署到生产环境 - - ```yaml - stage('deploy to production') { - when{ - expression{ - return params.TAG_NAME =~ /v.*/ - } - } - steps { - input(id: 'deploy-to-production', message: 'deploy to production?') - kubernetesDeploy(configs: 'deploy/prod-ol/**', enableConfigSubstitution: true, kubeconfigId: "$KUBECONFIG_CREDENTIAL_ID") - } - } - ``` - - diff --git a/README_zh.md b/README_zh.md new file mode 100644 index 00000000..b467e28a --- /dev/null +++ b/README_zh.md @@ -0,0 +1,15 @@ +## 仓库简介 + +> [English](README.md) | 中文 + +KubeSphere 基于 Jenkins 提供的 DevOps 系统可以实现[多种功能](https://kubesphere.io/zh/docs/devops-user-guide/understand-and-manage-devops-projects/overview/#功能)。本仓库用来演示基于 SpringBoot 的 KubeSphere DevOps 功能。例如,您可以在根目录中找到 `Jenkinsfile-online` 文件,并将该文件用作 **SCM 中的 Jenkinsfile** 来创建流水线。 + +有关如何使用 KubeSphere DevOps 系统的更多信息,您可以参考下方的 KubeSphere 官方文档清单。 + +## 文档清单 + +- [使用 Jenkinsfile 创建流水线](https://kubesphere.io/zh/docs/devops-user-guide/how-to-use/create-a-pipeline-using-jenkinsfile/) +- [使用图形编辑面板创建流水线](https://kubesphere.io/zh/docs/devops-user-guide/how-to-use/create-a-pipeline-using-graphical-editing-panel/) +- [构建和部署 Maven 工程](https://kubesphere.io/zh/docs/devops-user-guide/examples/a-maven-project/) +- [Source to Image:无需 Dockerfile 发布应用](https://kubesphere.io/zh/docs/project-user-guide/image-builder/source-to-image/) + diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/_remote.repositories b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/_remote.repositories new file mode 100644 index 00000000..bc6fc55f --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +logback-classic-1.2.3.jar>repo.jenkins-ci.org= +logback-classic-1.2.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar new file mode 100644 index 00000000..bed00c0a Binary files /dev/null and b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar differ diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar.sha1 b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar.sha1 new file mode 100644 index 00000000..c852c25f --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar.sha1 @@ -0,0 +1 @@ +7c4f3c474fb2c041d8028740440937705ebb473a \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom new file mode 100644 index 00000000..139f5114 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom @@ -0,0 +1,404 @@ + + + + 4.0.0 + + + ch.qos.logback + logback-parent + 1.2.3 + + + logback-classic + jar + Logback Classic Module + logback-classic module + + + + ch.qos.logback + logback-core + compile + + + org.slf4j + slf4j-api + ${slf4j.version} + compile + + + org.slf4j + slf4j-ext + ${slf4j.version} + test + + + + ch.qos.cal10n.plugins + maven-cal10n-plugin + ${cal10n.version} + test + + + + org.slf4j + slf4j-api + test-jar + ${slf4j.version} + test + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + test + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + test + + + + log4j + log4j + 1.2.17 + test + + + dom4j + dom4j + test + + + org.hsqldb + hsqldb + test + + + com.h2database + h2 + test + + + postgresql + postgresql + test + + + mysql + mysql-connector-java + test + + + javax.mail + mail + compile + true + + + org.codehaus.janino + janino + compile + true + + + org.codehaus.groovy + groovy-all + compile + true + + + ch.qos.logback + logback-core + test-jar + test + + + org.slf4j + integration + ${slf4j.version} + test + + + javax.servlet + javax.servlet-api + compile + true + + + com.icegreen + greenmail + 1.3 + test + + + org.subethamail + subethasmtp + 2.1.0 + test + + + org.slf4j + slf4j-api + + + + + org.apache.felix + org.apache.felix.main + 2.0.2 + test + + + + org.mockito + mockito-core + test + + + + + + + + src/main/groovy + + **/EvaluatorTemplate.groovy + **/*.groovy + + + + src/main/resources + + + + + + + org.codehaus.gmavenplus + gmavenplus-plugin + 1.5 + + + + generateStubs + compile + testGenerateStubs + testCompile + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + bundle-test-jar + package + + jar + test-jar + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.ant + ant-junit + 1.8.1 + + + junit + junit + ${junit.version} + + + + + + ant-osgi-test + package + + + + + + + + + + run + + + + + ant-integration-test + package + + + + + + + + run + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + 1C + false + plain + false + + **/AllClassicTest.java + **/PackageTest.java + **/TestConstants.java + **/test_osgi/BundleTest.java + **/ch/qos/logback/classic/util/InitializationIntegrationTest.java + + **/*PerfTest.java + + + + + + org.apache.felix + maven-bundle-plugin + true + + + bundle-manifest + process-classes + + manifest + + + + + + ch.qos.logback.classic*, org.slf4j.impl;version=${slf4j.version} + + + sun.reflect;resolution:=optional, + javax.*;resolution:=optional, + org.xml.*;resolution:=optional, + org.slf4j, + org.slf4j.event, + ch.qos.logback.core.rolling, + ch.qos.logback.core.rolling.helper, + ch.qos.logback.core.util, + ch.qos.logback.core.read, + org.codehaus.groovy.*;resolution:=optional, + groovy.lang.*;resolution:=optional, + * + + JavaSE-1.6 + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.codehaus.gmavenplus + gmavenplus-plugin + [1.5,) + + testGenerateStubs + generateStubs + testCompile + compile + + + + + + + + + + + + + + + + + + + host-orion + + + + com.microsoft.sqlserver + sqljdbc4 + 2.0 + test + + + + com.oracle + ojdbc14 + 10.2.0.1 + test + + + + + + + host-hora + + + + com.oracle + ojdbc14 + 10.2.0.1 + test + + + + + + diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom.sha1 b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom.sha1 new file mode 100644 index 00000000..dcf5bd68 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom.sha1 @@ -0,0 +1 @@ +bc627b0345626c9dfa55eac703602c3a7846950b \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.2.3/_remote.repositories b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/_remote.repositories new file mode 100644 index 00000000..5d7e9045 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +logback-core-1.2.3.jar>repo.jenkins-ci.org= +logback-core-1.2.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar new file mode 100644 index 00000000..487b3956 Binary files /dev/null and b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar differ diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar.sha1 b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar.sha1 new file mode 100644 index 00000000..8cc6c0aa --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar.sha1 @@ -0,0 +1 @@ +864344400c3d4d92dfeb0a305dc87d953677c03c \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom new file mode 100644 index 00000000..60dae6d9 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom @@ -0,0 +1,127 @@ + + + + 4.0.0 + + + ch.qos.logback + logback-parent + 1.2.3 + + + logback-core + jar + Logback Core Module + logback-core module + + + + org.codehaus.janino + janino + compile + true + + + org.fusesource.jansi + jansi + true + + + javax.mail + mail + compile + true + + + org.mockito + mockito-core + test + + + javax.servlet + javax.servlet-api + compile + true + + + joda-time + joda-time + test + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + 1C + true + classes + 20 + plain + false + + **/All*Test.java + **/PackageTest.java + + **/ConsoleAppenderTest.java + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + bundle-test-jar + package + + jar + test-jar + + + + + + org.apache.felix + maven-bundle-plugin + true + + + bundle-manifest + process-classes + + manifest + + + + + + ch.qos.logback.core.* + + javax.*;resolution:=optional, + org.xml.*;resolution:=optional, + org.fusesource.jansi;resolution:=optional, + org.codehaus.janino;resolution:=optional, + org.codehaus.commons.compiler;resolution:=optional, + * + + JavaSE-1.6 + + + + + + + + \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom.sha1 b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom.sha1 new file mode 100644 index 00000000..82071c33 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom.sha1 @@ -0,0 +1 @@ +a8d536fbd395b033310f686c4085eec5d6099b0f \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/_remote.repositories b/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/_remote.repositories new file mode 100644 index 00000000..253c58a2 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:36 CST 2021 +logback-parent-1.2.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom b/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom new file mode 100644 index 00000000..1ba8cbac --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom @@ -0,0 +1,554 @@ + + + + 4.0.0 + + ch.qos.logback + logback-parent + 1.2.3 + pom + + Logback-Parent + logback project pom.xml file + + http://logback.qos.ch + + + QOS.ch + http://www.qos.ch + + 2005 + + + + Eclipse Public License - v 1.0 + http://www.eclipse.org/legal/epl-v10.html + + + + GNU Lesser General Public License + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + + + + + https://github.com/ceki/logback + git@github.com:ceki/logback.git + + + + logback-core + logback-classic + logback-access + logback-site + logback-examples + + + + 1.6 + 1.6 + UTF-8 + 4.10 + 1.4 + 3.0.6 + 2.4.0 + + 1.7.25 + 0.8.1 + 1.1.0 + + 8.5.9 + + 8.2.0.v20160908 + + 1.9 + 2.10.4 + 2.7 + 3.0 + + + + + ceki + Ceki Gulcu + ceki@qos.ch + + + + hixi + Joern Huxhorn + huxi@undisclosed.org + + + + + + junit + junit + ${junit.version} + test + + + org.assertj + assertj-core + 1.7.1 + test + + + + + + + + ch.qos.logback + logback-core + ${project.version} + + + ch.qos.logback + logback-classic + ${project.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + ch.qos.logback + logback-access + ${project.version} + + + ch.qos.logback + logback-core + ${project.version} + test-jar + + + + + org.codehaus.janino + janino + ${janino.version} + + + org.codehaus.groovy + groovy-all + ${groovy.version} + + + org.fusesource.jansi + jansi + ${jansi.version} + + + javax.mail + mail + ${javax.mail.version} + + + dom4j + dom4j + 1.6.1 + + + org.hsqldb + hsqldb + 2.3.4 + + + com.h2database + h2 + 1.2.132 + + + postgresql + postgresql + 8.4-701.jdbc4 + + + mysql + mysql-connector-java + 5.1.9 + + + org.apache.tomcat + tomcat-catalina + ${tomcat.version} + + + org.apache.tomcat + tomcat-coyote + ${tomcat.version} + + + org.eclipse.jetty + jetty-server + ${jetty.version} + + + + javax.servlet + javax.servlet-api + 3.1.0 + + + + joda-time + joda-time + 2.9.2 + + + + org.mockito + mockito-core + 2.7.9 + + + + + + + + + org.apache.maven.wagon + wagon-ssh + 2.10 + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.0 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + + org.apache.maven.plugins + maven-jar-plugin + 2.6 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + + org.apache.maven.plugins + maven-dependency-plugin + 2.10 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + org.apache.felix + maven-bundle-plugin + 2.5.4 + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.15 + + + sun.reflect.Reflection + + + org.codehaus.mojo.signature + java16 + 1.0 + + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar + test-jar + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.0.0 + + + src/main/assembly/dist.xml + + logback-${project.version} + false + target/site/dist/ + + + + + org.codehaus.mojo + findbugs-maven-plugin + + High + + findbugs-exclude.xml + + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + true + target/site/apidocs/ + true + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + true + true + + + http://docs.oracle.com/javase/6/docs/api/ + + + + + Logback Core + ch.qos.logback.core:ch.qos.logback.core.* + + + + Logback Classic + + ch.qos.logback:ch.qos.logback.classic:ch.qos.logback.classic.* + + + + Logback Access + ch.qos.logback.access:ch.qos.logback.access.* + + + + SLF4J + org.slf4j:org.slf4j.* + + + Examples + chapter*:joran* + + + + + + + + + + + + + + + qos_ch + scp://te.qos.ch/var/www/logback.qos.ch/htdocs/ + + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + testSkip + + true + + + + license + + + + com.mycila + license-maven-plugin + ${maven-license-plugin.version} + +
src/main/licenseHeader.txt
+ false + true + true + + src/**/*.java + src/**/*.groovy + + true + true + + 1999 + + + src/main/javadocHeaders.xml + +
+
+
+
+
+ + + javadocjar + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + + attach-javadocs + + jar + test-jar + + + + + + + + + + sign-artifacts + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + + cobertura + + + + org.apache.maven.plugins + maven-site-plugin + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${cobertura.maven.plugin.version} + + + html + + true + + + + + + + + + + +
+ +
diff --git a/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom.sha1 b/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom.sha1 new file mode 100644 index 00000000..cb5eb266 --- /dev/null +++ b/artifacts/m2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom.sha1 @@ -0,0 +1 @@ +97bb391732b4500e61247d7fb261ff5b01efece3 \ No newline at end of file diff --git a/artifacts/m2/classmate-1.4.0.jar b/artifacts/m2/classmate-1.4.0.jar new file mode 100644 index 00000000..e53587e6 Binary files /dev/null and b/artifacts/m2/classmate-1.4.0.jar differ diff --git a/artifacts/m2/com/fasterxml/classmate/1.4.0/_remote.repositories b/artifacts/m2/com/fasterxml/classmate/1.4.0/_remote.repositories new file mode 100644 index 00000000..c39df26b --- /dev/null +++ b/artifacts/m2/com/fasterxml/classmate/1.4.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +classmate-1.4.0.jar>repo.jenkins-ci.org= +classmate-1.4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar new file mode 100644 index 00000000..e53587e6 Binary files /dev/null and b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar differ diff --git a/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar.sha1 b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar.sha1 new file mode 100644 index 00000000..b573be38 --- /dev/null +++ b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar.sha1 @@ -0,0 +1 @@ +291658ac2ce2476256c7115943652c0accb5c857 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom new file mode 100644 index 00000000..74a509f3 --- /dev/null +++ b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom @@ -0,0 +1,164 @@ + + 4.0.0 + + com.fasterxml + oss-parent + 24 + + classmate + ClassMate + 1.4.0 + bundle + Library for introspecting types with full generic information + including resolving of field and method types. + + http://github.com/FasterXML/java-classmate + + scm:git:git@github.com:FasterXML/java-classmate.git + scm:git:git@github.com:FasterXML/java-classmate.git + http://github.com/FasterXML/java-classmate + classmate-1.4.0 + + + + tatu + Tatu Saloranta + tatu@fasterxml.com + + + blangel + Brian Langel + blangel@ocheyedan.net + + + + + 2.2.1 + + + UTF-8 + 1.6 + + com.fasterxml.classmate;version=${project.version}, +com.fasterxml.classmate.*;version=${project.version} + + com.fasterxml.classmate.util.* + + com.fasterxml.classmate + + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + fasterxml.com + http://fasterxml.com + + + + + + junit + junit + 4.12 + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${jdk.module.name} + + + + + + maven-compiler-plugin + 3.2 + + ${version.jdk} + ${version.jdk} + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${version.jdk} + ${version.jdk} + UTF-8 + 512m + + http://docs.oracle.com/javase/8/docs/api/ + + + + + attach-javadocs + verify + + jar + + + + + + + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom.sha1 b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom.sha1 new file mode 100644 index 00000000..6086dcb0 --- /dev/null +++ b/artifacts/m2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom.sha1 @@ -0,0 +1 @@ +f9641af1bbf6a5a4bb147808cd225c10cc27cad9 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/_remote.repositories new file mode 100644 index 00000000..ed3d3c23 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jackson-annotations-2.9.10.jar>repo.jenkins-ci.org= +jackson-annotations-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar new file mode 100644 index 00000000..de054c66 Binary files /dev/null and b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar differ diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar.sha1 new file mode 100644 index 00000000..f98117f2 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.jar.sha1 @@ -0,0 +1 @@ +53ab2f0f92e87ea4874c8c6997335c211d81e636 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.pom new file mode 100644 index 00000000..51898670 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.pom @@ -0,0 +1,65 @@ + + + 4.0.0 + + com.fasterxml.jackson + + jackson-parent + 2.9.1.2 + + + com.fasterxml.jackson.core + jackson-annotations + Jackson-annotations + 2.9.10 + bundle + Core annotations used for value types, used by Jackson data binding package. + + 2008 + + http://github.com/FasterXML/jackson + + scm:git:git@github.com:FasterXML/jackson-annotations.git + scm:git:git@github.com:FasterXML/jackson-annotations.git + http://github.com/FasterXML/jackson-annotations + jackson-annotations-2.9.10 + + + + + 1.6 + 1.6 + + 2.5.3 + + com.fasterxml.jackson.annotation.*;version=${project.version} + + + + + junit + junit + test + + + + + + + + org.apache.felix + maven-bundle-plugin + + + + + com.fasterxml.jackson.annotation + + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.pom.sha1 new file mode 100644 index 00000000..50ca1750 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.9.10/jackson-annotations-2.9.10.pom.sha1 @@ -0,0 +1 @@ +fd57098f3f964d1a319cb72d039eec0ffa973d39 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/_remote.repositories new file mode 100644 index 00000000..a7c5ff3a --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jackson-core-2.9.10.jar>repo.jenkins-ci.org= +jackson-core-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar new file mode 100644 index 00000000..1b5e87cc Binary files /dev/null and b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar differ diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar.sha1 new file mode 100644 index 00000000..c6858fbd --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.jar.sha1 @@ -0,0 +1 @@ +66b715dec9dd8b0f39f3296e67e05913bf422d0c \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.pom new file mode 100644 index 00000000..5beef73b --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.pom @@ -0,0 +1,95 @@ + + + 4.0.0 + + com.fasterxml.jackson + + jackson-base + 2.9.10 + + + com.fasterxml.jackson.core + jackson-core + Jackson-core + 2.9.10 + bundle + Core Jackson processing abstractions (aka Streaming API), implementation for JSON + 2008 + + https://github.com/FasterXML/jackson-core + + scm:git:git@github.com:FasterXML/jackson-core.git + scm:git:git@github.com:FasterXML/jackson-core.git + http://github.com/FasterXML/jackson-core + jackson-core-2.9.10 + + + + + 1.6 + 1.6 + + + 2.5.3 + + com.fasterxml.jackson.core;version=${project.version}, +com.fasterxml.jackson.core.*;version=${project.version} + + + + com/fasterxml/jackson/core/json + ${project.groupId}.json + + com.fasterxml.jackson.core + + + + + + + + + + maven-enforcer-plugin + + + enforce-properties + validate + enforce + + + + + + org.apache.maven.plugins + maven-site-plugin + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + ${surefire.redirectTestOutputToFile} + + **/failing/**/*.java + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.pom.sha1 new file mode 100644 index 00000000..5dec080a --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.9.10/jackson-core-2.9.10.pom.sha1 @@ -0,0 +1 @@ +a93bc15064dbd765de66ca36ed61e59eb4f631ba \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/_remote.repositories new file mode 100644 index 00000000..c9f1560d --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jackson-databind-2.9.10.1.jar>repo.jenkins-ci.org= +jackson-databind-2.9.10.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar new file mode 100644 index 00000000..65a7a8ce Binary files /dev/null and b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar differ diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar.sha1 new file mode 100644 index 00000000..2c906ccc --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.jar.sha1 @@ -0,0 +1 @@ +cadb5d93d16151946468cd1a2e96f41bc7d4e198 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.pom b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.pom new file mode 100644 index 00000000..75533522 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.pom @@ -0,0 +1,172 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-base + 2.9.10 + + + com.fasterxml.jackson.core + jackson-databind + 2.9.10.1 + jackson-databind + bundle + General data-binding functionality for Jackson: works on core streaming API + http://github.com/FasterXML/jackson + 2008 + + + scm:git:git@github.com:FasterXML/jackson-databind.git + scm:git:git@github.com:FasterXML/jackson-databind.git + http://github.com/FasterXML/jackson-databind + jackson-databind-2.9.10.1 + + + + + 1.7 + 1.7 + + + com.fasterxml.jackson.databind.*;version=${project.version} + + org.w3c.dom.bootstrap;resolution:=optional, + * + + + + com/fasterxml/jackson/databind/cfg + com.fasterxml.jackson.databind.cfg + + + com.fasterxml.jackson.databind + + + + + + com.fasterxml.jackson.core + jackson-annotations + + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + + + + org.powermock + powermock-module-junit4 + 1.7.4 + test + + + org.powermock + powermock-api-mockito + 1.7.4 + test + + + + javax.measure + jsr-275 + 1.0.0 + test + + + + + + + + + + + maven-enforcer-plugin + + + enforce-properties + validate + enforce + + + + + + org.apache.maven.plugins + ${version.plugin.surefire} + maven-surefire-plugin + + + javax.measure:jsr-275 + + + com/fasterxml/jackson/failing/*.java + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + http://fasterxml.github.com/jackson-annotations/javadoc/2.9 + http://fasterxml.github.com/jackson-core/javadoc/2.9 + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + + + org.eluder.coveralls + coveralls-maven-plugin + 4.3.0 + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + + + + + + + release + + true + true + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.pom.sha1 new file mode 100644 index 00000000..88147ede --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.9.10.1/jackson-databind-2.9.10.1.pom.sha1 @@ -0,0 +1 @@ +77f1f5cbfd760ee7152449d8c2c41c174b31bd74 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/_remote.repositories new file mode 100644 index 00000000..fef0d5b3 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jackson-datatype-jdk8-2.9.10.jar>repo.jenkins-ci.org= +jackson-datatype-jdk8-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar new file mode 100644 index 00000000..5dea00de Binary files /dev/null and b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar differ diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar.sha1 new file mode 100644 index 00000000..443f37d3 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.jar.sha1 @@ -0,0 +1 @@ +6aa764caf0a275d98b8765f6687bd4ec6c8cb9eb \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.pom new file mode 100644 index 00000000..582f4728 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.pom @@ -0,0 +1,52 @@ + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-java8 + 2.9.10 + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + Jackson datatype: jdk8 + bundle + Add-on module for Jackson (http://jackson.codehaus.org) to support +JDK 8 data types. + + + + + 1.8 + 1.8 + + + com/fasterxml/jackson/datatype/jdk8 + ${project.groupId}.jdk8 + + + + + + org.apache.maven.plugins + ${version.plugin.surefire} + maven-surefire-plugin + + + com/fasterxml/jackson/failing/*.java + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.pom.sha1 new file mode 100644 index 00000000..41537bdd --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.10/jackson-datatype-jdk8-2.9.10.pom.sha1 @@ -0,0 +1 @@ +b69a3874c9391bde55825896bf0c4f8177e463bd \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/_remote.repositories new file mode 100644 index 00000000..ef59011e --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jackson-datatype-jsr310-2.9.10.jar>repo.jenkins-ci.org= +jackson-datatype-jsr310-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar new file mode 100644 index 00000000..07d2b735 Binary files /dev/null and b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar differ diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar.sha1 new file mode 100644 index 00000000..dbf2d6a4 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar.sha1 @@ -0,0 +1 @@ +bf7ea35ca4fafa385701580163ef983622e0bfb1 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom new file mode 100644 index 00000000..f7279fb8 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom @@ -0,0 +1,112 @@ + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-java8 + 2.9.10 + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + Jackson datatype: JSR310 + bundle + Add-on module to support JSR-310 (Java 8 Date & Time API) data types. + + + beamerblvd + Nick Williams + nicholas@nicholaswilliams.net + -6 + + + + + + -Xdoclint:none + + + com/fasterxml/jackson/datatype/jsr310 + ${project.groupId}.jsr310 + 1.8 + 1.8 + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [1.8,) + [ERROR] The currently supported version of Java is 1.8 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.0 + true + + ${javac.src.version} + ${javac.target.version} + true + true + true + + 10000 + 10000 + + + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom.sha1 new file mode 100644 index 00000000..e9a8b3a5 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom.sha1 @@ -0,0 +1 @@ +1fcc64a34c18081e127a6d269d70b7ec84cbf788 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/_remote.repositories new file mode 100644 index 00000000..b5b43522 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:43 CST 2021 +jackson-base-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom new file mode 100644 index 00000000..e1167efa --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom @@ -0,0 +1,157 @@ + + + 4.0.0 + + com.fasterxml.jackson + jackson-bom + 2.9.10 + + jackson-base + pom + Parent pom for components of Jackson dataprocessor: includes base settings as well +as consistent set of dependencies across components. NOTE: NOT to be used by components outside +of Jackson: application code should only rely on `jackson-bom` + + + + ${packageVersion.package} + + + + + junit + junit + test + + + + + + + + javax.activation + javax.activation-api + ${javax.activation.version} + + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + enforce-properties + validate + + + + + + + packageVersion.package + + + packageVersion.dir + + + + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${jdk.module.name} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + + + false + + http://docs.oracle.com/javase/8/docs/api/ + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + + + + + maven-enforcer-plugin + + + enforce-properties + none + + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom.sha1 new file mode 100644 index 00000000..a6198d0a --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom.sha1 @@ -0,0 +1 @@ +0cd2ac22d49c4002c5e87e9187eb88e45005d9f0 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/_remote.repositories new file mode 100644 index 00000000..33a643e9 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:13 CST 2021 +jackson-bom-2.9.10.20191020.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/jackson-bom-2.9.10.20191020.pom b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/jackson-bom-2.9.10.20191020.pom new file mode 100644 index 00000000..190045cf --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/jackson-bom-2.9.10.20191020.pom @@ -0,0 +1,310 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-parent + + 2.9.1.2 + + + jackson-bom + 2.9.10.20191020 + pom + + + base + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + http://github.com/FasterXML/jackson-bom + jackson-bom-2.9.10.20191020 + + + + 2.9.10 + + + + 2.9.10 + ${jackson.version} + 2.9.10.1 + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + + 1.2.0 + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate3 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + + + + com.fasterxml.jackson.module + jackson-module-scala_2.10 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/jackson-bom-2.9.10.20191020.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/jackson-bom-2.9.10.20191020.pom.sha1 new file mode 100644 index 00000000..329fe785 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10.20191020/jackson-bom-2.9.10.20191020.pom.sha1 @@ -0,0 +1 @@ +c0a1ffbdbb97631d23412d4a61cefd813a9ef8f3 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/_remote.repositories new file mode 100644 index 00000000..2c4f9c14 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:43 CST 2021 +jackson-bom-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom new file mode 100644 index 00000000..57f7b080 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom @@ -0,0 +1,310 @@ + + + 4.0.0 + + + com.fasterxml.jackson + jackson-parent + + 2.9.1.2 + + + jackson-bom + 2.9.10 + pom + + + base + + + https://github.com/FasterXML/jackson-bom + + scm:git:git@github.com:FasterXML/jackson-bom.git + scm:git:git@github.com:FasterXML/jackson-bom.git + http://github.com/FasterXML/jackson-bom + jackson-bom-2.9.10 + + + + 2.9.10 + + + + 2.9.10 + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + ${jackson.version} + + ${jackson.version} + ${jackson.version.module} + ${jackson.version.module} + + 1.2.0 + + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + com.fasterxml.jackson.core + jackson-core + ${jackson.version.core} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson.version.databind} + + + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson.version.dataformat} + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson.version.dataformat} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate3 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + ${jackson.version.datatype} + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + ${jackson.version.datatype} + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + ${jackson.version.jaxrs} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + ${jackson.version.jaxrs} + + + + + com.fasterxml.jackson.jr + jackson-jr-all + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-objects + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + ${jackson.version.jacksonjr} + + + com.fasterxml.jackson.jr + jackson-jr-stree + ${jackson.version.jacksonjr} + + + + + com.fasterxml.jackson.module + jackson-module-afterburner + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-guice + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-kotlin + ${jackson.version.module.kotlin} + + + com.fasterxml.jackson.module + jackson-module-mrbean + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-osgi + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-parameter-names + ${jackson.version.module} + + + com.fasterxml.jackson.module + jackson-module-paranamer + ${jackson.version.module} + + + + + + com.fasterxml.jackson.module + jackson-module-scala_2.10 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + ${jackson.version.module.scala} + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + ${jackson.version.module.scala} + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom.sha1 new file mode 100644 index 00000000..68eecc0d --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom.sha1 @@ -0,0 +1 @@ +5da11a1e84cee70b0fa6f61f70729ae07da12a92 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/_remote.repositories new file mode 100644 index 00000000..11b1ffb7 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:13 CST 2021 +jackson-parent-2.9.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom new file mode 100644 index 00000000..2893ce86 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom @@ -0,0 +1,212 @@ + + + 4.0.0 + + + com.fasterxml + oss-parent + 34 + + + com.fasterxml.jackson + jackson-parent + 2.9.1.2 + pom + + Jackson parent poms + Parent pom for all Jackson components + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + christophercurrie + Christopher Currie + + + + prb + Paul Brown + prb@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/jackson-parent.git + scm:git:git@github.com:FasterXML/jackson-parent.git + http://github.com/FasterXML/jackson-parent + jackson-parent-2.9.1.2 + + + + 2.9.0 + + + 1.7 + 1.7 + lines,source,vars + + + 4.12 + + + ${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in + ${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java + + + + + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson.version.annotations} + + + + junit + junit + ${version.junit} + + + + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [1.7,) + [ERROR] The currently supported version of Java is 1.7 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + ${version.plugin.replacer} + + + process-packageVersion + + replace + + + + + + ${packageVersion.template.input} + ${packageVersion.template.output} + + + @package@ + ${packageVersion.package} + + + @projectversion@ + ${project.version} + + + @projectgroupid@ + ${project.groupId} + + + @projectartifactid@ + ${project.artifactId} + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + com.google.code.maven-replacer-plugin + replacer + [${version.plugin.replacer},) + + replace + + + + + false + + + + + + + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom.sha1 new file mode 100644 index 00000000..24514d2b --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom.sha1 @@ -0,0 +1 @@ +50542d30ee4ab5c75e856417b7b96a442c8a4d08 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/_remote.repositories new file mode 100644 index 00000000..a6d12900 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jackson-module-parameter-names-2.9.10.jar>repo.jenkins-ci.org= +jackson-module-parameter-names-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.jar b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.jar new file mode 100644 index 00000000..7676179a Binary files /dev/null and b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.jar differ diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.jar.sha1 new file mode 100644 index 00000000..a5de5b60 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.jar.sha1 @@ -0,0 +1 @@ +dc8c36832c229df0209dfc98fab5be36cb99af5f \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.pom new file mode 100644 index 00000000..7af203be --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.pom @@ -0,0 +1,106 @@ + + + 4.0.0 + + com.fasterxml.jackson.module + jackson-modules-java8 + 2.9.10 + + jackson-module-parameter-names + Jackson-module-parameter-names + bundle + Add-on module for Jackson (http://jackson.codehaus.org) to support +introspection of method/constructor parameter names, without having to add explicit property name annotation. + + + + + 1.8 + 1.8 + + com/fasterxml/jackson/module/paramnames + ${project.groupId}.paramnames + + 3.8.0 + 1.10.19 + + + + + org.assertj + assertj-core + ${assertj-core.version} + test + + + org.mockito + mockito-core + ${mockito-core.version} + test + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + [1.8,) + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + true + + ${javac.src.version} + ${javac.target.version} + true + true + true + + -Xlint + -Werror + -parameters + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + ${packageVersion.dir}/failing/*.java + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.pom.sha1 new file mode 100644 index 00000000..4b54412d --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.10/jackson-module-parameter-names-2.9.10.pom.sha1 @@ -0,0 +1 @@ +d2064c8b6fa7aeaa200e5b043a3ac2482c2a2097 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/_remote.repositories new file mode 100644 index 00000000..aa4f251c --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:45 CST 2021 +jackson-modules-java8-2.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom b/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom new file mode 100644 index 00000000..f23e41e4 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom @@ -0,0 +1,85 @@ + + 4.0.0 + + com.fasterxml.jackson + jackson-base + 2.9.10 + + com.fasterxml.jackson.module + jackson-modules-java8 + Jackson modules: Java 8 + 2.9.10 + pom + Parent pom for Jackson modules needed to support Java 8 features and types + + + + parameter-names + datatypes + datetime + + + https://github.com/FasterXML/jackson-modules-java8 + + scm:git:git@github.com:FasterXML/jackson-modules-java8.git + scm:git:git@github.com:FasterXML/jackson-modules-java8.git + http://github.com/FasterXML/jackson-modules-java8 + jackson-modules-java8-2.9.10 + + + https://github.com/FasterXML/jackson-modules-java8/issues + + + + 5.1 + + + + + + + + com.fasterxml.jackson.core + jackson-core + + + com.fasterxml.jackson.core + jackson-databind + + + + junit + junit + test + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + + + process-packageVersion + generate-sources + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + com/fasterxml/jackson/**/failing/*.java + + + + + + + + diff --git a/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom.sha1 new file mode 100644 index 00000000..2958a8e7 --- /dev/null +++ b/artifacts/m2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom.sha1 @@ -0,0 +1 @@ +bac9d5b3c785f40eb3f7963cbfd3372ecafdeccb \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/oss-parent/34/_remote.repositories b/artifacts/m2/com/fasterxml/oss-parent/34/_remote.repositories new file mode 100644 index 00000000..a76b9a8e --- /dev/null +++ b/artifacts/m2/com/fasterxml/oss-parent/34/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:14 CST 2021 +oss-parent-34.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/oss-parent/34/oss-parent-34.pom b/artifacts/m2/com/fasterxml/oss-parent/34/oss-parent-34.pom new file mode 100644 index 00000000..5857b230 --- /dev/null +++ b/artifacts/m2/com/fasterxml/oss-parent/34/oss-parent-34.pom @@ -0,0 +1,620 @@ + + + + 4.0.0 + + com.fasterxml + oss-parent + 34 + pom + + FasterXML.com parent pom + FasterXML.com parent pom + http://github.com/FasterXML/ + + FasterXML + http://fasterxml.com/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + cowtowncoder + Tatu Saloranta + tatu@fasterxml.com + + + + + scm:git:git@github.com:FasterXML/oss-parent.git + scm:git:git@github.com:FasterXML/oss-parent.git + http://github.com/FasterXML/oss-parent + oss-parent-34 + + + GitHub Issue Management + https://github.com/FasterXML/${project.artifactId}/issues + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + UTF-8 + UTF-8 + UTF-8 + + ${project.build.directory}/generated-sources + + 1g + + + 1.6 + 1.6 + + + lines,source,vars + yyyy-MM-dd HH:mm:ssZ + + ${project.groupId}.*;version=${project.version} + * + + + + ${range;[===,=+);${@}} + {maven-resources} + + + + + + + 3.2.0 + + 2.6.1 + 2.7 + + + 3.8.0 + 2.8.2 + + 1.6 + + + 3.0.0-M1 + + 2.5.2 + 2.5 + + + 3.0.0-M1 + + + 1.0.0.Beta1 + + 2.5.3 + 1.5.3 + 2.7 + 2.4.3 + 3.1 + + + 2.1.2 + + + 2.22.0 + + + 4.12 + + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + org.apache.maven.plugins + maven-clean-plugin + ${version.plugin.clean} + + + org.apache.maven.plugins + maven-deploy-plugin + ${version.plugin.deploy} + + + org.apache.maven.plugins + maven-gpg-plugin + ${version.plugin.gpg} + + + org.apache.maven.plugins + maven-install-plugin + ${version.plugin.install} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + + org.moditect + moditect-maven-plugin + ${version.plugin.moditect} + + + + + com.google.code.maven-replacer-plugin + replacer + + ${version.plugin.replacer} + + + org.apache.maven.plugins + maven-resources-plugin + ${version.plugin.resources} + + + + org.apache.maven.plugins + maven-shade-plugin + ${version.plugin.shade} + + + org.apache.maven.plugins + maven-site-plugin + ${version.plugin.site} + + + org.codehaus.mojo + cobertura-maven-plugin + ${version.plugin.cobertura} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + + + + + + + <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + <_versionpolicy>${osgi.versionpolicy} + ${project.name} + ${project.groupId}.${project.artifactId} + ${project.description} + ${osgi.export} + ${osgi.private} + ${osgi.import} + ${osgi.dynamicImport} + ${osgi.includeResource} + ${project.url} + ${osgi.requiredExecutionEnvironment} + + ${maven.build.timestamp} + ${javac.src.version} + ${javac.target.version} + + ${project.name} + ${project.version} + ${project.groupId} + ${project.organization.name} + + ${project.name} + ${project.version} + ${project.organization.name} + + ${osgi.mainClass} + + + + + + + + org.apache.maven.plugins + maven-release-plugin + ${version.plugin.release} + + forked-path + false + -Prelease + + + + org.sonatype.plugins + nexus-maven-plugin + 2.1 + + https://oss.sonatype.org/ + sonatype-nexus-staging + + + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + ${version.plugin.enforcer} + + + enforce-java + validate + + enforce + + + + + + [1.6,) + [ERROR] The currently supported version of Java is 1.6 or higher + + + [3.0,) + [ERROR] The currently supported version of Maven is 3.0 or higher + + + true + true + true + clean,deploy,site + [ERROR] Best Practice is to always define plugin versions! + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${version.plugin.compiler} + + + + org.ow2.asm + asm + 7.0 + + + + ${javac.src.version} + ${javac.target.version} + true + true + true + + true + ${javac.debuglevel} + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-generated-sources + generate-sources + + add-source + + + + ${generatedSourcesDir} + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.plugin.surefire} + + + + org.apache.felix + maven-bundle-plugin + ${version.plugin.bundle} + true + + + + org.apache.maven.plugins + maven-jar-plugin + ${version.plugin.jar} + + + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.1 + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.9.1 + + + + + + + + org.apache.maven.scm + maven-scm-provider-gitexe + 1.9.1 + + + + org.apache.maven.scm + maven-scm-manager-plexus + 1.9.1 + + + + + org.kathrynhuxtable.maven.wagon + wagon-gitsite + 0.3.1 + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + ${sun.boot.class.path} + com.google.doclava.Doclava + false + -J-Xmx1024m + ${javadoc.maxmemory} + + http://docs.oracle.com/javase/7/docs/api/ + + + com.google.doclava + doclava + 1.0.3 + + + -hdf project.name "${project.name}" + -d ${project.reporting.outputDirectory}/apidocs + + + + + default + + javadoc + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.5 + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-2 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${version.plugin.surefire} + + + + org.apache.maven.plugins + maven-pmd-plugin + 2.7.1 + + true + 100 + 1.5 + + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + Todo Work + + + TODO + ignoreCase + + + FIXME + ignoreCase + + + + + + + + + + + + + release + + + + org.apache.maven.plugins + maven-source-plugin + ${version.plugin.source} + + + attach-sources + + jar-no-fork + + + + + true + true + + + ${maven.build.timestamp} + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${version.plugin.javadoc} + + + attach-javadocs + + jar + + + true + + + true + true + + + ${maven.build.timestamp} + ${javac.src.version} + ${javac.target.version} + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/artifacts/m2/com/fasterxml/oss-parent/34/oss-parent-34.pom.sha1 b/artifacts/m2/com/fasterxml/oss-parent/34/oss-parent-34.pom.sha1 new file mode 100644 index 00000000..2f8fe596 --- /dev/null +++ b/artifacts/m2/com/fasterxml/oss-parent/34/oss-parent-34.pom.sha1 @@ -0,0 +1 @@ +2c4651e782050f4f732b5249415fe8088b992eaa \ No newline at end of file diff --git a/artifacts/m2/com/google/google/5/_remote.repositories b/artifacts/m2/com/google/google/5/_remote.repositories new file mode 100644 index 00000000..5c175d96 --- /dev/null +++ b/artifacts/m2/com/google/google/5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:40 CST 2021 +google-5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/google/5/google-5.pom b/artifacts/m2/com/google/google/5/google-5.pom new file mode 100644 index 00000000..1d041e73 --- /dev/null +++ b/artifacts/m2/com/google/google/5/google-5.pom @@ -0,0 +1,72 @@ + + + 4.0.0 + com.google + google + 5 + Google + Internally developed code released as open source. + pom + + Google + http://www.google.com/ + + + + google + + + http://code.google.com/ + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + google-releases + Google Maven Repository + http://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + google-snapshots + Google Maven Snapshot Repository + http://oss.sonatype.org/content/repositories/google-snapshots/ + + + + scm:svn:http://google-maven-repository.googlecode.com/svn/tags/google-5 + scm:svn:https://google-maven-repository.googlecode.com/svn/tags/google-5 + http://code.google.com/p/google-maven-repository/source/browse/tags/google-5 + + + + release-sign-artifacts + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + diff --git a/artifacts/m2/com/google/google/5/google-5.pom.sha1 b/artifacts/m2/com/google/google/5/google-5.pom.sha1 new file mode 100644 index 00000000..04ec413c --- /dev/null +++ b/artifacts/m2/com/google/google/5/google-5.pom.sha1 @@ -0,0 +1 @@ +d94d040e8ce2ae7ff75945227e262e369445f736 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava-parent/16.0.1/_remote.repositories b/artifacts/m2/com/google/guava/guava-parent/16.0.1/_remote.repositories new file mode 100644 index 00000000..be988f4f --- /dev/null +++ b/artifacts/m2/com/google/guava/guava-parent/16.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:41 CST 2021 +guava-parent-16.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom b/artifacts/m2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom new file mode 100644 index 00000000..6c2588a5 --- /dev/null +++ b/artifacts/m2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom @@ -0,0 +1,237 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + com.google.guava + guava-parent + 16.0.1 + pom + Guava Maven Parent + http://code.google.com/p/guava-libraries + + true + + **/*Test.java + 0.13 + + + code.google.com + http://code.google.com/p/guava-libraries/issues + + 2010 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 3.0.3 + + + scm:git:https://code.google.com/p/guava-libraries/ + scm:git:https://code.google.com/p/guava-libraries/ + http://code.google.com/p/guava-libraries/source/browse + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + guava + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + src + + **/*.java + + + + + + test + + **/*.java + + + + + + + maven-gpg-plugin + 1.4 + + + sign-artifacts + verify + sign + + + + + + + + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + maven-jar-plugin + 2.3.1 + + + **/ForceGuavaCompilation* + + + + + maven-source-plugin + 2.1.2 + + + attach-sources + post-integration-test + jar + + + + + **/ForceGuavaCompilation* + + + + + maven-javadoc-plugin + 2.8 + + javadoc-stylesheet.css + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 2.3 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.7 + + + + + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 1.3.9 + + + javax.inject + javax.inject + 1 + + + junit + junit + 4.8.2 + test + + + org.easymock + easymock + 3.0 + test + + + org.mockito + mockito-core + 1.8.5 + test + + + org.truth0 + truth + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.caliper + caliper + 0.5-rc1 + test + + + + com.google.guava + guava + + + + + + diff --git a/artifacts/m2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom.sha1 b/artifacts/m2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom.sha1 new file mode 100644 index 00000000..71395d3c --- /dev/null +++ b/artifacts/m2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom.sha1 @@ -0,0 +1 @@ +08ee21458c04474f97a3e499d5618c01cd2991db \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava-parent/19.0/_remote.repositories b/artifacts/m2/com/google/guava/guava-parent/19.0/_remote.repositories new file mode 100644 index 00000000..1b0d83a9 --- /dev/null +++ b/artifacts/m2/com/google/guava/guava-parent/19.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:51 CST 2021 +guava-parent-19.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom b/artifacts/m2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom new file mode 100644 index 00000000..8c7a2d6e --- /dev/null +++ b/artifacts/m2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom @@ -0,0 +1,323 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + com.google.guava + guava-parent + 19.0 + pom + Guava Maven Parent + https://github.com/google/guava + + true + + **/*Test.java + 0.25 + 1.14 + + + GitHub Issues + https://github.com/google/guava/issues + + 2010 + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + 3.0.3 + + + scm:git:https://github.com/google/guava.git + scm:git:git@github.com:google/guava.git + https://github.com/google/guava + + + + kevinb9n + Kevin Bourrillion + kevinb@google.com + Google + http://www.google.com + + owner + developer + + -8 + + + + Travis CI + https://travis-ci.org/google/guava + + + guava + guava-gwt + guava-testlib + guava-tests + + + + src + test + + + src + + **/*.java + + + + + + test + + **/*.java + + + + + + + maven-gpg-plugin + 1.4 + + + sign-artifacts + verify + sign + + + + + + + + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + maven-jar-plugin + 2.3.1 + + + **/ForceGuavaCompilation* + + + + + maven-source-plugin + 2.1.2 + + + attach-sources + post-integration-test + jar + + + + + **/ForceGuavaCompilation* + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${animal.sniffer.version} + + + org.codehaus.mojo.signature + java16-sun + 1.10 + + + + + check-java16-sun + test + + check + + + + + + maven-javadoc-plugin + 2.8 + + true + + + + attach-docs + post-integration-test + jar + + + + + maven-dependency-plugin + 2.3 + + + maven-antrun-plugin + 1.6 + + + maven-surefire-plugin + 2.7.2 + + + ${test.include} + + + + + + + + + guava-site + Guava Documentation Site + scp://dummy.server/dontinstall/usestaging + + + + + + com.google.code.findbugs + jsr305 + 1.3.9 + + + com.google.errorprone + error_prone_annotations + 2.0.2 + + + com.google.j2objc + j2objc-annotations + 0.1 + + + junit + junit + 4.8.2 + test + + + org.easymock + easymock + 3.0 + test + + + org.mockito + mockito-core + 1.8.5 + test + + + com.google.truth + truth + ${truth.version} + test + + + + com.google.guava + guava + + + + + com.google.caliper + caliper + 1.0-beta-2 + test + + + + com.google.guava + guava + + + + + + + + jdk7 + + 1.7 + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + javadoc-stylesheet.css + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + javadoc-stylesheet.css + + + + + + + jdk8 + + [1.8,) + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + + diff --git a/artifacts/m2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom.sha1 b/artifacts/m2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom.sha1 new file mode 100644 index 00000000..a453651d --- /dev/null +++ b/artifacts/m2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom.sha1 @@ -0,0 +1 @@ +21fa0d898121cc408c19b74e4305403c6cc45b23 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava/16.0.1/_remote.repositories b/artifacts/m2/com/google/guava/guava/16.0.1/_remote.repositories new file mode 100644 index 00000000..0be7e17b --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/16.0.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:40 CST 2021 +guava-16.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/guava/guava/16.0.1/guava-16.0.1.pom b/artifacts/m2/com/google/guava/guava/16.0.1/guava-16.0.1.pom new file mode 100644 index 00000000..bd75435a --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/16.0.1/guava-16.0.1.pom @@ -0,0 +1,165 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 16.0.1 + + guava + Guava: Google Core Libraries for Java + bundle + + Guava is a suite of core and expanded libraries that include + utility classes, google's collections, io classes, and much + much more. + + Guava has only one code dependency - javax.annotation, + per the JSR-305 spec. + + + + com.google.code.findbugs + jsr305 + true + + + + + + + org.apache.felix + maven-bundle-plugin + 2.3.7 + true + + + bundle-manifest + process-classes + + manifest + + + + + + !com.google.common.base.internal,com.google.common.* + + javax.annotation;resolution:=optional, + javax.inject;resolution:=optional, + sun.misc.*;resolution:=optional + + + + + + maven-compiler-plugin + + + maven-source-plugin + + + + maven-dependency-plugin + + + unpack-jdk-sources + site + unpack-dependencies + + srczip + true + ${project.build.directory}/jdk-sources + false + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + org.codehaus.mojo.signature + java16-sun + 1.0 + + + + + check-java16-sun + test + + check + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + UTF-8 + UTF-8 + UTF-8 + -XDignore.symbol.file + com.google.common.base.internal + true + + http://jsr-305.googlecode.com/svn/trunk/javadoc + http://docs.oracle.com/javase/7/docs/api/ + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources + com.google.common + + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + generate-jdiff-site-report + site + javadoc + + jdiff.JDiff + ${project.basedir}/lib/jdiff.jar + + -XDignore.symbol.file -apiname 'Guava ${project.version}' + + false + ${project.reporting.outputDirectory} + jdiff + + + + + + + + + srczip + + + ${java.home}/../src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/../src.zip + true + + + + + diff --git a/artifacts/m2/com/google/guava/guava/16.0.1/guava-16.0.1.pom.sha1 b/artifacts/m2/com/google/guava/guava/16.0.1/guava-16.0.1.pom.sha1 new file mode 100644 index 00000000..ff469b2b --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/16.0.1/guava-16.0.1.pom.sha1 @@ -0,0 +1 @@ +52f16cd93f1ee1f0d1e1e55f46fa21c35f829f85 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava/19.0/_remote.repositories b/artifacts/m2/com/google/guava/guava/19.0/_remote.repositories new file mode 100644 index 00000000..f1fc2992 --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/19.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +guava-19.0.jar>repo.jenkins-ci.org= +guava-19.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.jar b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.jar new file mode 100644 index 00000000..b175ca86 Binary files /dev/null and b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.jar differ diff --git a/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.jar.sha1 b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.jar.sha1 new file mode 100644 index 00000000..02f937f8 --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.jar.sha1 @@ -0,0 +1 @@ +6ce200f6b23222af3d8abb6b6459e6c44f4bb0e9 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.pom b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.pom new file mode 100644 index 00000000..eef6890f --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.pom @@ -0,0 +1,182 @@ + + + 4.0.0 + + com.google.guava + guava-parent + 19.0 + + guava + bundle + Guava: Google Core Libraries for Java + + Guava is a suite of core and expanded libraries that include + utility classes, google's collections, io classes, and much + much more. + + Guava has only one code dependency - javax.annotation, + per the JSR-305 spec. + + + + com.google.code.findbugs + jsr305 + true + + + com.google.errorprone + error_prone_annotations + true + + + com.google.j2objc + j2objc-annotations + true + + + org.codehaus.mojo + animal-sniffer-annotations + ${animal.sniffer.version} + true + + + + + + + + true + org.apache.felix + maven-bundle-plugin + 2.3.7 + + + bundle-manifest + process-classes + + manifest + + + + + + !com.google.common.base.internal,com.google.common.* + + javax.annotation;resolution:=optional, + sun.misc.*;resolution:=optional + + https://guava-libraries.googlecode.com/ + + + + + maven-compiler-plugin + + + maven-source-plugin + + + + maven-dependency-plugin + + + unpack-jdk-sources + site + unpack-dependencies + + srczip + ${project.build.directory}/jdk-sources + false + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + org.apache.maven.plugins + maven-javadoc-plugin + + UTF-8 + UTF-8 + UTF-8 + -XDignore.symbol.file + com.google.common.base.internal + true + + http://jsr-305.googlecode.com/svn/trunk/javadoc + http://docs.oracle.com/javase/7/docs/api/ + + + ${project.build.sourceDirectory}:${project.build.directory}/jdk-sources + com.google.common + + + + attach-docs + + + generate-javadoc-site-report + site + javadoc + + + + + + + + srczip + + + ${java.home}/../src.zip + + + + + jdk + srczip + 999 + system + ${java.home}/../src.zip + true + + + + + jdk8 + + [1.8,) + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -XDignore.symbol.file -Xdoclint:none + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -XDignore.symbol.file -Xdoclint:none + + + + + + + diff --git a/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.pom.sha1 b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.pom.sha1 new file mode 100644 index 00000000..3b6c289d --- /dev/null +++ b/artifacts/m2/com/google/guava/guava/19.0/guava-19.0.pom.sha1 @@ -0,0 +1 @@ +65a43a21dbddcc19aa3ca50a63a4b33166bfbc77 \ No newline at end of file diff --git a/artifacts/m2/com/google/inject/guice-parent/4.0/_remote.repositories b/artifacts/m2/com/google/inject/guice-parent/4.0/_remote.repositories new file mode 100644 index 00000000..7895a943 --- /dev/null +++ b/artifacts/m2/com/google/inject/guice-parent/4.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:39 CST 2021 +guice-parent-4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom b/artifacts/m2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom new file mode 100644 index 00000000..9cdc7938 --- /dev/null +++ b/artifacts/m2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom @@ -0,0 +1,470 @@ + + + + + + + 4.0.0 + + + com.google + google + 5 + + + pom + + com.google.inject + guice-parent + 4.0 + + Google Guice + + + Guice is a lightweight dependency injection framework for Java 6 and above + + + https://github.com/google/guice + 2006 + + + Google, Inc. + http://www.google.com + + + + + Guice Users List + http://groups.google.com/group/google-guice/topics + http://groups.google.com/group/google-guice/subscribe + http://groups.google.com/group/google-guice/subscribe + http://groups.google.com/group/google-guice/post + + + Guice Developers List + http://groups.google.com/group/google-guice-dev/topics + http://groups.google.com/group/google-guice-dev/subscribe + http://groups.google.com/group/google-guice-dev/subscribe + http://groups.google.com/group/google-guice-dev/post + + + + + scm:git:git://github.com/google/guice.git + scm:git:ssh://git@github.com/google/guice.git + https://github.com/google/guice + + + + Google Code + https://github.com/google/guice/issues/ + + + + Travis + https://travis-ci.org/google/guice + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + + google-releases + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + google-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + + + bom + core + extensions + + + + + 3.0 + + + + + 1.4 + UTF-8 + + true + + true + true + + + + + + javax.inject + javax.inject + 1 + + + javax.inject + javax.inject-tck + 1 + + + aopalliance + aopalliance + 1.0 + + + com.google.guava + guava + 16.0.1 + + + com.google.guava + guava-testlib + 16.0.1 + + + org.ow2.asm + asm + 5.0.3 + + + cglib + cglib + 3.1 + + + + + + + junit + junit + 4.11 + test + + + + + + ${project.basedir}/src + + + false + ${project.basedir}/src + + **/*.java + + + + ${project.basedir}/test + + + false + ${project.basedir}/test + + **/*.java + + + + + + + + com.mycila + license-maven-plugin + 2.6 + + UTF-8 +
${project.basedir}/lib/build/header.txt
+ + ${project.basedir}/lib/build/header-definitions.xml + + true + true + + **/*.java + + + + **/build/** + **/target/** + **/lib/** + **/test/** + **/example*/** + + + JAVADOC_STYLE + +
+
+ + + maven-remote-resources-plugin + 1.1 + + + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.10 + + + org.codehaus.mojo.signature + java16 + 1.0 + + + + + check-java-1.6-compat + process-classes + + check + + + + + + maven-surefire-plugin + 2.5 + + true + + + + + stack-traces-off + test + test + + -Dguice_include_stack_traces=OFF + + + + stack-traces-complete + test + test + + -Dguice_include_stack_traces=COMPLETE + + + + default-test + test + test + + -Dguice_include_stack_traces=ONLY_FOR_DECLARING_SOURCE + + + + + + + org.apache.felix + maven-bundle-plugin + 2.1.0 + + + com.google.inject + <_include>-${project.basedir}/build.properties + Copyright (C) 2006 Google Inc. + https://github.com/google/guice + ${project.artifactId} + $(module) + JavaSE-1.6 + !com.google.inject.*,* + <_exportcontents>!*.internal.*,$(module).*;version=${guice.api.version} + <_versionpolicy>$(version;==;$(@)) + <_nouses>true + <_removeheaders> + Embed-Dependency,Embed-Transitive, + Built-By,Tool,Created-By,Build-Jdk, + Originally-Created-By,Archiver-Version, + Include-Resource,Private-Package, + Ignore-Package,Bnd-LastModified + + + + + + prepare-package + + manifest + + + + + + + maven-jar-plugin + 2.3.1 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + false + + + + + package + + test-jar + + + + + + maven-javadoc-plugin + 2.7 + + + package + + jar + + + + + + maven-source-plugin + 2.1.2 + + + package + + jar + test-jar + + + + + + maven-release-plugin + 2.1 + + true + + + + maven-deploy-plugin + 2.5 + +
+
+ + + + maven-gpg-plugin + 1.4 + + + sign-artifacts + verify + sign + + + + +
+ + + + jdk8 + + [1.8,) + + + + jdk8-tests + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + + +
diff --git a/artifacts/m2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom.sha1 b/artifacts/m2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom.sha1 new file mode 100644 index 00000000..fed6f8b1 --- /dev/null +++ b/artifacts/m2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom.sha1 @@ -0,0 +1 @@ +a59ca1d3d70552158088d7f71e6c7e8779b9a8a1 \ No newline at end of file diff --git a/artifacts/m2/com/google/inject/guice/4.0/_remote.repositories b/artifacts/m2/com/google/inject/guice/4.0/_remote.repositories new file mode 100644 index 00000000..ddbe0b84 --- /dev/null +++ b/artifacts/m2/com/google/inject/guice/4.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +guice-4.0-no_aop.jar>repo.jenkins-ci.org= +guice-4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar new file mode 100644 index 00000000..6b09fa0f Binary files /dev/null and b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar differ diff --git a/artifacts/m2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar.sha1 b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar.sha1 new file mode 100644 index 00000000..2e6f078e --- /dev/null +++ b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar.sha1 @@ -0,0 +1 @@ +199b7acaa05b570bbccf31be998f013963e5e752 \ No newline at end of file diff --git a/artifacts/m2/com/google/inject/guice/4.0/guice-4.0.pom b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0.pom new file mode 100644 index 00000000..5a11a23e --- /dev/null +++ b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0.pom @@ -0,0 +1,334 @@ + + + + 4.0.0 + + + com.google.inject + guice-parent + 4.0 + + + guice + + Google Guice - Core Library + + + + javax.inject + javax.inject + + + aopalliance + aopalliance + + + com.google.guava + guava + + + + org.ow2.asm + asm + true + + + cglib + cglib + true + + + + javax.inject + javax.inject-tck + test + + + com.google.guava + guava-testlib + test + + + org.springframework + spring-beans + 3.0.5.RELEASE + test + + + biz.aQute + bnd + 0.0.384 + test + + + org.apache.felix + org.apache.felix.framework + 3.0.5 + test + + + + + + + + maven-remote-resources-plugin + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + maven-surefire-plugin + + + + **/*$* + **/ErrorHandlingTest* + **/OSGiContainerTest* + **/ScopesTest* + **/TypeConversionTest* + + + + + + org.apache.felix + maven-bundle-plugin + + + ${project.artifactId}$(if;$(classes;NAMED;*.MethodAspect);; (no_aop)) + !net.sf.cglib.*,!org.objectweb.asm.*,!com.google.inject.*,* + true + + + + + + maven-jar-plugin + + + LICENSE + NOTICE + + + + + + maven-source-plugin + + + + maven-javadoc-plugin + + + + + + + + guice.with.no_aop + + + guice.with.no_aop + !false + + + + + + org.sonatype.plugins + munge-maven-plugin + 1.0 + + + prepare-package + + munge-fork + + + NO_AOP + + **/InterceptorBinding.java, + **/InterceptorBindingProcessor.java, + **/InterceptorStackCallback.java, + **/LineNumbers.java, + **/MethodAspect.java, + **/ProxyFactory.java, + **/BytecodeGenTest.java, + **/IntegrationTest.java, + **/MethodInterceptionTest.java, + **/ProxyFactoryTest.java + + + + + + + + maven-jar-plugin + + + no_aop + package + + jar + + + ${project.build.directory}/munged/classes + no_aop + + ${project.build.directory}/munged/classes/META-INF/MANIFEST.MF + + + + + + + + + + + guice.with.jarjar + + + guice.with.jarjar + !false + + + + + + org.sonatype.plugins + jarjar-maven-plugin + 1.9 + + + jarjar + jarjar + + + + true + + *:asm* + *:cglib + + + + net.sf.cglib.* + com.google.inject.internal.cglib.$@1 + + + net.sf.cglib.**.* + com.google.inject.internal.cglib.@1.$@2 + + + org.objectweb.asm.* + com.google.inject.internal.asm.$@1 + + + org.objectweb.asm.**.* + com.google.inject.internal.asm.@1.$@2 + + + com.google.inject.** + + + com.googlecode.** + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.8 + + + classes + package + + attach-artifact + + + + + ${project.build.directory}/original-${project.build.finalName}.jar + classes + + + + + + + + + + + + m2e + + + m2e.version + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.sonatype.plugins + jarjar-maven-plugin + [1.4,) + jarjar + + + + + + + + + + + + + diff --git a/artifacts/m2/com/google/inject/guice/4.0/guice-4.0.pom.sha1 b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0.pom.sha1 new file mode 100644 index 00000000..1c919b78 --- /dev/null +++ b/artifacts/m2/com/google/inject/guice/4.0/guice-4.0.pom.sha1 @@ -0,0 +1 @@ +688cb7b0d86456e3706573fe583173ee5e728f4e \ No newline at end of file diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/_remote.repositories b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/_remote.repositories new file mode 100644 index 00000000..20ad73fd --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:21 CST 2021 +qdox-2.0-M8.jar>repo.jenkins-ci.org= +qdox-2.0-M8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar new file mode 100644 index 00000000..2f85fa9a Binary files /dev/null and b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar differ diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar.sha1 b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar.sha1 new file mode 100644 index 00000000..27de4559 --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar.sha1 @@ -0,0 +1 @@ +036dc5cbf2aaf642d9ce7d0338591234ca49fcf0 \ No newline at end of file diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom new file mode 100644 index 00000000..b1c2985e --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom @@ -0,0 +1,494 @@ + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + QDox + com.thoughtworks.qdox + qdox + 2.0-M8 + + https://github.com/paul-hammant/qdox + + QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files + complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools. + + 2002 + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + github + https://github.com/paul-hammant/qdox/issues + + + + scm:git:https://github.com/paul-hammant/qdox.git + scm:git:ssh://git@github.com/paul-hammant/qdox.git + https://github.com/paul-hammant/qdox + qdox-2.0-M8 + + + + + rfscholte + Robert Scholte + +1 + + project lead + + + + joe + Joe Walnes + + project founder + + + + Aslak Hellesoy + rinkrank + + developer + + + + Paul Hammant + paul + + developer + + + + Mike Williams + mdub + + developer + + + + mauro + Mauro Talevi + + developer + + + + + + + Mike Royle + + + Peter Donald + + + James Strachan + + + Nick Pomfret + + + Chris Stevenson + + + Ben Hogan + + + Laurent Etiemble + + + Shawn Chain + + + Brian Slesinsky + + + James Lee + + + Eric Redmond + + + + + yyyy-MM-dd + UTF-8 + ${maven.build.timestamp} + 500 + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + false + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.2 + + + + com.thoughtworks.qdox + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + ${basedir}/src/site/templates/site.vm + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-maven + + enforce + + + + + 3.0 + + + + + + + + de.jflex + maven-jflex-plugin + 1.4.3 + + + + generate + + + + + ${project.build.directory}/generated-sources/parser + + ${basedir}/src/grammar/lexer.flex + ${basedir}/src/grammar/commentlexer.flex + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + javacommentparser + generate-sources + + exec + + + ${qdox.byaccj.executable} + + -v + -Jnorun + -Jnoconstruct + -Jclass=DefaultJavaCommentParser + -Jpackage=com.thoughtworks.qdox.parser.impl + ${basedir}/src/grammar/commentparser.y + + ${project.build.directory}/generated-sources/parser/com/thoughtworks/qdox/parser/impl + + + + javasourceparser + generate-sources + + exec + + + ${qdox.byaccj.executable} + + -v + -Jnorun + -Jnoconstruct + -Jclass=Parser + -Jimplements=CommentHandler + -Jsemantic=Value + -Jpackage=com.thoughtworks.qdox.parser.impl + -Jstack=${qdox.javaparser.stack} + ${basedir}/src/grammar/parser.y + + ${project.build.directory}/generated-sources/parser/com/thoughtworks/qdox/parser/impl + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.7 + + + check-java15 + process-classes + + check + + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + + integration-test + verify + + + + + + org.apache.maven.plugins + maven-invoker-plugin + 2.0.0 + + ${project.build.directory}/it + verify + ${project.build.directory}/local-repo + + clean + test + + src/it/settings.xml + true + + + + integration-test + + install + run + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2.2 + + + project + + gnu + + + + make-assembly + package + + single + + + + + + + + + + junit + junit + 4.8.2 + test + + + org.mockito + mockito-core + 1.8.5 + test + + + + + + linux + + + Linux + i386 + + + + ${basedir}/bootstrap/yacc.linux + + + + linux64 + + + Linux + amd64 + + + + ${basedir}/bootstrap/yacc.linux.x86_64 + + + + solaris + + + SunOS + + + + ${basedir}/bootstrap/yacc.solaris + + + + macosx + + + Mac + + + + ${basedir}/bootstrap/yacc.macosx + + + + windows + + + Windows + + + + ${basedir}/bootstrap/yacc.exe + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8 + + + + dependencies + project-team + mailing-list + issue-tracking + license + scm + summary + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + + jxr + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.8 + + com.thoughtworks.qdox.* + + + + + + javadoc + + + + + + + + diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom.sha1 b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom.sha1 new file mode 100644 index 00000000..358ee743 --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom.sha1 @@ -0,0 +1 @@ +8fc15cc55411249f3d89973e6ea55a7c4dc8688f \ No newline at end of file diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/_remote.repositories b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/_remote.repositories new file mode 100644 index 00000000..7b4e4d05 --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:16 CST 2021 +qdox-2.0-M9.jar>repo.jenkins-ci.org= +qdox-2.0-M9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar new file mode 100644 index 00000000..0692a05c Binary files /dev/null and b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar differ diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar.sha1 b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar.sha1 new file mode 100644 index 00000000..0e8493ee --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar.sha1 @@ -0,0 +1 @@ +ea940f1cdba9205d03e4f54b9ac0ec988de751dd \ No newline at end of file diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom new file mode 100644 index 00000000..b1472f50 --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom @@ -0,0 +1,494 @@ + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + QDox + com.thoughtworks.qdox + qdox + 2.0-M9 + + https://github.com/paul-hammant/qdox + + QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files + complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools. + + 2002 + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + github + https://github.com/paul-hammant/qdox/issues + + + + scm:git:https://github.com/paul-hammant/qdox.git + scm:git:ssh://git@github.com/paul-hammant/qdox.git + https://github.com/paul-hammant/qdox + qdox-2.0-M9 + + + + + rfscholte + Robert Scholte + +1 + + project lead + + + + joe + Joe Walnes + + project founder + + + + Aslak Hellesoy + rinkrank + + developer + + + + Paul Hammant + paul + + developer + + + + Mike Williams + mdub + + developer + + + + mauro + Mauro Talevi + + developer + + + + + + + Mike Royle + + + Peter Donald + + + James Strachan + + + Nick Pomfret + + + Chris Stevenson + + + Ben Hogan + + + Laurent Etiemble + + + Shawn Chain + + + Brian Slesinsky + + + James Lee + + + Eric Redmond + + + + + yyyy-MM-dd + UTF-8 + ${maven.build.timestamp} + 500 + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + false + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.2 + + + + com.thoughtworks.qdox + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + ${basedir}/src/site/templates/site.vm + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-maven + + enforce + + + + + 3.0 + + + + + + + + de.jflex + maven-jflex-plugin + 1.4.3 + + + + generate + + + + + ${project.build.directory}/generated-sources/parser + + ${basedir}/src/grammar/lexer.flex + ${basedir}/src/grammar/commentlexer.flex + + + + + org.codehaus.mojo + exec-maven-plugin + 1.2.1 + + + javacommentparser + generate-sources + + exec + + + ${qdox.byaccj.executable} + + -v + -Jnorun + -Jnoconstruct + -Jclass=DefaultJavaCommentParser + -Jpackage=com.thoughtworks.qdox.parser.impl + ${basedir}/src/grammar/commentparser.y + + ${project.build.directory}/generated-sources/parser/com/thoughtworks/qdox/parser/impl + + + + javasourceparser + generate-sources + + exec + + + ${qdox.byaccj.executable} + + -v + -Jnorun + -Jnoconstruct + -Jclass=Parser + -Jimplements=CommentHandler + -Jsemantic=Value + -Jpackage=com.thoughtworks.qdox.parser.impl + -Jstack=${qdox.javaparser.stack} + ${basedir}/src/grammar/parser.y + + ${project.build.directory}/generated-sources/parser/com/thoughtworks/qdox/parser/impl + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.7 + + + check-java15 + process-classes + + check + + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.19.1 + + + + integration-test + verify + + + + + + org.apache.maven.plugins + maven-invoker-plugin + 2.0.0 + + ${project.build.directory}/it + verify + ${project.build.directory}/local-repo + + clean + test + + src/it/settings.xml + true + + + + integration-test + + install + run + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2.2 + + + project + + gnu + + + + make-assembly + package + + single + + + + + + + + + + junit + junit + 4.12 + test + + + org.mockito + mockito-core + 1.8.5 + test + + + + + + linux + + + Linux + i386 + + + + ${basedir}/bootstrap/yacc.linux + + + + linux64 + + + Linux + amd64 + + + + ${basedir}/bootstrap/yacc.linux.x86_64 + + + + solaris + + + SunOS + + + + ${basedir}/bootstrap/yacc.solaris + + + + macosx + + + Mac + + + + ${basedir}/bootstrap/yacc.macosx + + + + windows + + + Windows + + + + ${basedir}/bootstrap/yacc.exe + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8 + + + + dependencies + project-team + mailing-list + issue-tracking + license + scm + summary + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + + + jxr + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.8 + + com.thoughtworks.qdox.* + + + + + + javadoc + + + + + + + + diff --git a/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom.sha1 b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom.sha1 new file mode 100644 index 00000000..d08521fe --- /dev/null +++ b/artifacts/m2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom.sha1 @@ -0,0 +1 @@ +5d3e19942fb302f11734b507b1115700b37f2cac \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.11/_remote.repositories b/artifacts/m2/commons-codec/commons-codec/1.11/_remote.repositories new file mode 100644 index 00000000..a546d1cf --- /dev/null +++ b/artifacts/m2/commons-codec/commons-codec/1.11/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +commons-codec-1.11.jar>repo.jenkins-ci.org= +commons-codec-1.11.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar new file mode 100644 index 00000000..22451206 Binary files /dev/null and b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar differ diff --git a/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar.sha1 b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar.sha1 new file mode 100644 index 00000000..b08f71a5 --- /dev/null +++ b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar.sha1 @@ -0,0 +1 @@ +3acb4705652e16236558f0f4f2192cc33c3bd189 \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom new file mode 100644 index 00000000..79dbaced --- /dev/null +++ b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom @@ -0,0 +1,410 @@ + + + + + 4.0.0 + + org.apache.commons + commons-parent + 42 + + commons-codec + commons-codec + + 1.11 + Apache Commons Codec + 2002 + + The Apache Commons Codec package contains simple encoder and decoders for + various formats such as Base64 and Hexadecimal. In addition to these + widely used encoders and decoders, the codec package also maintains a + collection of phonetic encoding utilities. + + + 3.0.0 + + http://commons.apache.org/proper/commons-codec/ + + jira + http://issues.apache.org/jira/browse/CODEC + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/codec/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/codec/trunk + http://svn.apache.org/viewvc/commons/proper/codec/trunk + + + + stagingSite + Apache Staging Website + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}/ + + + + + Henri Yandell + bayard + bayard@apache.org + + + Tim OBrien + tobrien + tobrien@apache.org + -6 + + + Scott Sanders + sanders + sanders@totalsync.com + + + Rodney Waldhoff + rwaldhoff + rwaldhoff@apache.org + + + Daniel Rall + dlr + dlr@finemaltcoding.com + + + Jon S. Stevens + jon + jon@collab.net + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -8 + + + David Graham + dgraham + dgraham@apache.org + + + Julius Davies + julius + julius@apache.org + http://juliusdavies.ca/ + -8 + + + Thomas Neidhart + tn + tn@apache.org + + + + + Christopher O'Brien + siege@preoccupied.net + + hex + md5 + architecture + + + + Martin Redington + + Representing xml-rpc + + + + Jeffery Dever + + Representing http-client + + + + Steve Zimmermann + steve.zimmermann@heii.com + + Documentation + + + + Benjamin Walstrum + ben@walstrum.com + + + Oleg Kalnichevski + oleg@ural.ru + + Representing http-client + + + + Dave Dribin + apache@dave.dribin.org + + DigestUtil + + + + Alex Karasulu + aok123 at bellsouth.net + + Submitted Binary class and test + + + + Matthew Inger + mattinger at yahoo.com + + Submitted DIFFERENCE algorithm for Soundex and RefinedSoundex + + + + Jochen Wiedmann + jochen@apache.org + + Base64 code [CODEC-69] + + + + Sebastian Bazley + sebb@apache.org + + Streaming Base64 + + + + Matthew Pocock + turingatemyhamster@gmail.com + + Beider-Morse phonetic matching + + + + Colm Rice + colm_rice at hotmail dot com + + Submitted Match Rating Approach (MRA) phonetic encoder and tests [CODEC-161] + + + + + + + junit + junit + 4.12 + test + + + org.apache.commons + commons-lang3 + 3.5 + test + + + + 1.6 + 1.6 + codec + org.apache.commons.codec + 1.11 + + RC1 + CODEC + 12310464 + + UTF-8 + UTF-8 + UTF-8 + ${basedir}/LICENSE-header.txt + 2.17 + 2.8 + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + ${commons.scm-publish.version} + + + archive** + + + + + + + + + org.apache.rat + apache-rat-plugin + + + src/site/resources/.htaccess + + + + + + + maven-jar-plugin + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*AbstractTest.java + **/*PerformanceTest.java + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.version} + + ${basedir}/checkstyle.xml + false + ${basedir}/LICENSE-header.txt + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.version} + + ${basedir}/checkstyle.xml + false + ${basedir}/LICENSE-header.txt + + + + + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.target} + true + + ${basedir}/pmd.xml + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${commons.findbugs.version} + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + TODO + NOPMD + NOTE + + + + + org.codehaus.mojo + javancss-maven-plugin + 2.1 + + + org.apache.rat + apache-rat-plugin + + + src/site/resources/.htaccess + + + + + + + + travis + + + env.TRAVIS + true + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + 4.3.0 + + + + + + diff --git a/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom.sha1 b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom.sha1 new file mode 100644 index 00000000..f7691ede --- /dev/null +++ b/artifacts/m2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom.sha1 @@ -0,0 +1 @@ +093ee1760aba62d6896d578bd7d247d0fa52f0e7 \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/2.4/_remote.repositories b/artifacts/m2/commons-io/commons-io/2.4/_remote.repositories new file mode 100644 index 00000000..98093533 --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:07 CST 2021 +commons-io-2.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-io/commons-io/2.4/commons-io-2.4.pom b/artifacts/m2/commons-io/commons-io/2.4/commons-io-2.4.pom new file mode 100644 index 00000000..f6c1def6 --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.4/commons-io-2.4.pom @@ -0,0 +1,323 @@ + + + + + org.apache.commons + commons-parent + 25 + + 4.0.0 + commons-io + commons-io + 2.4 + Commons IO + + 2002 + +The Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + http://commons.apache.org/io/ + + + jira + http://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons IO Site + ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid} + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/trunk + http://svn.apache.org/viewvc/commons/proper/io/trunk + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Ian Springer + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + junit + junit + 4.10 + test + + + + + 1.6 + 1.6 + io + RC1 + 2.4 + (requires JDK 1.6+) + 2.2 + (requires JDK 1.5+) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + pertest + + -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/main/assembly/bin.xml + src/main/assembly/src.xml + + gnu + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.9.1 + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.4.0 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/**/*.bin + .pmd + + + + + + diff --git a/artifacts/m2/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 b/artifacts/m2/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 new file mode 100644 index 00000000..8d01778d --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.4/commons-io-2.4.pom.sha1 @@ -0,0 +1 @@ +9ece23effe8bce3904f3797a76b1ba6ab681e1b9 \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/2.5/_remote.repositories b/artifacts/m2/commons-io/commons-io/2.5/_remote.repositories new file mode 100644 index 00000000..357b1530 --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.5/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:05 CST 2021 +commons-io-2.5.jar>repo.jenkins-ci.org= +commons-io-2.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.jar b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.jar new file mode 100644 index 00000000..107b061f Binary files /dev/null and b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.jar differ diff --git a/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.jar.sha1 b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.jar.sha1 new file mode 100644 index 00000000..b7f1d93e --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.jar.sha1 @@ -0,0 +1 @@ +2852e6e05fbb95076fc091f6d1780f1f8fe35e0f \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.pom b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.pom new file mode 100644 index 00000000..8ab81491 --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.pom @@ -0,0 +1,422 @@ + + + + + org.apache.commons + commons-parent + 39 + + 4.0.0 + commons-io + commons-io + 2.5 + Apache Commons IO + + 2002 + +The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + http://commons.apache.org/proper/commons-io/ + + + jira + http://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-i/ + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-2.5 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-2.5 + http://svn.apache.org/viewvc/commons/proper/io/tags/commons-io-2.5 + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + +1 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Ian Springer + + + Dominik Stadler + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + junit + junit + 4.12 + test + + + + + 1.6 + 1.6 + io + RC4 + 2.5 + (requires JDK 1.6+) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + site-content + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.14.1 + + + xerces:xercesImpl + + pertest + + -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + + org.apache.rat + apache-rat-plugin + + + + src/test/resources/**/*.bin + test/** + + + site-content/** + .pmd + src/site/resources/download_*.cgi + + + + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.12.1 + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + ${commons.findbugs.version} + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + org.apache.rat + apache-rat-plugin + + + + src/test/resources/**/*.bin + test/** + + + site-content/** + .pmd + src/site/resources/download_*.cgi + + + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 new file mode 100644 index 00000000..c2e40c07 --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.5/commons-io-2.5.pom.sha1 @@ -0,0 +1 @@ +7e39112810f6096061c43504188d18edc7d7eece \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/2.6/_remote.repositories b/artifacts/m2/commons-io/commons-io/2.6/_remote.repositories new file mode 100644 index 00000000..a43b273f --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:19 CST 2021 +commons-io-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-io/commons-io/2.6/commons-io-2.6.pom b/artifacts/m2/commons-io/commons-io/2.6/commons-io-2.6.pom new file mode 100644 index 00000000..754225fd --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.6/commons-io-2.6.pom @@ -0,0 +1,444 @@ + + + + + org.apache.commons + commons-parent + 42 + + 4.0.0 + commons-io + commons-io + 2.6 + Apache Commons IO + + 2002 + +The Apache Commons IO library contains utility classes, stream implementations, file filters, +file comparators, endian transformation classes, and much more. + + + http://commons.apache.org/proper/commons-io/ + + + jira + http://issues.apache.org/jira/browse/IO + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-io/ + + + + + scm:git:http://git-wip-us.apache.org/repos/asf/commons-io.git + scm:git:https://git-wip-us.apache.org/repos/asf/commons-io.git + https://git-wip-us.apache.org/repos/asf?p=commons-io.git + commons-io-2.6 + + + + + Scott Sanders + sanders + sanders@apache.org + + + Java Developer + + + + dIon Gillard + + dion + dion@apache.org + + + Java Developer + + + + Nicola Ken Barozzi + nicolaken + nicolaken@apache.org + + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Stephen Colebourne + scolebourne + + + Java Developer + + 0 + + + Jeremias Maerki + jeremias + jeremias@apache.org + + + Java Developer + + +1 + + + Matthew Hawthorne + matth + matth@apache.org + + + Java Developer + + + + Martin Cooper + martinc + martinc@apache.org + + + Java Developer + + + + Rob Oxspring + roxspring + roxspring@apache.org + + + Java Developer + + + + Jochen Wiedmann + jochen + jochen.wiedmann@gmail.com + + + Niall Pemberton + niallp + + Java Developer + + + + Jukka Zitting + jukka + + Java Developer + + + + Gary Gregory + ggregory + ggregory@apache.org + http://www.garygregory.com + -5 + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + +1 + + + + + + Rahul Akolkar + + + Jason Anderson + + + Nathan Beyer + + + Emmanuel Bourg + + + Chris Eldredge + + + Magnus Grimsell + + + Jim Harrington + + + Thomas Ledoux + + + Andy Lehane + + + Marcelo Liberato + + + Alban Peignier + alban.peignier at free.fr + + + Ian Springer + + + Dominik Stadler + + + Masato Tezuka + + + James Urie + + + Frank W. Zammetti + + + + + + junit + junit + 4.12 + test + + + + + 1.7 + 1.7 + io + org.apache.commons.io + RC1 + 2.6 + (requires JDK 1.7+) + IO + 12310477 + + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output;version=1.4.9999;-noimport:=true, + + org.apache.commons.io; + org.apache.commons.io.comparator; + org.apache.commons.io.filefilter; + org.apache.commons.io.input; + org.apache.commons.io.output; + org.apache.commons.io.*;version=${project.version};-noimport:=true + + + site-content + + 2.8 + 2.17 + + + + clean verify apache-rat:check clirr:check checkstyle:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/**/*.bin + test/** + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + org.apache.commons.io + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + xerces:xercesImpl + + 1 + false + + -Xmx25M + + + **/*Test*.class + + + **/*AbstractTestCase* + **/testtools/** + + **/*$* + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + false + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + false + + + + org.codehaus.mojo + findbugs-maven-plugin + ${commons.findbugs.version} + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + java9 + + 9 + + + + 3.0.0-M1 + + true + + + + diff --git a/artifacts/m2/commons-io/commons-io/2.6/commons-io-2.6.pom.sha1 b/artifacts/m2/commons-io/commons-io/2.6/commons-io-2.6.pom.sha1 new file mode 100644 index 00000000..dc9bed1e --- /dev/null +++ b/artifacts/m2/commons-io/commons-io/2.6/commons-io-2.6.pom.sha1 @@ -0,0 +1 @@ +5060835593e5b6ed18c82fc2e782f0a3c30a00b1 \ No newline at end of file diff --git a/artifacts/m2/hamcrest-core-1.3.jar b/artifacts/m2/hamcrest-core-1.3.jar new file mode 100644 index 00000000..9d5fe16e Binary files /dev/null and b/artifacts/m2/hamcrest-core-1.3.jar differ diff --git a/artifacts/m2/hibernate-validator-6.0.18.Final.jar b/artifacts/m2/hibernate-validator-6.0.18.Final.jar new file mode 100644 index 00000000..347bb421 Binary files /dev/null and b/artifacts/m2/hibernate-validator-6.0.18.Final.jar differ diff --git a/artifacts/m2/io/netty/netty-bom/4.1.43.Final/_remote.repositories b/artifacts/m2/io/netty/netty-bom/4.1.43.Final/_remote.repositories new file mode 100644 index 00000000..ac61fb1e --- /dev/null +++ b/artifacts/m2/io/netty/netty-bom/4.1.43.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:14 CST 2021 +netty-bom-4.1.43.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom b/artifacts/m2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom new file mode 100644 index 00000000..898ecea5 --- /dev/null +++ b/artifacts/m2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom @@ -0,0 +1,235 @@ + + + + 4.0.0 + + org.sonatype.oss + oss-parent + 7 + + + + io.netty + netty-bom + 4.1.43.Final + pom + + Netty/BOM + Netty (Bill of Materials) + https://netty.io/ + + + The Netty Project + https://netty.io/ + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + 2008 + + + https://github.com/netty/netty + scm:git:git://github.com/netty/netty.git + scm:git:ssh://git@github.com/netty/netty.git + netty-4.1.43.Final + + + + + netty.io + The Netty Project Contributors + netty@googlegroups.com + https://netty.io/ + The Netty Project + https://netty.io/ + + + + + + + + io.netty + netty-buffer + 4.1.43.Final + + + io.netty + netty-codec + 4.1.43.Final + + + io.netty + netty-codec-dns + 4.1.43.Final + + + io.netty + netty-codec-haproxy + 4.1.43.Final + + + io.netty + netty-codec-http + 4.1.43.Final + + + io.netty + netty-codec-http2 + 4.1.43.Final + + + io.netty + netty-codec-memcache + 4.1.43.Final + + + io.netty + netty-codec-mqtt + 4.1.43.Final + + + io.netty + netty-codec-redis + 4.1.43.Final + + + io.netty + netty-codec-smtp + 4.1.43.Final + + + io.netty + netty-codec-socks + 4.1.43.Final + + + io.netty + netty-codec-stomp + 4.1.43.Final + + + io.netty + netty-codec-xml + 4.1.43.Final + + + io.netty + netty-common + 4.1.43.Final + + + io.netty + netty-dev-tools + 4.1.43.Final + + + io.netty + netty-handler + 4.1.43.Final + + + io.netty + netty-handler-proxy + 4.1.43.Final + + + io.netty + netty-resolver + 4.1.43.Final + + + io.netty + netty-resolver-dns + 4.1.43.Final + + + io.netty + netty-transport + 4.1.43.Final + + + io.netty + netty-transport-rxtx + 4.1.43.Final + + + io.netty + netty-transport-sctp + 4.1.43.Final + + + io.netty + netty-transport-udt + 4.1.43.Final + + + io.netty + netty-example + 4.1.43.Final + + + io.netty + netty-all + 4.1.43.Final + + + io.netty + netty-transport-native-unix-common + 4.1.43.Final + + + io.netty + netty-transport-native-unix-common + 4.1.43.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.43.Final + osx-x86_64 + + + io.netty + netty-transport-native-epoll + 4.1.43.Final + + + io.netty + netty-transport-native-epoll + 4.1.43.Final + linux-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.43.Final + + + io.netty + netty-transport-native-kqueue + 4.1.43.Final + osx-x86_64 + + + + diff --git a/artifacts/m2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom.sha1 b/artifacts/m2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom.sha1 new file mode 100644 index 00000000..96677f3d --- /dev/null +++ b/artifacts/m2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom.sha1 @@ -0,0 +1 @@ +1672c869b995862c4c20376a570880241a0be348 \ No newline at end of file diff --git a/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/_remote.repositories b/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/_remote.repositories new file mode 100644 index 00000000..79fb1799 --- /dev/null +++ b/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:14 CST 2021 +reactor-bom-Californium-SR14.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/reactor-bom-Californium-SR14.pom b/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/reactor-bom-Californium-SR14.pom new file mode 100644 index 00000000..ca0680ab --- /dev/null +++ b/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/reactor-bom-Californium-SR14.pom @@ -0,0 +1,107 @@ + + + 4.0.0 + io.projectreactor + reactor-bom + Californium-SR14 + pom + Project Reactor 3 Release Train - BOM + Bill of materials to make sure a consistent set of versions is used for Reactor 3. + https://projectreactor.io + + Pivotal Software, Inc. + https://pivotal.io/ + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + smaldini + Stephane Maldini + smaldini at pivotal.io + + + simonbasle + Simon Baslé + sbasle at pivotal.io + + + violetagg + Violeta Georgieva + vgeorgieva at pivotal.io + + + bsideup + Sergei Egorov + segorov at pivotal.io + + + akarnokd + David Karnok + akarnokd at gmail.com + + + + scm:git:git://github.com/reactor/reactor + scm:git:git://github.com/reactor/reactor + https://github.com/reactor/reactor + + + GitHub Issues + https://github.com/reactor + + + + + org.reactivestreams + reactive-streams + 1.0.2 + + + io.projectreactor + reactor-core + 3.2.13.RELEASE + + + io.projectreactor + reactor-test + 3.2.13.RELEASE + + + io.projectreactor.addons + reactor-extra + 3.2.3.RELEASE + + + io.projectreactor.addons + reactor-adapter + 3.2.3.RELEASE + + + io.projectreactor.addons + reactor-logback + 3.2.3.RELEASE + + + io.projectreactor.netty + reactor-netty + 0.8.14.RELEASE + + + io.projectreactor.kafka + reactor-kafka + 1.1.2.RELEASE + + + io.projectreactor.rabbitmq + reactor-rabbitmq + 1.2.0.RELEASE + + + + diff --git a/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/reactor-bom-Californium-SR14.pom.sha1 b/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/reactor-bom-Californium-SR14.pom.sha1 new file mode 100644 index 00000000..63376135 --- /dev/null +++ b/artifacts/m2/io/projectreactor/reactor-bom/Californium-SR14/reactor-bom-Californium-SR14.pom.sha1 @@ -0,0 +1 @@ +cd59d0c83f7c73a5541d064a0df1e9be74858f7d \ No newline at end of file diff --git a/artifacts/m2/jackson-annotations-2.9.10.jar b/artifacts/m2/jackson-annotations-2.9.10.jar new file mode 100644 index 00000000..de054c66 Binary files /dev/null and b/artifacts/m2/jackson-annotations-2.9.10.jar differ diff --git a/artifacts/m2/jackson-core-2.9.10.jar b/artifacts/m2/jackson-core-2.9.10.jar new file mode 100644 index 00000000..1b5e87cc Binary files /dev/null and b/artifacts/m2/jackson-core-2.9.10.jar differ diff --git a/artifacts/m2/jackson-databind-2.9.10.1.jar b/artifacts/m2/jackson-databind-2.9.10.1.jar new file mode 100644 index 00000000..65a7a8ce Binary files /dev/null and b/artifacts/m2/jackson-databind-2.9.10.1.jar differ diff --git a/artifacts/m2/jackson-datatype-jdk8-2.9.10.jar b/artifacts/m2/jackson-datatype-jdk8-2.9.10.jar new file mode 100644 index 00000000..5dea00de Binary files /dev/null and b/artifacts/m2/jackson-datatype-jdk8-2.9.10.jar differ diff --git a/artifacts/m2/jackson-datatype-jsr310-2.9.10.jar b/artifacts/m2/jackson-datatype-jsr310-2.9.10.jar new file mode 100644 index 00000000..07d2b735 Binary files /dev/null and b/artifacts/m2/jackson-datatype-jsr310-2.9.10.jar differ diff --git a/artifacts/m2/jackson-module-parameter-names-2.9.10.jar b/artifacts/m2/jackson-module-parameter-names-2.9.10.jar new file mode 100644 index 00000000..7676179a Binary files /dev/null and b/artifacts/m2/jackson-module-parameter-names-2.9.10.jar differ diff --git a/artifacts/m2/javax.annotation-api-1.3.2.jar b/artifacts/m2/javax.annotation-api-1.3.2.jar new file mode 100644 index 00000000..a8a470a7 Binary files /dev/null and b/artifacts/m2/javax.annotation-api-1.3.2.jar differ diff --git a/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/_remote.repositories b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/_remote.repositories new file mode 100644 index 00000000..c6b2d32d --- /dev/null +++ b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +javax.annotation-api-1.3.2.jar>repo.jenkins-ci.org= +javax.annotation-api-1.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar new file mode 100644 index 00000000..a8a470a7 Binary files /dev/null and b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar differ diff --git a/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar.sha1 b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar.sha1 new file mode 100644 index 00000000..3f0ad948 --- /dev/null +++ b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar.sha1 @@ -0,0 +1 @@ +934c04d3cfef185a8008e7bf34331b79730a9d43 \ No newline at end of file diff --git a/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom new file mode 100644 index 00000000..0c982b44 --- /dev/null +++ b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom @@ -0,0 +1,338 @@ + + + + + 4.0.0 + + net.java + jvnet-parent + 3 + + + javax.annotation + javax.annotation-api + 1.3.2 + + + false + 1.3 + javax.annotation + javax.annotation-api + Oracle Corporation + org.glassfish + 2.3.1 + exclude.xml + Low + + ${extension.name} API + Common Annotations for the JavaTM Platform API + + http://jcp.org/en/jsr/detail?id=250 + + + + ldemichiel + Linda De Michiel + Oracle Corp. + + lead + + + + + + GlassFish Community + https://javaee.github.io/glassfish + + + + CDDL + GPLv2 with classpath exception + https://github.com/javaee/javax.annotation/blob/master/LICENSE + repo + A business-friendly OSS license + + + + GitHub + https://github.com/javaee/javax.annotation/issues + + + + GlassFish Developer + javaee-spec@javaee.groups.io + + + + scm:git:https://github.com/javaee/javax.annotation.git + scm:git:git@github.com:javaee/javax.annotation.git + https://github.com/javaee/javax.annotation + 1.3.2 + + + + + + src/main/java + + **/*.properties + **/*.html + + + + src/main/resources + + META-INF/README + + + + + + maven-compiler-plugin + 2.5.1 + + 1.8 + 1.8 + -Xlint:unchecked + + + + org.glassfish.build + spec-version-maven-plugin + 1.2 + + + ${non.final} + api + ${spec.build} + ${spec.version} + ${new.spec.version} + ${project.version} + ${extension.name} + + + + + + set-spec-properties + check-module + + + + + + org.apache.felix + maven-bundle-plugin + 1.4.3 + + + jar + + + ${spec.bundle.version} + ${spec.bundle.symbolic-name} + ${spec.extension.name} + ${spec.implementation.version} + ${spec.specification.version} + + Java(TM) Common Annotations ${spec.version} API Design Specification + + ${vendor.name} + ${project.organization.name} + ${implementation.vendor.id} + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + java.annotation + + + + + **/*.java + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.2.1 + + + + process + + + + org.glassfish:legal:1.1 + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1 + + true + + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.8 + + + attach-javadocs + + jar + + + + javadoc + + javadoc + + + + + Common Annotations API Documentation + javax.annotation + + + +Oracle + and/or its affiliates. All Rights Reserved. + Use is subject to + license terms. +]]> + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + ${findbugs.threshold} + ${findbugs.exclude} + true + true + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + forked-path + false + ${release.arguments} + @{project.version} + + + + org.apache.maven.plugins + maven-site-plugin + 3.1 + + + + + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + ${findbugs.threshold} + ${findbugs.exclude} + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + diff --git a/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom.sha1 b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom.sha1 new file mode 100644 index 00000000..00f4263a --- /dev/null +++ b/artifacts/m2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom.sha1 @@ -0,0 +1 @@ +302fe96ef206b17f82893083b51b479541fa25ab \ No newline at end of file diff --git a/artifacts/m2/javax/validation/validation-api/2.0.1.Final/_remote.repositories b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/_remote.repositories new file mode 100644 index 00000000..f3b9ed6f --- /dev/null +++ b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +validation-api-2.0.1.Final.jar>repo.jenkins-ci.org= +validation-api-2.0.1.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar new file mode 100644 index 00000000..2368e10a Binary files /dev/null and b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar differ diff --git a/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar.sha1 b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar.sha1 new file mode 100644 index 00000000..37720818 --- /dev/null +++ b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar.sha1 @@ -0,0 +1 @@ +cb855558e6271b1b32e716d24cb85c7f583ce09e \ No newline at end of file diff --git a/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom new file mode 100644 index 00000000..00aa4fbf --- /dev/null +++ b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom @@ -0,0 +1,291 @@ + + + + 4.0.0 + + javax.validation + validation-api + 2.0.1.Final + jar + Bean Validation API + http://beanvalidation.org + + + Bean Validation API + + + + + epbernard + Emmanuel Bernard + emmanuel@hibernate.org + Red Hat, Inc. + http://in.relation.to/emmanuel-bernard/ + + + emmanuelbernard + Emmanuel Bernard + emmanuel@hibernate.org + Red Hat, Inc. + http://in.relation.to/emmanuel-bernard/ + + + hardy.ferentschik + Hardy Ferentschik + hferents@redhat.com + Red Hat, Inc. + http://in.relation.to/hardy-ferentschik/ + + + gunnar.morling + Gunnar Morling + gunnar@hibernate.org + Red Hat, Inc. + http://in.relation.to/gunnar-morling/ + + + guillaume.smet + Guillaume Smet + guillaume.smet@hibernate.org + Red Hat, Inc. + http://in.relation.to/guillaume-smet/ + + + + + JIRA + https://hibernate.atlassian.net/projects/BVAL/ + + + 2007 + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git://github.com/beanvalidation/beanvalidation-api.git + scm:git:git@github.com:beanvalidation/beanvalidation-api.git + https://github.com/beanvalidation/beanvalidation-api + HEAD + + + + + jboss-releases-repository + JBoss Releases Repository + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + jboss-snapshots-repository + JBoss Snapshots Repository + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + 1.8 + 1.8 + UTF-8 + + + + + org.testng + testng + 6.9.10 + test + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.9.3 + + + + ${project.groupId} + ${project.artifactId} + 1.1.0.Final + + + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + + + + + + + + org.apache.felix + maven-bundle-plugin + 3.2.0 + + + + javax.validation.*;version="${project.version}", + + java.validation + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + once + true + + **/*Test.java + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + ${basedir}/target/classes/META-INF/MANIFEST.MF + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + attach-javadocs + + jar + + + + + + http://docs.oracle.com/javase/8/docs/api/ + + Bean Validation API Packages + Bean Validation API ${project.version} + Bean Validation API ${project.version} + + Red Hat Inc. All Rights Reserved. + Released under the Apache Software License 2.0.]]> + + + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + true + deploy + + + + maven-deploy-plugin + 2.8.2 + + + com.mycila + license-maven-plugin + 3.0 + +
${project.basedir}/src/main/resources/license.header
+ true + + ${project.basedir}/src/main/resources/java-header-style.xml + ${project.basedir}/src/main/resources/xml-header-style.xml + + + JAVA_CLASS_STYLE + XML_FILE_STYLE + XML_FILE_STYLE + + + **/*.java + **/*.xml + **/*.xsd + +
+ + + license-headers + + check + + + +
+
+
+ + + + release + + true + + + + +
diff --git a/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom.sha1 b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom.sha1 new file mode 100644 index 00000000..e63c6c8d --- /dev/null +++ b/artifacts/m2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom.sha1 @@ -0,0 +1 @@ +c22c6a1c9dc55d3f3dd56e50d9e4e0d7b9e4e6c0 \ No newline at end of file diff --git a/artifacts/m2/jboss-logging-3.3.3.Final.jar b/artifacts/m2/jboss-logging-3.3.3.Final.jar new file mode 100644 index 00000000..91db418a Binary files /dev/null and b/artifacts/m2/jboss-logging-3.3.3.Final.jar differ diff --git a/artifacts/m2/jul-to-slf4j-1.7.29.jar b/artifacts/m2/jul-to-slf4j-1.7.29.jar new file mode 100644 index 00000000..451f94d0 Binary files /dev/null and b/artifacts/m2/jul-to-slf4j-1.7.29.jar differ diff --git a/artifacts/m2/junit-4.13.1.jar b/artifacts/m2/junit-4.13.1.jar new file mode 100644 index 00000000..b376ffc1 Binary files /dev/null and b/artifacts/m2/junit-4.13.1.jar differ diff --git a/artifacts/m2/junit/junit/4.13.1/_remote.repositories b/artifacts/m2/junit/junit/4.13.1/_remote.repositories new file mode 100644 index 00000000..e4dc30e8 --- /dev/null +++ b/artifacts/m2/junit/junit/4.13.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +junit-4.13.1.pom>repo.jenkins-ci.org= +junit-4.13.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.jar b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.jar new file mode 100644 index 00000000..b376ffc1 Binary files /dev/null and b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.jar differ diff --git a/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.jar.sha1 b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.jar.sha1 new file mode 100644 index 00000000..a0369caa --- /dev/null +++ b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.jar.sha1 @@ -0,0 +1 @@ +cdd00374f1fee76b11e2a9d127405aa3f6be5b6a \ No newline at end of file diff --git a/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.pom b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.pom new file mode 100644 index 00000000..42871588 --- /dev/null +++ b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.pom @@ -0,0 +1,587 @@ + + + 4.0.0 + + junit + junit + 4.13.1 + + JUnit + JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck. + http://junit.org + 2002 + + JUnit + http://www.junit.org + + + + Eclipse Public License 1.0 + http://www.eclipse.org/legal/epl-v10.html + repo + + + + + + dsaff + David Saff + david@saff.net + + + kcooney + Kevin Cooney + kcooney@google.com + + + stefanbirkner + Stefan Birkner + mail@stefan-birkner.de + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + + + JUnit contributors + JUnit + team@junit.org + https://github.com/junit-team/junit4/graphs/contributors + + developers + + + + + + 3.0.4 + + + + scm:git:git://github.com/junit-team/junit4.git + scm:git:git@github.com:junit-team/junit4.git + https://github.com/junit-team/junit4 + r4.13.1 + + + github + https://github.com/junit-team/junit4/issues + + + travis + https://travis-ci.org/junit-team/junit4 + + + https://github.com/junit-team/junit4/wiki/Download-and-Install + + junit-snapshot-repo + Nexus Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots/ + + + junit-releases-repo + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + junit.github.io + gitsite:git@github.com/junit-team/junit4.git + + + + + 1.5 + 2.19.1 + 1.3 + ISO-8859-1 + + 67893CC4 + + + + + org.hamcrest + hamcrest-core + ${hamcrestVersion} + + + + org.hamcrest + hamcrest-library + ${hamcrestVersion} + test + + + + + + + ${project.basedir}/src/main/resources + + + ${project.basedir} + + LICENSE-junit.txt + + + + + + + + maven-enforcer-plugin + 1.4 + + + enforce-versions + initialize + + enforce + + + true + + + + Current version of Maven ${maven.version} required to build the project + should be ${project.prerequisites.maven}, or higher! + + [${project.prerequisites.maven},) + + + Current JDK version ${java.version} should be ${jdkVersion}, or higher! + + ${jdkVersion} + + + Best Practice is to never define repositories in pom.xml (use a repository + manager instead). + + + + No Snapshots Dependencies Allowed! + + + + + + + + + com.google.code.maven-replacer-plugin + replacer + 1.5.3 + + + process-sources + + replace + + + + + false + ${project.build.sourceDirectory}/junit/runner/Version.java.template + ${project.build.sourceDirectory}/junit/runner/Version.java + false + @version@ + ${project.version} + + + + + maven-compiler-plugin + 3.3 + + ${project.build.sourceEncoding} + ${jdkVersion} + ${jdkVersion} + ${jdkVersion} + ${jdkVersion} + 1.5 + true + true + true + true + + -Xlint:unchecked + + 128m + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + signature-check + test + + check + + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + + + + maven-surefire-plugin + ${surefireVersion} + + org/junit/tests/AllTests.java + true + false + + + + org.apache.maven.surefire + surefire-junit47 + ${surefireVersion} + + + + + + maven-source-plugin + 2.4 + + + + maven-javadoc-plugin + 2.10.3 + + ${basedir}/src/main/javadoc/stylesheet.css + protected + false + false + false + true + true + true + JUnit API + UTF-8 + en + ${jdkVersion} + + + api_${jdkVersion} + http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/ + + + *.internal.* + true + 32m + 128m + true + true + + org.hamcrest:hamcrest-core:* + + + + + maven-release-plugin + 2.5.2 + + forked-path + false + -Pgenerate-docs,junit-release ${arguments} + r@{project.version} + + + + maven-site-plugin + 3.4 + + + com.github.stephenc.wagon + wagon-gitsite + 0.4.1 + + + org.apache.maven.doxia + doxia-module-markdown + 1.5 + + + + + maven-jar-plugin + 2.6 + + + false + + true + + + junit + + + + + + maven-clean-plugin + 2.6.1 + + + maven-deploy-plugin + 2.8.2 + + + maven-install-plugin + 2.5.2 + + + maven-resources-plugin + 2.7 + + + + + + + + maven-project-info-reports-plugin + 2.8 + + false + + + + + + index + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + distribution-management + + + + + + maven-javadoc-plugin + 2.10.3 + + javadoc/latest + ${basedir}/src/main/javadoc/stylesheet.css + protected + false + false + false + true + true + true + JUnit API + UTF-8 + en + ${jdkVersion} + + + api_${jdkVersion} + http://docs.oracle.com/javase/${jdkVersion}.0/docs/api/ + + + junit.*,*.internal.* + true + 32m + 128m + true + true + + org.hamcrest:hamcrest-core:* + + + + + + javadoc + + + + + + + + + + junit-release + + + + + + maven-gpg-plugin + 1.6 + + + gpg-sign + verify + + sign + + + + + + + + + generate-docs + + + + + maven-source-plugin + + + attach-sources + prepare-package + + jar-no-fork + + + + + + maven-javadoc-plugin + + + attach-javadoc + package + + jar + + + + + + + + + restrict-doclint + + + [1.8,) + + + + + maven-compiler-plugin + + + -Xlint:unchecked + -Xdoclint:accessibility,reference,syntax + + + + + maven-javadoc-plugin + + -Xdoclint:accessibility -Xdoclint:reference + + + + + + + + maven-javadoc-plugin + + -Xdoclint:accessibility -Xdoclint:reference + + + + + + + java9 + + [1.9,) + + + + 1.6 + + + + + maven-javadoc-plugin + + 1.6 + + + + + + + + maven-javadoc-plugin + + 1.6 + + + + + + + diff --git a/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.pom.sha1 b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.pom.sha1 new file mode 100644 index 00000000..d843b12b --- /dev/null +++ b/artifacts/m2/junit/junit/4.13.1/junit-4.13.1.pom.sha1 @@ -0,0 +1 @@ +643e8b4c40dca9f0b0abd8125d378d9f47d7d69e \ No newline at end of file diff --git a/artifacts/m2/log4j-api-2.11.2.jar b/artifacts/m2/log4j-api-2.11.2.jar new file mode 100644 index 00000000..809773c0 Binary files /dev/null and b/artifacts/m2/log4j-api-2.11.2.jar differ diff --git a/artifacts/m2/log4j-to-slf4j-2.11.2.jar b/artifacts/m2/log4j-to-slf4j-2.11.2.jar new file mode 100644 index 00000000..4bb1a001 Binary files /dev/null and b/artifacts/m2/log4j-to-slf4j-2.11.2.jar differ diff --git a/artifacts/m2/logback-classic-1.2.3.jar b/artifacts/m2/logback-classic-1.2.3.jar new file mode 100644 index 00000000..bed00c0a Binary files /dev/null and b/artifacts/m2/logback-classic-1.2.3.jar differ diff --git a/artifacts/m2/logback-core-1.2.3.jar b/artifacts/m2/logback-core-1.2.3.jar new file mode 100644 index 00000000..487b3956 Binary files /dev/null and b/artifacts/m2/logback-core-1.2.3.jar differ diff --git a/artifacts/m2/net/java/jvnet-parent/3/_remote.repositories b/artifacts/m2/net/java/jvnet-parent/3/_remote.repositories new file mode 100644 index 00000000..287a3902 --- /dev/null +++ b/artifacts/m2/net/java/jvnet-parent/3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:40 CST 2021 +jvnet-parent-3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/net/java/jvnet-parent/3/jvnet-parent-3.pom b/artifacts/m2/net/java/jvnet-parent/3/jvnet-parent-3.pom new file mode 100644 index 00000000..40c8add8 --- /dev/null +++ b/artifacts/m2/net/java/jvnet-parent/3/jvnet-parent-3.pom @@ -0,0 +1,143 @@ + + + 4.0.0 + + net.java + jvnet-parent + 3 + pom + + Java.net Parent + http://java.net/ + Java.net - The Source for Java Technology Collaboration + + + scm:git:git@github.com:sonatype/jvnet-parent.git + scm:git:git@github.com:sonatype/jvnet-parent.git + https://github.com/sonatype/jvnet-parent + + + + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + ${jvnetDistMgmtSnapshotsUrl} + + + jvnet-nexus-staging + Java.net Nexus Staging Repository + https://maven.java.net/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures + and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + -Pjvnet-release + + + + + + + + UTF-8 + https://maven.java.net/content/repositories/snapshots/ + + + + + jvnet-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/artifacts/m2/net/java/jvnet-parent/3/jvnet-parent-3.pom.sha1 b/artifacts/m2/net/java/jvnet-parent/3/jvnet-parent-3.pom.sha1 new file mode 100644 index 00000000..5c535398 --- /dev/null +++ b/artifacts/m2/net/java/jvnet-parent/3/jvnet-parent-3.pom.sha1 @@ -0,0 +1 @@ +cea52f866088650f693b41a4232622d661be9db8 \ No newline at end of file diff --git a/artifacts/m2/net/java/jvnet-parent/4/_remote.repositories b/artifacts/m2/net/java/jvnet-parent/4/_remote.repositories new file mode 100644 index 00000000..a3afaaa3 --- /dev/null +++ b/artifacts/m2/net/java/jvnet-parent/4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:17 CST 2021 +jvnet-parent-4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/net/java/jvnet-parent/4/jvnet-parent-4.pom b/artifacts/m2/net/java/jvnet-parent/4/jvnet-parent-4.pom new file mode 100644 index 00000000..adb7ed9e --- /dev/null +++ b/artifacts/m2/net/java/jvnet-parent/4/jvnet-parent-4.pom @@ -0,0 +1,228 @@ + + + + 4.0.0 + + net.java + jvnet-parent + 4 + pom + + Java.net Parent + http://java.net/ + Java.net - The Source for Java Technology Collaboration + + + scm:git:git@github.com:sonatype/jvnet-parent.git + scm:git:git@github.com:sonatype/jvnet-parent.git + https://github.com/sonatype/jvnet-parent + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + ${jvnetDistMgmtSnapshotsUrl} + + + jvnet-nexus-staging + Java.net Nexus Staging Repository + https://maven.java.net/service/local/staging/deploy/maven2/ + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + forked-path + false + -Pjvnet-release ${release.arguments} + + + + + + + + UTF-8 + https://maven.java.net/content/repositories/snapshots/ + + + + + jvnet-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures + and checksums respectively. + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + + + snapshots + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + https://maven.java.net/content/repositories/snapshots + + false + + + true + + + + + + jvnet-nexus-snapshots + Java.net Nexus Snapshots Repository + https://maven.java.net/content/repositories/snapshots + + false + + + true + + + + + + staging + + false + + + + jvnet-nexus-staging + Java.net Staging Repositoriy + https://maven.java.net/content/repositories/staging/ + + true + + + false + + + + + + jvnet-nexus-staging + Java.net Staging Repositoriy + https://maven.java.net/content/repositories/staging/ + + true + + + false + + + + + + promoted + + false + + + + jvnet-nexus-promoted + Java.net Promoted Repositories + https://maven.java.net/content/repositories/promoted/ + + true + + + false + + + + + + jvnet-nexus-promoted + Java.net Promoted Repositories + https://maven.java.net/content/repositories/promoted/ + + true + + + false + + + + + + diff --git a/artifacts/m2/net/java/jvnet-parent/4/jvnet-parent-4.pom.sha1 b/artifacts/m2/net/java/jvnet-parent/4/jvnet-parent-4.pom.sha1 new file mode 100644 index 00000000..ba5bcd34 --- /dev/null +++ b/artifacts/m2/net/java/jvnet-parent/4/jvnet-parent-4.pom.sha1 @@ -0,0 +1 @@ +a80cde31667f91784a6c68a06b5c6a77418f7822 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/18/_remote.repositories b/artifacts/m2/org/apache/apache/18/_remote.repositories new file mode 100644 index 00000000..7acc44b8 --- /dev/null +++ b/artifacts/m2/org/apache/apache/18/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:16 CST 2021 +apache-18.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/18/apache-18.pom b/artifacts/m2/org/apache/apache/18/apache-18.pom new file mode 100644 index 00000000..4f2d4c9c --- /dev/null +++ b/artifacts/m2/org/apache/apache/18/apache-18.pom @@ -0,0 +1,404 @@ + + + 4.0.0 + + + org.apache + apache + 18 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + 3.0 + + + + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-18 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-18 + https://svn.apache.org/viewvc/maven/pom/tags/apache-18 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.6 + 1.6 + 2.19.1 + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.6 + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-dependency-plugin + 2.10 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 2.0.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.4 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.4 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 2.6 + + + org.apache.rat + apache-rat-plugin + 0.11 + + + + DEPENDENCIES + + + + + org.apache.maven.doxia + doxia-core + 1.2 + + + xerces + xercesImpl + + + + + + + org.codehaus.mojo + clirr-maven-plugin + 2.7 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + gnu + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + diff --git a/artifacts/m2/org/apache/apache/18/apache-18.pom.sha1 b/artifacts/m2/org/apache/apache/18/apache-18.pom.sha1 new file mode 100644 index 00000000..92f26d42 --- /dev/null +++ b/artifacts/m2/org/apache/apache/18/apache-18.pom.sha1 @@ -0,0 +1 @@ +ba52e58bc101f54c9d608fde45bece53d3e74c08 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/19/_remote.repositories b/artifacts/m2/org/apache/apache/19/_remote.repositories new file mode 100644 index 00000000..49f3852c --- /dev/null +++ b/artifacts/m2/org/apache/apache/19/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:25 CST 2021 +apache-19.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/19/apache-19.pom b/artifacts/m2/org/apache/apache/19/apache-19.pom new file mode 100644 index 00000000..19f22967 --- /dev/null +++ b/artifacts/m2/org/apache/apache/19/apache-19.pom @@ -0,0 +1,408 @@ + + + 4.0.0 + + + org.apache + apache + 19 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-19 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.6 + 1.6 + 2.20.1 + posix + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 2.10 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + org.apache.maven.plugins + maven-site-plugin + 3.7 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-shade-plugin + 2.4.3 + + + org.apache.rat + apache-rat-plugin + 0.12 + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.0 + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + + + + diff --git a/artifacts/m2/org/apache/apache/19/apache-19.pom.sha1 b/artifacts/m2/org/apache/apache/19/apache-19.pom.sha1 new file mode 100644 index 00000000..9de0c543 --- /dev/null +++ b/artifacts/m2/org/apache/apache/19/apache-19.pom.sha1 @@ -0,0 +1 @@ +5c1a0daa5201b503555bf8a25be620e2c070dc0e \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/21/_remote.repositories b/artifacts/m2/org/apache/apache/21/_remote.repositories new file mode 100644 index 00000000..670dfd67 --- /dev/null +++ b/artifacts/m2/org/apache/apache/21/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:28 CST 2021 +apache-21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/21/apache-21.pom b/artifacts/m2/org/apache/apache/21/apache-21.pom new file mode 100644 index 00000000..801f194c --- /dev/null +++ b/artifacts/m2/org/apache/apache/21/apache-21.pom @@ -0,0 +1,448 @@ + + + 4.0.0 + + + org.apache + apache + 21 + pom + + The Apache Software Foundation + + The Apache Software Foundation provides support for the Apache community of open-source software projects. + The Apache projects are characterized by a collaborative, consensus based development process, an open and + pragmatic software license, and a desire to create high quality software that leads the way in its field. + We consider ourselves not simply a group of projects sharing a server, but rather a community of developers + and users. + + https://www.apache.org/ + + The Apache Software Foundation + https://www.apache.org/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + announce@apache.org + https://mail-archives.apache.org/mod_mbox/www-announce/ + + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git + https://github.com/apache/maven-apache-parent/tree/${project.scm.tag} + apache-21 + + + + + apache.releases.https + Apache Release Distribution Repository + https://repository.apache.org/service/local/staging/deploy/maven2 + + + apache.snapshots.https + ${distMgmtSnapshotsName} + ${distMgmtSnapshotsUrl} + + + + + Apache Development Snapshot Repository + https://repository.apache.org/content/repositories/snapshots + https://www.apache.org/images/asf_logo_wide.gif + UTF-8 + UTF-8 + source-release + true + + 1.7 + 1.7 + 2.22.0 + posix + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + org.apache.maven.plugins + maven-assembly-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-docck-plugin + 1.1 + + + org.apache.maven.plugins + maven-ear-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + --digest-algo=SHA512 + + + + + org.apache.maven.plugins + maven-help-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-invoker-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + + true + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5.2 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 3.0.0 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + false + deploy + -Papache-release ${arguments} + 10 + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + 1.5 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-scm-plugin + 1.9.5 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.version} + + + org.apache.maven.plugins + maven-war-plugin + 3.2.2 + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.1 + + + org.apache.rat + apache-rat-plugin + 0.12 + + + org.codehaus.mojo + clirr-maven-plugin + 2.8 + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + process-resource-bundles + + process + + + + org.apache:apache-jar-resource-bundle:1.4 + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-version + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + apache-release + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + org.apache.apache.resources + apache-source-release-assembly-descriptor + 1.0.6 + + + + + source-release-assembly + package + + single + + + true + + ${sourceReleaseAssemblyDescriptor} + + posix + + + + + + + true + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-release-artifacts + + sign + + + + + + + net.nicoulaj.maven.plugins + checksum-maven-plugin + 1.7 + + + source-release-checksum + + files + + + + + + SHA-512 + + false + + + ${project.build.directory} + + ${project.artifactId}-${project.version}-source-release.zip + ${project.artifactId}-${project.version}-source-release.tar* + + + + false + + + + + + + + diff --git a/artifacts/m2/org/apache/apache/21/apache-21.pom.sha1 b/artifacts/m2/org/apache/apache/21/apache-21.pom.sha1 new file mode 100644 index 00000000..7d45fb32 --- /dev/null +++ b/artifacts/m2/org/apache/apache/21/apache-21.pom.sha1 @@ -0,0 +1 @@ +525054dec305d2b6b12ed5dbfe43379bd6a5d434 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.14/_remote.repositories b/artifacts/m2/org/apache/commons/commons-compress/1.14/_remote.repositories new file mode 100644 index 00000000..cf9653a7 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:28 CST 2021 +commons-compress-1.14.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom b/artifacts/m2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom new file mode 100644 index 00000000..b1261370 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom @@ -0,0 +1,389 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 42 + + + org.apache.commons + commons-compress + 1.14 + Apache Commons Compress + http://commons.apache.org/proper/commons-compress/ + + +Apache Commons Compress software defines an API for working with +compression and archive formats. These include: bzip2, gzip, pack200, +lzma, xz, Snappy, traditional Unix Compress, DEFLATE, LZ4, Brotli and ar, cpio, +jar, tar, zip, dump, 7z, arj. + + + + 1.7 + 1.7 + compress + COMPRESS + 12310904 + + ${project.version} + RC1 + 1.6.6 + 3.7 + + + true + + + false + + + + jira + http://issues.apache.org/jira/browse/COMPRESS + + + + + junit + junit + 4.12 + test + + + org.brotli + dec + 0.1.2 + true + + + org.tukaani + xz + 1.6 + true + + + org.powermock + powermock-module-junit4 + ${powermock.version} + test + + + org.powermock + powermock-api-mockito + ${powermock.version} + test + + + + + + Torsten Curdt + tcurdt + tcurdt at apache.org + + + Stefan Bodewig + bodewig + bodewig at apache.org + + + Sebastian Bazley + sebb + sebb at apache.org + + + Christian Grobmeier + grobmeier + grobmeier at apache.org + + + Julius Davies + julius + julius at apache.org + + + Damjan Jovanovic + damjan + damjan at apache.org + + + Emmanuel Bourg + ebourg + ebourg at apache.org + + + Gary Gregory + ggregory + ggregory at apache.org + + + + + + Wolfgang Glas + wolfgang.glas at ev-i.at + + + Christian Kohlschütte + ck@newsclub.de + + + Bear Giles + bgiles@coyotesong.com + + + Michael Kuss + mail at michael minus kuss.de + + + Lasse Collin + lasse.collin@tukaani.org + + + John Kodis + + + BELUGA BEHR + + + + + scm:git:http://git-wip-us.apache.org/repos/asf/commons-compress.git + scm:git:https://git-wip-us.apache.org/repos/asf/commons-compress.git + https://git-wip-us.apache.org/repos/asf?p=commons-compress.git + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + src/test/resources/** + .pmd + .projectile + + + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + maven-jar-plugin + + + + org.apache.commons.compress.archivers.Lister + org.apache.commons.compress + + + + + + org.apache.felix + maven-bundle-plugin + + + org.tukaani.xz;resolution:=optional + org.brotli.dec;resolution:=optional + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd-plugin.version} + + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd-plugin.version} + + 200 + ${maven.compiler.source} + + ${basedir}/pmd-ruleset.xml + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + + + + + + run-zipit + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + **/zip/*IT.java + + + + + + + + run-tarit + + + + maven-surefire-plugin + + + **/tar/*IT.java + + + + + + + + + diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom.sha1 b/artifacts/m2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom.sha1 new file mode 100644 index 00000000..5894d72d --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom.sha1 @@ -0,0 +1 @@ +1360415ca6825c7195366620256c0797463d5807 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.16.1/_remote.repositories b/artifacts/m2/org/apache/commons/commons-compress/1.16.1/_remote.repositories new file mode 100644 index 00000000..cfbdc348 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.16.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:43 CST 2021 +commons-compress-1.16.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom b/artifacts/m2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom new file mode 100644 index 00000000..24982b0c --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom @@ -0,0 +1,460 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 43 + + + commons-compress + 1.16.1 + Apache Commons Compress + http://commons.apache.org/proper/commons-compress/ + + +Apache Commons Compress software defines an API for working with +compression and archive formats. These include: bzip2, gzip, pack200, +lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, +Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. + + + + 1.7 + 1.7 + compress + org.apache.commons.compress + COMPRESS + 12310904 + + ${project.version} + RC1 + 1.7.3 + 3.8 + + + true + + + false + + + + jira + http://issues.apache.org/jira/browse/COMPRESS + + + + + org.objenesis + objenesis + 2.6 + + + junit + junit + 4.12 + test + + + com.github.luben + zstd-jni + 1.3.3-3 + true + + + org.brotli + dec + 0.1.2 + true + + + org.tukaani + xz + 1.8 + true + + + org.powermock + powermock-module-junit4 + ${powermock.version} + test + + + org.powermock + powermock-api-mockito + ${powermock.version} + test + + + + + + Torsten Curdt + tcurdt + tcurdt at apache.org + + + Stefan Bodewig + bodewig + bodewig at apache.org + + + Sebastian Bazley + sebb + sebb at apache.org + + + Christian Grobmeier + grobmeier + grobmeier at apache.org + + + Julius Davies + julius + julius at apache.org + + + Damjan Jovanovic + damjan + damjan at apache.org + + + Emmanuel Bourg + ebourg + ebourg at apache.org + + + Gary Gregory + ggregory + ggregory at apache.org + + + Rob Tompkins + chtompki + chtompki at apache.org + + + + + + Wolfgang Glas + wolfgang.glas at ev-i.at + + + Christian Kohlschütte + ck@newsclub.de + + + Bear Giles + bgiles@coyotesong.com + + + Michael Kuss + mail at michael minus kuss.de + + + Lasse Collin + lasse.collin@tukaani.org + + + John Kodis + + + BELUGA BEHR + + + Simon Spero + sesuncedu@gmail.com + + + Michael Hausegger + hausegger.michael@googlemail.com + + + + + scm:git:http://git-wip-us.apache.org/repos/asf/commons-compress.git + scm:git:https://git-wip-us.apache.org/repos/asf/commons-compress.git + https://git-wip-us.apache.org/repos/asf?p=commons-compress.git + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + src/test/resources/** + .pmd + .projectile + .mvn/** + + + + + org.eluder.coveralls + coveralls-maven-plugin + + false + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + maven-jar-plugin + + + + org.apache.commons.compress.archivers.Lister + org.apache.commons.compress + ${commons.module.name} + + + + + + org.apache.felix + maven-bundle-plugin + + + org.tukaani.xz;resolution:=optional,org.brotli.dec;resolution:=optional,com.github.luben.zstd;resolution:=optional + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd-plugin.version} + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd-plugin.version} + + 200 + ${maven.compiler.source} + + ${basedir}/pmd-ruleset.xml + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + + + + + + run-zipit + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + **/zip/*IT.java + + + + + + + + run-tarit + + + + maven-surefire-plugin + + + **/tar/*IT.java + + + + + + + + java9 + + 9 + + + 9 + 0.7.9 + true + + true + + + + + + diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom.sha1 b/artifacts/m2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom.sha1 new file mode 100644 index 00000000..dab00bc9 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom.sha1 @@ -0,0 +1 @@ +f7a23383b8f77a08c5265c6120a0393673a8f92d \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.18/_remote.repositories b/artifacts/m2/org/apache/commons/commons-compress/1.18/_remote.repositories new file mode 100644 index 00000000..518a3be1 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.18/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +commons-compress-1.18.jar>repo.jenkins-ci.org= +commons-compress-1.18.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar new file mode 100644 index 00000000..e401046b Binary files /dev/null and b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar differ diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar.sha1 b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar.sha1 new file mode 100644 index 00000000..b4d4d68d --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar.sha1 @@ -0,0 +1 @@ +1191f9f2bc0c47a8cce69193feb1ff0a8bcb37d5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom new file mode 100644 index 00000000..9a85a355 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom @@ -0,0 +1,536 @@ + + + + 4.0.0 + + org.apache.commons + commons-parent + 47 + + + commons-compress + 1.18 + Apache Commons Compress + https://commons.apache.org/proper/commons-compress/ + + +Apache Commons Compress software defines an API for working with +compression and archive formats. These include: bzip2, gzip, pack200, +lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, +Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj. + + + + 1.7 + 1.7 + compress + org.apache.commons.compress + COMPRESS + 12310904 + + ${project.version} + RC1 + 1.7.3 + 3.8 + + ${project.build.outputDirectory}/META-INF + ${commons.manifestlocation}/MANIFEST.MF + + org.tukaani.xz;resolution:=optional, + org.brotli.dec;resolution:=optional, + com.github.luben.zstd;resolution:=optional, + javax.crypto.*;resolution:=optional, + * + + + + true + + + false + + 0.11.1 + + 4.11.0 + 1.7.21 + + + + jira + https://issues.apache.org/jira/browse/COMPRESS + + + + + junit + junit + 4.12 + test + + + com.github.luben + zstd-jni + 1.3.3-3 + true + + + org.brotli + dec + 0.1.2 + true + + + org.tukaani + xz + 1.8 + true + + + org.powermock + powermock-module-junit4 + ${powermock.version} + test + + + org.powermock + powermock-api-mockito + ${powermock.version} + test + + + + + org.ops4j.pax.exam + pax-exam-container-native + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-junit4 + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-cm + ${pax.exam.version} + test + + + org.ops4j.pax.exam + pax-exam-link-mvn + ${pax.exam.version} + test + + + org.apache.felix + org.apache.felix.framework + 5.6.10 + test + + + javax.inject + javax.inject + 1 + test + + + org.slf4j + slf4j-api + ${slf4j.version} + test + + + + org.osgi + org.osgi.core + 6.0.0 + provided + + + + + + Torsten Curdt + tcurdt + tcurdt at apache.org + + + Stefan Bodewig + bodewig + bodewig at apache.org + + + Sebastian Bazley + sebb + sebb at apache.org + + + Christian Grobmeier + grobmeier + grobmeier at apache.org + + + Julius Davies + julius + julius at apache.org + + + Damjan Jovanovic + damjan + damjan at apache.org + + + Emmanuel Bourg + ebourg + ebourg at apache.org + + + Gary Gregory + ggregory + ggregory at apache.org + + + Rob Tompkins + chtompki + chtompki at apache.org + + + + + + Wolfgang Glas + wolfgang.glas at ev-i.at + + + Christian Kohlschütte + ck@newsclub.de + + + Bear Giles + bgiles@coyotesong.com + + + Michael Kuss + mail at michael minus kuss.de + + + Lasse Collin + lasse.collin@tukaani.org + + + John Kodis + + + BELUGA BEHR + + + Simon Spero + sesuncedu@gmail.com + + + Michael Hausegger + hausegger.michael@googlemail.com + + + + + scm:git:https://git-wip-us.apache.org/repos/asf/commons-compress.git + scm:git:https://git-wip-us.apache.org/repos/asf/commons-compress.git + https://git-wip-us.apache.org/repos/asf?p=commons-compress.git + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + src/test/resources/** + .pmd + .projectile + .mvn/** + + + + + org.eluder.coveralls + coveralls-maven-plugin + + false + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + false + + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + maven-jar-plugin + + + + org.apache.commons.compress.archivers.Lister + org.apache.commons.compress + ${commons.module.name} + + + + + + org.apache.felix + maven-bundle-plugin + + ${commons.manifestlocation} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd-plugin.version} + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + ${karaf.version} + ${project.version} + + + + + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${commons.pmd-plugin.version} + + 200 + ${maven.compiler.source} + + ${basedir}/pmd-ruleset.xml + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + Immutable + a + This class is immutable + + + NotThreadSafe + a + This class is not thread-safe + + + ThreadSafe + a + This class is thread-safe + + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + Normal + Default + ${basedir}/findbugs-exclude-filter.xml + + + + + + + + + run-zipit + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-test-resources + + + + + + + run + + + + + + maven-surefire-plugin + + + **/zip/*IT.java + + + + + + + + run-tarit + + + + maven-surefire-plugin + + + **/tar/*IT.java + + + + + + + + java9+ + + [9,) + + + 9 + 0.7.9 + true + + true + + + + + + diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom.sha1 b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom.sha1 new file mode 100644 index 00000000..f828ee21 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom.sha1 @@ -0,0 +1 @@ +e200ad298ce5683b6c1546d30b19259e79cd575f \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/_remote.repositories b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/_remote.repositories new file mode 100644 index 00000000..d38478b7 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +commons-lang3-3.8.1.jar>repo.jenkins-ci.org= +commons-lang3-3.8.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar new file mode 100644 index 00000000..2c65ce67 Binary files /dev/null and b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar differ diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar.sha1 b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar.sha1 new file mode 100644 index 00000000..347ea7c1 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar.sha1 @@ -0,0 +1 @@ +6505a72a097d9270f7a9e7bf42c4238283247755 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom new file mode 100644 index 00000000..18bb54ce --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom @@ -0,0 +1,916 @@ + + + + + org.apache.commons + commons-parent + 47 + + 4.0.0 + commons-lang3 + 3.8.1 + Apache Commons Lang + + 2001 + + Apache Commons Lang, a package of Java utility classes for the + classes that are in java.lang's hierarchy, or are considered to be so + standard as to justify existence in java.lang. + + + http://commons.apache.org/proper/commons-lang/ + + + jira + http://issues.apache.org/jira/browse/LANG + + + + scm:git:http://git-wip-us.apache.org/repos/asf/commons-lang.git + scm:git:https://git-wip-us.apache.org/repos/asf/commons-lang.git + https://git-wip-us.apache.org/repos/asf?p=commons-lang.git + LANG_3_8_1 + + + + + Daniel Rall + dlr + dlr@finemaltcoding.com + CollabNet, Inc. + + Java Developer + + + + Stephen Colebourne + scolebourne + scolebourne@joda.org + SITA ATS Ltd + 0 + + Java Developer + + + + Henri Yandell + bayard + bayard@apache.org + + + Java Developer + + + + Steven Caswell + scaswell + stevencaswell@apache.org + + + Java Developer + + -5 + + + Robert Burrell Donkin + rdonkin + rdonkin@apache.org + + + Java Developer + + + + Gary D. Gregory + ggregory + ggregory@apache.org + -5 + + Java Developer + + + + Fredrik Westermarck + fredrik + + + + Java Developer + + + + James Carman + jcarman + jcarman@apache.org + Carman Consulting, Inc. + + Java Developer + + + + Niall Pemberton + niallp + + Java Developer + + + + Matt Benson + mbenson + + Java Developer + + + + Joerg Schaible + joehni + joerg.schaible@gmx.de + + Java Developer + + +1 + + + Oliver Heger + oheger + oheger@apache.org + +1 + + Java Developer + + + + Paul Benedict + pbenedict + pbenedict@apache.org + + Java Developer + + + + Benedikt Ritter + britter + britter@apache.org + + Java Developer + + + + Duncan Jones + djones + djones@apache.org + 0 + + Java Developer + + + + Loic Guibert + lguibert + lguibert@apache.org + +4 + + Java Developer + + + + Rob Tompkins + chtompki + chtompki@apache.org + -5 + + Java Developer + + + + + + C. Scott Ananian + + + Chris Audley + + + Stephane Bailliez + + + Michael Becke + + + Benjamin Bentmann + + + Ola Berg + + + Nathan Beyer + + + Stefan Bodewig + + + Janek Bogucki + + + Mike Bowler + + + Sean Brown + + + Alexander Day Chaffee + + + Al Chou + + + Greg Coladonato + + + Maarten Coene + + + Justin Couch + + + Michael Davey + + + Norm Deane + + + Morgan Delagrange + + + Ringo De Smet + + + Russel Dittmar + + + Steve Downey + + + Matthias Eichel + + + Christopher Elkins + + + Chris Feldhacker + + + Roland Foerther + + + Pete Gieser + + + Jason Gritman + + + Matthew Hawthorne + + + Michael Heuer + + + Chas Honton + + + Chris Hyzer + + + Paul Jack + + + Marc Johnson + + + Shaun Kalley + + + Tetsuya Kaneuchi + + + Nissim Karpenstein + + + Ed Korthof + + + Holger Krauth + + + Rafal Krupinski + + + Rafal Krzewski + + + David Leppik + + + Eli Lindsey + + + Sven Ludwig + + + Craig R. McClanahan + + + Rand McNeely + + + Hendrik Maryns + + + Dave Meikle + + + Nikolay Metchev + + + Kasper Nielsen + + + Tim O'Brien + + + Brian S O'Neill + + + Andrew C. Oliver + + + Alban Peignier + + + Moritz Petersen + + + Dmitri Plotnikov + + + Neeme Praks + + + Eric Pugh + + + Stephen Putman + + + Travis Reeder + + + Antony Riley + + + Valentin Rocher + + + Scott Sanders + + + James Sawle + + + Ralph Schaer + + + Henning P. Schmiedehausen + + + Sean Schofield + + + Robert Scholte + + + Reuben Sivan + + + Ville Skytta + + + David M. Sledge + + + Michael A. Smith + + + Jan Sorensen + + + Glen Stampoultzis + + + Scott Stanchfield + + + Jon S. Stevens + + + Sean C. Sullivan + + + Ashwin Suresh + + + Helge Tesgaard + + + Arun Mammen Thomas + + + Masato Tezuka + + + Daniel Trebbien + + + Jeff Varszegi + + + Chris Webb + + + Mario Winterer + + + Stepan Koltsov + + + Holger Hoffstatte + + + Derek C. Ashmore + + + Sebastien Riou + + + Allon Mureinik + + + Adam Hooper + + + Chris Karcher + + + Michael Osipov + + + Thiago Andrade + + + Jonathan Baker + + + Mikhail Mazursky + + + Fabian Lange + + + Michał Kordas + + + Felipe Adorno + + + Adrian Ber + + + Mark Dacek + + + + + + + junit + junit + 4.12 + test + + + org.hamcrest + hamcrest-all + 1.3 + test + + + + org.easymock + easymock + 3.6 + test + + + + org.openjdk.jmh + jmh-core + ${jmh.version} + test + + + + org.openjdk.jmh + jmh-generator-annprocess + ${jmh.version} + test + + + + + + + apache.website + Apache Commons Site + scm:svn:https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang/ + + + + + -Xmx512m + ISO-8859-1 + UTF-8 + 1.7 + 1.7 + + lang + lang3 + org.apache.commons.lang3 + + 3.8.1 + (Java 7+) + + 2.6 + (Requires Java 1.2 or later) + + commons-lang-${commons.release.2.version} + LANG + 12310481 + + lang + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-lang + site-content + utf-8 + + 3.0.0 + false + + + 1.21 + benchmarks + + + false + + 0.11.1 + + + 3.8 + RC1 + true + scm:svn:https://dist.apache.org/repos/dist/dev/commons/lang + Rob Tompkins + B6E73D84EA4FCC47166087253FAAD2CD5ECBB314 + + + + + clean verify apache-rat:check clirr:check checkstyle:check findbugs:check javadoc:javadoc + + + + org.apache.rat + apache-rat-plugin + + + site-content/** + src/site/resources/.htaccess + src/site/resources/download_lang.cgi + src/site/resources/release-notes/RELEASE-NOTES-*.txt + src/test/resources/lang-708-input.txt + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + false + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + plain + + + **/*Test.java + + random + + + + + + + maven-assembly-plugin + + + src/assembly/bin.xml + src/assembly/src.xml + + gnu + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + ${commons.module.name} + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + + javadocs + + + + + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + true + false + + + + org.codehaus.mojo + findbugs-maven-plugin + + ${commons.findbugs.version} + + ${basedir}/findbugs-exclude-filter.xml + + + + + + + + + + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + ${basedir}/checkstyle.xml + true + false + + + + + checkstyle + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + ${commons.findbugs.version} + + ${basedir}/findbugs-exclude-filter.xml + + + + maven-pmd-plugin + 3.9.0 + + ${maven.compiler.target} + + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + + + Needs Work + + + TODO + exact + + + FIXME + exact + + + XXX + exact + + + + + Noteable Markers + + + NOTE + exact + + + NOPMD + exact + + + NOSONAR + exact + + + + + + + + + org.codehaus.mojo + javancss-maven-plugin + 2.1 + + + + + + + setup-checkout + + + site-content + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + prepare-checkout + pre-site + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + + java9+ + + [9,) + + + + -Xmx512m --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED + + true + + + + + java11+ + + [11,) + + + + true + + + + + benchmark + + true + org.apache + + + + + org.codehaus.mojo + exec-maven-plugin + 1.6.0 + + + benchmark + test + + exec + + + test + java + + -classpath + + org.openjdk.jmh.Main + -rf + json + -rff + target/jmh-result.${benchmark}.json + ${benchmark} + + + + + + + + + + diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom.sha1 b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom.sha1 new file mode 100644 index 00000000..935d8cff --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom.sha1 @@ -0,0 +1 @@ +59092f9d06947b986318dfbe297312e08379b0ae \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/25/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/25/_remote.repositories new file mode 100644 index 00000000..39abf636 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:07 CST 2021 +commons-parent-25.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/25/commons-parent-25.pom b/artifacts/m2/org/apache/commons/commons-parent/25/commons-parent-25.pom new file mode 100644 index 00000000..9e3293a2 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/25/commons-parent-25.pom @@ -0,0 +1,1214 @@ + + + + 4.0.0 + + org.apache + apache + + 9 + + org.apache.commons + commons-parent + pom + + 25 + Commons Parent + http://commons.apache.org/ + The Apache Commons Parent Pom provides common settings for all Apache Commons components. + + + + + + 2.2.1 + + + + continuum + http://vmbuild.apache.org/continuum/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.7 + + + org.apache.maven.plugins + maven-assembly-plugin + 2.3 + + + org.apache.maven.plugins + maven-clean-plugin + 2.4.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + ${maven.compile.source} + ${maven.compile.target} + ${commons.encoding} + ${commons.compiler.fork} + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.7 + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.2.2 + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + 1.2.1 + + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.5 + + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + org.apache.commons + commons-build-plugin + 1.4 + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + 2.3.7 + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.0 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compile.source} + ${maven.compile.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + true + target/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Key DESC,Type,Fix Version DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compile.source} + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.0 + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + cobertura-maven-plugin + 2.5.1 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + jdepend-maven-plugin + 2.0-beta-2 + + + + + + + + + release + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + single + + package + + + + + + + + + rc + + + apache.snapshots + Apache Development Snapshot Repository + ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged + + + + + + + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + + package + + + + + maven-release-plugin + + + -Prc + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compile.source} + + + + maven-assembly-plugin + + + + single + + package + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + trunks-proper + + + ../bcel + ../beanutils + ../betwixt + ../chain + ../cli + ../codec + ../collections + ../compress + ../configuration + ../daemon + ../dbcp + ../dbutils + ../digester + ../discovery + ../el + ../email + ../exec + ../fileupload + ../functor + ../io + ../jci + ../jcs + + ../jexl + ../jxpath + ../lang + ../launcher + ../logging + ../math + ../modeler + ../net + ../ognl + ../pool + ../primitives + ../proxy + ../sanselan + ../scxml + + ../validator + ../vfs + + + + + + maven-3 + + + + ${basedir} + + + + + + maven-site-plugin + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + java-1.5-detected + + 1.5 + + + + + + + org.apache.felix + maven-bundle-plugin + + + biz.aQute + bndlib + + 1.15.0 + + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + !buildNumber.skip!true + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + + + + + 25 + RC1 + + + + 1.3 + 1.3 + + + false + + + + + + 2.12 + 2.12 + 2.8.1 + 0.8 + 2.6 + 2.4 + 2.3 + 2.4 + 2.2 + + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + + + target/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + ${commons.encoding} + + ${commons.encoding} + ${commons.encoding} + + + http://download.oracle.com/javase/6/docs/api/ + http://download.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + false + + + diff --git a/artifacts/m2/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 new file mode 100644 index 00000000..831b7716 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/25/commons-parent-25.pom.sha1 @@ -0,0 +1 @@ +67b84199ca4acf0d8fbc5256d90b80f746737e94 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/42/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/42/_remote.repositories new file mode 100644 index 00000000..6a196624 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/42/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:20 CST 2021 +commons-parent-42.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/42/commons-parent-42.pom b/artifacts/m2/org/apache/commons/commons-parent/42/commons-parent-42.pom new file mode 100644 index 00000000..c8c6c090 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/42/commons-parent-42.pom @@ -0,0 +1,1688 @@ + + + + 4.0.0 + + org.apache + apache + 18 + + org.apache.commons + commons-parent + pom + 42 + Apache Commons Parent + http://commons.apache.org/commons-parent-pom.html + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + jira + http://issues.apache.org/jira/browse/COMMONSSITE + + + + + + + + 3.0.5 + + + + jenkins + https://builds.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-42 + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-42 + http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-42 + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + + + true + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + versions-maven-plugin + + 2.3 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-3 + + enforce + + + + + 3.0.0 + + + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-info + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + clirr + + + src/site/resources/profile.clirr + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + + + + + japicmp + + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + + + + + release + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + true + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + true + + + + single + + + verify + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,) + + + 3.0.3 + + 1.15 + + 3.0.1 + + 1.10 + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + + 1.3 + 1.3 + + + false + + + + + + 1.7 + 2.19.1 + 2.19.1 + 2.10.4 + 0.12 + 2.12.1 + 2.7 + 0.9.3 + 2.5 + 2.9 + 2.10 + + 3.6 + 0.7.7.201606060606 + 2.7 + 4.3.0 + EpochMillis + 2.0 + 3.6.0 + 1.1 + 2.5.5 + + 2.5.3 + + 1.9.1 + + 1.11 + + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${project.artifactId} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + + https://analysis.apache.org/ + + + + diff --git a/artifacts/m2/org/apache/commons/commons-parent/42/commons-parent-42.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/42/commons-parent-42.pom.sha1 new file mode 100644 index 00000000..2cbda857 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/42/commons-parent-42.pom.sha1 @@ -0,0 +1 @@ +35d45eda74fe511d3d60b68e1dac29ed55043354 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/43/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/43/_remote.repositories new file mode 100644 index 00000000..966d66e5 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/43/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:43 CST 2021 +commons-parent-43.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/43/commons-parent-43.pom b/artifacts/m2/org/apache/commons/commons-parent/43/commons-parent-43.pom new file mode 100644 index 00000000..2613d2ec --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/43/commons-parent-43.pom @@ -0,0 +1,1704 @@ + + + + 4.0.0 + + org.apache + apache + 18 + + org.apache.commons + commons-parent + pom + 43 + Apache Commons Parent + http://commons.apache.org/commons-parent-pom.html + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + jira + http://issues.apache.org/jira/browse/COMMONSSITE + + + + + + + + + 3.0.5 + + + + jenkins + https://builds.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + + + true + + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + versions-maven-plugin + + 2.5 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven-3 + + enforce + + + + + 3.0.0 + + + true + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + project-team + scm + issue-tracking + mailing-list + dependency-info + dependency-management + dependencies + dependency-convergence + cim + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + clirr + + + src/site/resources/profile.clirr + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + + + + + japicmp + + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + + + + + release + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + + true + + + + maven-source-plugin + + + create-source-jar + + jar + test-jar + + + + + + maven-jar-plugin + + + + test-jar + + + + true + + + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + true + + + + single + + + verify + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,) + + + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + + 1.3 + 1.3 + + + false + + + + + + 1.7 + 2.20.1 + 2.20.1 + 2.20.1 + 3.0.0 + 0.12 + 2.12.1 + 2.8 + 0.11.0 + 2.5 + 2.9 + 3.0.0 + + 3.7 + 0.7.9 + 2.7 + 4.3.0 + EpochMillis + 2.0 + 3.7.0 + 1.1 + 3.0.5 + 3.4.0 + 3.0.0 + 1.16 + + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + + org.apache.commons.${commons.componentid} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${project.artifactId} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + + https://analysis.apache.org/ + + + + diff --git a/artifacts/m2/org/apache/commons/commons-parent/43/commons-parent-43.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/43/commons-parent-43.pom.sha1 new file mode 100644 index 00000000..f17d7f7b --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/43/commons-parent-43.pom.sha1 @@ -0,0 +1 @@ +a24c1d164086ee8f10c11879da2f86f52cbea7fb \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/47/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/47/_remote.repositories new file mode 100644 index 00000000..9e501639 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/47/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:21 CST 2021 +commons-parent-47.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/47/commons-parent-47.pom b/artifacts/m2/org/apache/commons/commons-parent/47/commons-parent-47.pom new file mode 100644 index 00000000..af7d14d0 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/47/commons-parent-47.pom @@ -0,0 +1,1944 @@ + + + + 4.0.0 + + org.apache + apache + 19 + + org.apache.commons + commons-parent + pom + 47 + Apache Commons Parent + http://commons.apache.org/commons-parent-pom.html + The Apache Commons Parent POM provides common settings for all Apache Commons components. + + jira + http://issues.apache.org/jira/browse/COMMONSSITE + + + + + + + + + + + + + + + + 3.0.5 + + + + jenkins + https://builds.apache.org/ + + + + + + + scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/trunk + http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk + + + + + + + + Commons User List + user-subscribe@commons.apache.org + user-unsubscribe@commons.apache.org + user@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-user/ + + http://markmail.org/list/org.apache.commons.users/ + http://old.nabble.com/Commons---User-f319.html + http://www.mail-archive.com/user@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.user + + + + Commons Dev List + dev-subscribe@commons.apache.org + dev-unsubscribe@commons.apache.org + dev@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-dev/ + + http://markmail.org/list/org.apache.commons.dev/ + http://old.nabble.com/Commons---Dev-f317.html + http://www.mail-archive.com/dev@commons.apache.org/ + http://news.gmane.org/gmane.comp.jakarta.commons.devel + + + + Commons Issues List + issues-subscribe@commons.apache.org + issues-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-issues/ + + http://markmail.org/list/org.apache.commons.issues/ + http://old.nabble.com/Commons---Issues-f25499.html + http://www.mail-archive.com/issues@commons.apache.org/ + + + + Commons Commits List + commits-subscribe@commons.apache.org + commits-unsubscribe@commons.apache.org + http://mail-archives.apache.org/mod_mbox/commons-commits/ + + http://markmail.org/list/org.apache.commons.commits/ + http://www.mail-archive.com/commits@commons.apache.org/ + + + + Apache Announce List + announce-subscribe@apache.org + announce-unsubscribe@apache.org + http://mail-archives.apache.org/mod_mbox/www-announce/ + + http://markmail.org/list/org.apache.announce/ + http://old.nabble.com/Apache-News-and-Announce-f109.html + http://www.mail-archive.com/announce@apache.org/ + http://news.gmane.org/gmane.comp.apache.announce + + + + + + + + + src/main/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + src/test/resources + + + + ${basedir} + META-INF + + NOTICE.txt + LICENSE.txt + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + ${commons.compiler.version} + + ${maven.compiler.source} + ${maven.compiler.target} + ${commons.encoding} + + ${commons.compiler.fork} + + ${commons.compiler.compilerVersion} + ${commons.compiler.javac} + + + + org.apache.maven.plugins + maven-assembly-plugin + ${commons.assembly-plugin.version} + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${commons.encoding} + ${commons.docEncoding} + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + true + true + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + true + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + true + + + + + org.apache.maven.wagon + wagon-ssh + ${commons.wagon-ssh.version} + + + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + + true + true + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${commons.surefire.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${commons.failsafe.version} + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + + true + true + true + ${commons.japicmp.ignoreMissingClasses} + + true + + + + org.apache.commons + commons-build-plugin + ${commons.build-plugin.version} + + ${commons.release.name} + + + + org.apache.felix + maven-bundle-plugin + ${commons.felix.version} + true + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${commons.build-helper.version} + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.4 + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + ${minSeverity} + + + + org.codehaus.mojo + versions-maven-plugin + + 2.5 + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + prepare-agent + process-test-classes + + prepare-agent + + + + report + site + + report + + + + check + + check + + + + + BUNDLE + + + CLASS + COVEREDRATIO + ${commons.jacoco.classRatio} + + + INSTRUCTION + COVEREDRATIO + ${commons.jacoco.instructionRatio} + + + METHOD + COVEREDRATIO + ${commons.jacoco.methodRatio} + + + BRANCH + COVEREDRATIO + ${commons.jacoco.branchRatio} + + + LINE + COVEREDRATIO + ${commons.jacoco.lineRatio} + + + COMPLEXITY + COVEREDRATIO + ${commons.jacoco.complexityRatio} + + + + + ${commons.jacoco.haltOnFailure} + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + org.apache.bcel + bcel + 6.2 + + + + + + + + + + maven-assembly-plugin + + + src/assembly/src.xml + + gnu + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + javadoc.resources + generate-sources + + run + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + true + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M2 + + + + 3.0.5 + + + ${maven.compiler.target} + + + true + + + + enforce-maven-3 + + enforce + + + + + + org.apache.maven.plugins + maven-jar-plugin + ${commons.jar-plugin.version} + + + + test-jar + + + + true + + + + + + ${commons.manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${implementation.build} + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + maven-source-plugin + + + create-source-jar + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + ${commons.surefire.java} + + + + + org.apache.commons + commons-build-plugin + + + org.apache.felix + maven-bundle-plugin + + + + true + + ${commons.osgi.excludeDependencies} + ${project.build.directory}/osgi + + + <_nouses>true + + <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME,JAVA_1_8_HOME,JAVA_1_9_HOME + ${commons.osgi.symbolicName} + ${commons.osgi.export} + ${commons.osgi.private} + ${commons.osgi.import} + ${commons.osgi.dynamicImport} + ${project.url} + + + + + bundle-manifest + process-classes + + manifest + + + + + + + org.apache.rat + apache-rat-plugin + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + scm:svn:${commons.scmPubUrl} + ${commons.scmPubCheckoutDirectory} + ${commons.scmPubServer} + true + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + ${basedir}/src/changes/changes.xml + Fix Version,Key,Component,Summary,Type,Resolution,Status + + Fix Version DESC,Type,Key DESC + Fixed + Resolved,Closed + + Bug,New Feature,Task,Improvement,Wish,Test + + true + ${commons.changes.onlyCurrentVersion} + ${commons.changes.maxEntries} + ${commons.changes.runOnlyAtExecutionRoot} + + + + + changes-report + jira-report + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${commons.javadoc.version} + + + true + ${maven.compiler.source} + ${commons.encoding} + ${commons.docEncoding} + true + true + + true + + ${commons.javadoc.java.link} + ${commons.javadoc.javaee.link} + + + + + + default + + javadoc + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${commons.jxr.version} + + + org.apache.maven.plugins + maven-project-info-reports-plugin + ${commons.project-info.version} + + + + + index + summary + modules + + team + scm + issue-management + mailing-lists + dependency-info + dependency-management + dependencies + dependency-convergence + ci-management + + + distribution-management + + + + + + org.apache.maven.plugins + maven-site-plugin + ${commons.site-plugin.version} + + + + navigation.xml,changes.xml + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${commons.surefire-report.version} + + ${commons.surefire-report.aggregate} + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + site-content/** + .checkstyle + .fbprefs + .pmd + src/site/resources/download_*.cgi + src/site/resources/profile.* + profile.* + + maven-eclipse.xml + .externalToolBuilders/** + + + + + org.codehaus.mojo + jdepend-maven-plugin + ${commons.jdepend.version} + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + true + ${commons.japicmp.breakBuildOnBinaryIncompatibleModifications} + + true + true + true + + + + + + + + + svn + + + .svn + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + validate + + create + + + + + + true + + ?????? + + + javasvn + + + + + + + + + + module-name + + + profile.module-name + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${commons.module.name} + + + + + + + + + + + parse-target-version + + + + user.home + + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + parse-version + + + parse-version + + + javaTarget + ${maven.compiler.target} + + + + + + + + + + + + animal-sniffer + + + + src/site/resources/profile.noanimal + + + + + + java${javaTarget.majorVersion}${javaTarget.minorVersion} + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + ${commons.animal-sniffer.version} + + + checkAPIcompatibility + + + + check + + + + + + org.codehaus.mojo.signature + ${animal-sniffer.signature} + ${commons.animal-sniffer.signature.version} + + + + + + + + + + jacoco + + + + src/site/resources/profile.jacoco + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + + + + + cobertura + + + src/site/resources/profile.cobertura + + + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + + + + + clirr + + + src/site/resources/profile.clirr + + + + + + org.codehaus.mojo + clirr-maven-plugin + ${commons.clirr.version} + + + + + + + + japicmp + + + src/site/resources/profile.japicmp + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + + + verify + + cmp + + + + + + + + + + com.github.siom79.japicmp + japicmp-maven-plugin + ${commons.japicmp.version} + + + + + + + + release + + + + maven-install-plugin + + true + + + + maven-release-plugin + + + -Prelease + + + + maven-javadoc-plugin + + + create-javadoc-jar + + javadoc + jar + + package + + + + ${maven.compiler.source} + + + + maven-assembly-plugin + ${commons.assembly-plugin.version} + true + + + + single + + + verify + + + + + + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + org.apache.commons + commons-release-plugin + ${commons.release-plugin.version} + + + detatch-distributions + verify + + detach-distributions + + + + stage-distributions + deploy + + stage-distributions + + + + + + + + + + + apache-release + + + + maven-release-plugin + + apache-release + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-test-sources + + test-jar + + + + + + maven-install-plugin + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + + + java-1.3 + + true + 1.3 + ${JAVA_1_3_HOME}/bin/javac + ${JAVA_1_3_HOME}/bin/java + + + + + + java-1.4 + + true + 1.4 + ${JAVA_1_4_HOME}/bin/javac + ${JAVA_1_4_HOME}/bin/java + + 2.11 + + + + + + java-1.5 + + true + 1.5 + ${JAVA_1_5_HOME}/bin/javac + ${JAVA_1_5_HOME}/bin/java + + + + + + java-1.6 + + true + 1.6 + ${JAVA_1_6_HOME}/bin/javac + ${JAVA_1_6_HOME}/bin/java + + + + + + java-1.7 + + true + 1.7 + ${JAVA_1_7_HOME}/bin/javac + ${JAVA_1_7_HOME}/bin/java + + + + + + java-1.8 + + true + 1.8 + ${JAVA_1_8_HOME}/bin/javac + ${JAVA_1_8_HOME}/bin/java + + + + + + java-1.9 + + true + 1.9 + ${JAVA_1_9_HOME}/bin/javac + ${JAVA_1_9_HOME}/bin/java + + + + + + java-1.10 + + true + 1.10 + ${JAVA_1_10_HOME}/bin/javac + ${JAVA_1_10_HOME}/bin/java + + + + + + java-1.11 + + true + 1.11 + ${JAVA_1_11_HOME}/bin/javac + ${JAVA_1_11_HOME}/bin/java + + + + + + + + test-deploy + + id::default::file:target/deploy + true + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${commons.changes.version} + + + src/changes + true + . + RELEASE-NOTES.txt + + ${commons.release.version} + + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + + + svn-buildnumber + + + !buildNumber.skip + !true + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + generate-resources + + create + + + + + + true + + ?????? + false + false + + + + + + + + javasvn + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + javasvn + + + + + + + + + jdk7-plugin-fix-version + + [1.7,) + + + + + + + + site-basic + + true + true + true + true + true + true + true + true + true + true + true + + + + + travis-cobertura + + + + org.codehaus.mojo + cobertura-maven-plugin + ${commons.cobertura.version} + + + xml + + + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + travis-jacoco + + + + org.jacoco + jacoco-maven-plugin + ${commons.jacoco.version} + + + org.eluder.coveralls + coveralls-maven-plugin + ${commons.coveralls.version} + + ${commons.coveralls.timestampFormat} + + + + + + + + + + + ${project.version} + RC1 + COMMONSSITE + + + + + 1.3 + 1.3 + + + false + + + + + + 1.9 + 1.3 + 2.22.0 + 2.22.0 + 2.22.0 + 3.0.1 + 0.12 + 2.12.1 + 2.8 + 0.12.0 + 2.5 + 3.0.0 + 3.1.0 + + 3.1.0 + 3.1.0 + 3.7.1 + 0.8.1 + 2.7 + 4.3.0 + EpochMillis + 2.0 + 3.7.0 + 1.1 + 3.0.5 + 3.1.3 + 3.5.0 + 3.0.0 + 1.16 + + 1.0 + + + ${project.artifactId}-${commons.release.version} + + -bin + ${project.artifactId}-${commons.release.2.version} + + -bin + ${project.artifactId}-${commons.release.3.version} + + -bin + + + 1.00 + 0.90 + 0.95 + 0.85 + 0.85 + 0.90 + false + + + ${project.artifactId} + + ${project.artifactId} + + + org.apache.commons.${commons.packageId} + org.apache.commons.*;version=${project.version};-noimport:=true + * + + + true + + + ${project.build.directory}/osgi/MANIFEST.MF + + + scp + + + iso-8859-1 + + ${commons.encoding} + + ${commons.encoding} + + ${commons.encoding} + + + http://docs.oracle.com/javase/7/docs/api/ + http://docs.oracle.com/javaee/6/api/ + + + yyyy-MM-dd HH:mm:ssZ + ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} + + + info + + + 100 + + + false + + + false + + 100 + + false + + + ${user.home}/commons-sites + + ${commons.componentid} + + https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${commons.componentid} + ${commons.site.cache}/${commons.site.path} + commons.site + + + true + false + + + scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid} + + + ${user.name} + DEADBEEF + + https://analysis.apache.org/ + + + + diff --git a/artifacts/m2/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 new file mode 100644 index 00000000..593ecb52 --- /dev/null +++ b/artifacts/m2/org/apache/commons/commons-parent/47/commons-parent-47.pom.sha1 @@ -0,0 +1 @@ +391715f2f4f1b32604a201a2f4ea74a174e1f21c \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/_remote.repositories b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/_remote.repositories new file mode 100644 index 00000000..16a92277 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +log4j-api-2.11.2.jar>repo.jenkins-ci.org= +log4j-api-2.11.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar new file mode 100644 index 00000000..809773c0 Binary files /dev/null and b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar differ diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar.sha1 b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar.sha1 new file mode 100644 index 00000000..66c8058e --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar.sha1 @@ -0,0 +1 @@ +f5e9a2ffca496057d6891a3de65128efc636e26e \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom new file mode 100644 index 00000000..4245f817 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom @@ -0,0 +1,338 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.11.2 + ../ + + log4j-api + jar + Apache Log4j API + The Apache Log4j API + + ${basedir}/.. + API Documentation + /api + + + + org.apache.logging.log4j + log4j-api-java9 + provided + zip + + + + org.apache.felix + org.apache.felix.framework + test + + + org.osgi + org.osgi.core + provided + + + junit + junit + test + + + org.eclipse.tycho + org.eclipse.osgi + test + + + org.apache.maven + maven-core + test + + + org.apache.commons + commons-lang3 + test + + + + com.fasterxml.jackson.core + jackson-core + test + + + + com.fasterxml.jackson.core + jackson-databind + test + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.2 + + + unpack-classes + prepare-package + + unpack + + + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + false + + + **/*.class + **/*.java + ${project.build.directory} + false + true + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + add-source + generate-sources + + add-source + + + + ${project.build.directory}/log4j-api-java9 + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + + + 1.7 + 1.7 + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + true + + + + + + default + + test-jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + false + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.logging.log4j.* + + sun.reflect;resolution:=optional, + * + + org.apache.logging.log4j.util.Activator + <_fixupmessages>"Classes found in the wrong directory";is:=warning + + + + + org.apache.maven.plugins + maven-deploy-plugin + ${deploy.plugin.version} + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + + + + + %URL%/show_bug.cgi?id=%ISSUE% + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + ${log4jParentDir}/checkstyle.xml + ${log4jParentDir}/checkstyle-suppressions.xml + false + basedir=${basedir} + licensedir=${log4jParentDir}/checkstyle-header.txt + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ + none + false + true + + http://www.osgi.org/javadoc/r4v43/core/ + +
+ + + non-aggregate + + javadoc + + + +
+ + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.plugin.version} + + true + -Duser.language=en + Normal + Default + ${log4jParentDir}/findbugs-exclude-filter.xml + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + non-aggregate + + jxr + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + ${maven.compiler.target} + + +
+
+
+ diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom.sha1 b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom.sha1 new file mode 100644 index 00000000..844d9762 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom.sha1 @@ -0,0 +1 @@ +95211497acc124aa30fa62d252fbb519a0a23a5a \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/_remote.repositories b/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/_remote.repositories new file mode 100644 index 00000000..80c5c15c --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:15 CST 2021 +log4j-bom-2.11.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom b/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom new file mode 100644 index 00000000..d816c61e --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom @@ -0,0 +1,180 @@ + + + + + org.apache.logging + logging-parent + 1 + + 4.0.0 + Apache Log4j BOM + Apache Log4j Bill of Materials + org.apache.logging.log4j + log4j-bom + 2.11.2 + pom + + + + + org.apache.logging.log4j + log4j-api + ${project.version} + + + + org.apache.logging.log4j + log4j-core + ${project.version} + + + + org.apache.logging.log4j + log4j-1.2-api + ${project.version} + + + + org.apache.logging.log4j + log4j-jcl + ${project.version} + + + + org.apache.logging.log4j + log4j-flume-ng + ${project.version} + + + + org.apache.logging.log4j + log4j-taglib + ${project.version} + + + + org.apache.logging.log4j + log4j-jmx-gui + ${project.version} + + + + org.apache.logging.log4j + log4j-slf4j-impl + ${project.version} + + + + org.apache.logging.log4j + log4j-slf4j18-impl + ${project.version} + + + + org.apache.logging.log4j + log4j-to-slf4j + ${project.version} + + + + org.apache.logging.log4j + log4j-web + ${project.version} + + + + org.apache.logging.log4j + log4j-couchdb + ${project.version} + + + + org.apache.logging.log4j + log4j-mongodb2 + ${project.version} + + + + org.apache.logging.log4j + log4j-mongodb3 + ${project.version} + + + + org.apache.logging.log4j + log4j-cassandra + ${project.version} + + + + org.apache.logging.log4j + log4j-jpa + ${project.version} + + + + org.apache.logging.log4j + log4j-iostreams + ${project.version} + + + + org.apache.logging.log4j + log4j-jul + ${project.version} + + + + org.apache.logging.log4j + log4j-liquibase + ${project.version} + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + true + true + + + + + org.apache.rat + apache-rat-plugin + 0.12 + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + + true + + + + + + + log4j-2.11.2-rc3 + + diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom.sha1 b/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom.sha1 new file mode 100644 index 00000000..649023f2 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom.sha1 @@ -0,0 +1 @@ +38d1f9c0095712f84b14bf58357e29edd5680922 \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/_remote.repositories b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/_remote.repositories new file mode 100644 index 00000000..c3fb40ec --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +log4j-to-slf4j-2.11.2.pom>repo.jenkins-ci.org= +log4j-to-slf4j-2.11.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar new file mode 100644 index 00000000..4bb1a001 Binary files /dev/null and b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar differ diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar.sha1 b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar.sha1 new file mode 100644 index 00000000..8260e237 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar.sha1 @@ -0,0 +1 @@ +6d37bf7b046c0ce2669f26b99365a2cfa45c4c18 \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom new file mode 100644 index 00000000..6c1ef984 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom @@ -0,0 +1,195 @@ + + + + 4.0.0 + + org.apache.logging.log4j + log4j + 2.11.2 + ../ + + log4j-to-slf4j + jar + Apache Log4j to SLF4J Adapter + The Apache Log4j binding between Log4j 2 API and SLF4J. + + ${basedir}/.. + SLF4J Documentation + /log4j-to-slf4j + org.apache.logging.slf4j + + + + org.slf4j + slf4j-api + + + org.apache.logging.log4j + log4j-api + + + ch.qos.logback + logback-core + test + + + ch.qos.logback + logback-core + test-jar + test + + + ch.qos.logback + logback-classic + test + + + junit + junit + test + + + org.hamcrest + hamcrest-all + test + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + false + + + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.logging.slf4j + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + + + + + %URL%/show_bug.cgi?id=%ISSUE% + true + + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + ${log4jParentDir}/checkstyle.xml + ${log4jParentDir}/checkstyle-suppressions.xml + false + basedir=${basedir} + licensedir=${log4jParentDir}/checkstyle-header.txt + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ + false + true +
+ + + non-aggregate + + javadoc + + + +
+ + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.plugin.version} + + true + -Duser.language=en + Normal + Default + ${log4jParentDir}/findbugs-exclude-filter.xml + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + non-aggregate + + jxr + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + ${maven.compiler.target} + + +
+
+
+ diff --git a/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom.sha1 b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom.sha1 new file mode 100644 index 00000000..6f7229ac --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom.sha1 @@ -0,0 +1 @@ +4dff5a1b69d348149ee1fd23f361708c2e6066d6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/_remote.repositories b/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/_remote.repositories new file mode 100644 index 00000000..a3f19ec1 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:39 CST 2021 +log4j-2.11.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom b/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom new file mode 100644 index 00000000..4715c005 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom @@ -0,0 +1,1705 @@ + + + 4.0.0 + org.apache.logging.log4j + log4j + pom + Apache Log4j 2 + 2.11.2 + + org.apache + apache + 21 + + + 3.0.5 + + Apache Log4j 2 + https://logging.apache.org/log4j/2.x/ + + JIRA + https://issues.apache.org/jira/browse/LOG4J2 + + + Jenkins + https://builds.apache.org/job/Log4j%202.x/ + + 1999 + + + rgoers + Ralph Goers + rgoers@apache.org + Nextiva + + PMC Member + + America/Phoenix + + + ggregory + Gary Gregory + ggregory@apache.org + Rocket Software + + PMC Member + + America/Denver + + + sdeboy + Scott Deboy + sdeboy@apache.org + + PMC Member + + America/Los_Angeles + + + rpopma + Remko Popma + rpopma@apache.org + + PMC Member + + Asia/Tokyo + + http://people.apache.org/~rpopma/img/profilepic.jpg + + + + nickwilliams + Nick Williams + nickwilliams@apache.org + + PMC Member + + America/Chicago + + + mattsicker + Matt Sicker + mattsicker@apache.org + CloudBees + + PMC Chair + + America/Chicago + + + bbrouwer + Bruce Brouwer + bruce.brouwer@gmail.com + + Committer + + America/Detroit + + + mikes + Mikael Ståldal + mikes@apache.org + Spotify + + PMC Member + + Europe/Stockholm + + + ckozak + Carter Kozak + ckozak@apache.org + + PMC Member + + America/New York + + + + + + Murad Ersoy + muradersoy@gmail.com + https://www.behance.net/muradersoy + + Illustrator and Designer + created the new Log4j 2 logo. + + Europe/Istanbul + + https://mir-s3-cdn-cf.behance.net/user/138/403dcf1521581.54d67f8fb01f7.jpg + + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + http://mail-archives.apache.org/mod_mbox/logging-log4j-user/ + http://marc.info/?l=log4j-user + http://dir.gmane.org/gmane.comp.jakarta.log4j.user + + + + dev + dev-subscribe@logging.apache.org + dev-unsubscribe@logging.apache.org + dev@logging.apache.org + https://lists.apache.org/list.html?dev@logging.apache.org + + http://mail-archives.apache.org/mod_mbox/logging-dev/ + http://marc.info/?l=dev + http://dir.gmane.org/gmane.comp.jakarta.log4j.devel + + + + + scm:git:https://git-wip-us.apache.org/repos/asf/logging-log4j2.git + scm:git:https://git-wip-us.apache.org/repos/asf/logging-log4j2.git + https://git-wip-us.apache.org/repos/asf?p=logging-log4j2.git;a=summary + log4j-2.11.2-rc3 + + + + ${basedir} + 2.11.2 + Ralph Goers + B3D8E1BA + + + + 1.7.25 + 1.2.3 + 1.9.13 + 2.9.7 + 3.2.18.RELEASE + 1.7.0 + 3.4.2 + 1.2.10 + 2.14.3 + 3.9.0 + 3.8.0 + 3.10.0 + 3.0.5 + 2.12.1 + 3.0.1 + + + + 2.21.0 + 2.21.0 + 3.0.0 + 2.8.2 + 0.12 + 1.2 + 2.7 + 0.8.1 + 2.5.3 + 1.9.5 + 2.5 + 0.10.5 + false + 2.8 + + 3.4 + + + 1.5 + 1.5 + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + 1.7 + 1.7 + Site Documentation + + 1.2 + 2.1.1 + + 4.3.1 + + 5.14.5 + + info + 1.2.1 + 2.23.4 + -Xms256m -Xmx1024m + 1.7 + + + + + + + org.slf4j + slf4j-api + ${slf4jVersion} + + + org.slf4j + slf4j-ext + ${slf4jVersion} + + + ch.qos.logback + logback-core + ${logbackVersion} + test + + + ch.qos.logback + logback-core + test-jar + ${logbackVersion} + test + + + org.eclipse.tycho + org.eclipse.osgi + 3.12.1.v20170821-1548 + + + org.apache.felix + org.apache.felix.framework + 5.6.10 + + + org.apache.maven + maven-core + 3.6.0 + + + commons-codec + commons-codec + 1.11 + + + org.apache.commons + commons-lang3 + 3.7 + + + ch.qos.logback + logback-classic + ${logbackVersion} + test + + + ch.qos.logback + logback-classic + ${logbackVersion} + test-jar + test + + + org.apache.logging.log4j + log4j-api-java9 + ${project.version} + zip + + + org.apache.logging.log4j + log4j-api + ${project.version} + + + org.apache.logging.log4j + log4j-api + ${project.version} + test-jar + test + + + org.apache.logging.log4j + log4j-core-java9 + ${project.version} + zip + + + org.apache.logging.log4j + log4j-core + ${project.version} + + + org.apache.logging.log4j + log4j-core + ${project.version} + test-jar + test + + + org.apache.logging.log4j + log4j-slf4j-impl + ${project.version} + + + org.apache.logging.log4j + log4j-slf4j-impl + ${project.version} + zip + + + org.apache.logging.log4j + log4j-slf4j18-impl + ${project.version} + + + org.apache.logging.log4j + log4j-jcl + ${project.version} + + + commons-logging + commons-logging + ${commonsLoggingVersion} + + + org.apache.logging.log4j + log4j-1.2-api + ${project.version} + + + org.apache.logging.log4j + log4j-flume-ng + ${project.version} + + + org.apache.logging.log4j + log4j-iostreams + ${project.version} + + + org.apache.logging.log4j + log4j-jul + ${project.version} + + + org.apache.logging.log4j + log4j-taglib + ${project.version} + + + org.apache.logging.log4j + log4j-web + ${project.version} + + + com.sleepycat + je + 5.0.73 + + + org.osgi + org.osgi.core + ${osgi.api.version} + provided + + + org.fusesource.jansi + jansi + 1.17.1 + true + + + org.apache.flume + flume-ng-sdk + ${flumeVersion} + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + org.apache.flume + flume-ng-core + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + + + org.apache.flume + flume-ng-embedded-agent + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + org.apache.flume + flume-ng-node + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + + + org.apache.flume.flume-ng-channels + flume-file-channel + ${flumeVersion} + + + org.slf4j + slf4j-log4j12 + + + log4j + log4j + + + org.mortbay.jetty + servlet-api + + + org.mortbay.jetty + servlet-api-2.5 + + + junit + junit + + + + + org.apache.hadoop + hadoop-core + 1.2.1 + + + org.codehaus.jackson + jackson-core-asl + + + org.codehaus.jackson + jackson-mapper-asl + + + org.mortbay.jetty + servlet-api + + + junit + junit + + + + + + org.codehaus.jackson + jackson-core-asl + ${jackson1Version} + runtime + + + org.codehaus.jackson + jackson-mapper-asl + ${jackson1Version} + runtime + + + + + com.fasterxml.jackson.core + jackson-core + ${jackson2Version} + true + + + com.fasterxml.jackson.core + jackson-databind + ${jackson2Version} + true + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson2Version} + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + ${jackson2Version} + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + ${jackson2Version} + true + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + ${jackson2Version} + true + + + + com.sun.mail + javax.mail + 1.6.2 + + + org.jboss.spec.javax.jms + jboss-jms-api_1.1_spec + 1.0.1.Final + provided + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.apache.kafka + kafka-clients + 1.1.1 + + + org.zeromq + jeromq + 0.4.3 + + + javax.servlet + servlet-api + 2.5 + provided + + + com.lmax + disruptor + ${disruptorVersion} + + + com.conversantmedia + disruptor + ${conversantDisruptorVersion} + + jdk7 + + + org.jctools + jctools-core + ${jctoolsVersion} + + + junit + junit + 4.12 + test + + + org.hamcrest + hamcrest-all + 1.3 + test + + + org.codehaus.plexus + plexus-utils + 3.1.0 + test + + + org.mockito + mockito-core + ${mockitoVersion} + test + + + org.springframework + spring-aop + ${springVersion} + + + org.springframework + spring-beans + ${springVersion} + + + org.springframework + spring-context + ${springVersion} + + + org.springframework + spring-core + ${springVersion} + + + org.springframework + spring-expression + ${springVersion} + + + org.springframework + spring-oxm + ${springVersion} + + + org.springframework + spring-test + ${springVersion} + + + org.springframework + spring-web + ${springVersion} + + + org.springframework + spring-webmvc + ${springVersion} + + + org.hsqldb + hsqldb + 2.3.5 + + + + com.h2database + h2 + 1.4.197 + + + org.eclipse.persistence + org.eclipse.persistence.jpa + 2.6.5 + + + org.eclipse.persistence + javax.persistence + ${javax.persistence} + provided + + + org.mongodb + mongo-java-driver + ${mongodb2.version} + + + org.mongodb + mongodb-driver + ${mongodb3.version} + + + org.mongodb + bson + ${mongodb3.version} + + + org.lightcouch + lightcouch + 0.0.6 + + + com.datastax.cassandra + cassandra-driver-core + 3.1.4 + + + org.liquibase + liquibase-core + 3.5.3 + + + net.javacrumbs.json-unit + json-unit + 1.31.1 + test + + + org.xmlunit + xmlunit-core + 2.5.1 + test + + + org.xmlunit + xmlunit-matchers + 2.5.1 + test + + + commons-io + commons-io + 2.6 + test + + + + com.github.tomakehurst + wiremock + test + 2.19.0 + + + + org.apache.commons + commons-compress + 1.18 + + + org.tukaani + xz + 1.8 + test + + + + org.apache.commons + commons-csv + 1.6 + + + + com.google.code.java-allocation-instrumenter + java-allocation-instrumenter + 3.0.1 + + + org.hdrhistogram + HdrHistogram + 2.1.9 + + + org.apache-extras.beanshell + bsh + 2.0b6 + + + org.codehaus.groovy + groovy-jsr223 + 2.5.3 + + + org.codehaus.groovy + groovy-dateutil + 2.5.3 + + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 2.1.1 + test + + + + + + + + org.apache.felix + maven-bundle-plugin + 3.5.0 + true + true + + + + manifest + + process-classes + + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + org.apache.maven.plugins + maven-release-plugin + ${release.plugin.version} + + + org.apache.maven.plugins + maven-scm-plugin + ${scm.plugin.version} + + + org.apache.maven.plugins + maven-checkstyle-plugin + ${checkstyle.plugin.version} + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + Copyright © {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.
+ Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, + and the Apache Log4j logo are trademarks of The Apache Software Foundation.

]]>
+ none +
+
+ + org.apache.maven.plugins + maven-pmd-plugin + ${pmd.plugin.version} + + + + org.apache.maven.plugins + maven-compiler-plugin + ${compiler.plugin.version} + + ${maven.compiler.source} + ${maven.compiler.target} + true + true + UTF-8 + true + 256 + 1024 + + 10000 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin.version} + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafe.plugin.version} + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + verify + + jar-no-fork + test-jar-no-fork + + + + + + org.apache.maven.plugins + maven-jxr-plugin + ${jxr.plugin.version} + + + org.eluder.coveralls + coveralls-maven-plugin + 4.3.0 + + + org.jacoco + jacoco-maven-plugin + ${jacoco.plugin.version} + + + prepare-agent + + prepare-agent + + + + default-report + prepare-package + + report + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + default-jar + + jar + + + + ${manifestfile} + + ${project.name} + ${project.version} + ${project.organization.name} + ${project.name} + ${project.version} + ${project.organization.name} + org.apache + ${maven.compiler.source} + ${maven.compiler.target} + ${module.name} + + + + + + + +
+
+ + + org.apache.maven.plugins + maven-checkstyle-plugin + + + maven-clean-plugin + 3.1.0 + + + maven-resources-plugin + 3.0.2 + + + copy-sitecss + + pre-site + + copy-resources + + + ${project.build.directory}/site + + + ${log4jParentDir}/src/site/resources + + **/* + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${surefire.plugin.version} + + + true + + 1 + false + + ${log4j.skip.test1} + ${log4j.skip.test2} + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${failsafe.plugin.version} + + + + integration-test + verify + + + + + + true + + -Xms256m -Xmx1024m + 1 + false + UTF-8 + + + + org.apache.maven.plugins + maven-site-plugin + ${site.plugin.version} + + + org.apache.velocity + velocity + ${velocity.plugin.version} + + + org.apache.maven.wagon + wagon-ssh + 3.1.0 + + + + + en + + + navigation.xml,changes.xml + + ${log4jParentDir}/src/site + + + + + + + org.apache.maven.plugins + maven-remote-resources-plugin + + + + process + + + true + + + + + + + org.apache.maven.plugins + maven-pdf-plugin + ${pdf.plugin.version} + + + pdf + site + + pdf + + + ${project.reporting.outputDirectory} + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + org.apache.rat + apache-rat-plugin + ${rat.plugin.version} + + + + src/main/resources/META-INF/services/**/* + + .idea/**/* + src/test/resources/**/* + + src/ide/** + + **/*.asc + + src/site/resources/js/jquery.js + src/site/resources/js/jquery.min.js + + log4j-distribution/target/**/* + log4j-distribution/.project + log4j-distribution/.settings/** + velocity.log + + felix-cache/** + RELEASE-NOTES.md + **/revapi.json + + + + + + org.apache.maven.plugins + maven-doap-plugin + 1.2 + + + Java + library + + + + The Apache Logging Services Project creates and maintains open-source software related to the logging of + application behavior and released at no charge to the public. + + https://logging.apache.org + + + + + site + site + + generate + + + + + +
+ + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + + changes-report + jira-report + + + + + Resolved, Closed + Type,Key,Summary,Assignee,Status,Resolution,Fix Version + true + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + index + dependencies + dependency-info + dependency-convergence + dependency-management + project-team + mailing-list + issue-tracking + license + scm + summary + + + + + + ${project.basedir}/src/site/custom/project-info-report.properties + ${project.scm.url} + ${project.scm.connection} + ${project.scm.developerConnection} + log4j-${Log4jReleaseVersion} + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${surefire.plugin.version} + + + integration-tests + + failsafe-report-only + + + + + + + org.apache.rat + apache-rat-plugin + ${rat.plugin.version} + + + + src/main/resources/META-INF/services/**/* + + .idea/**/* + src/test/resources/**/* + + src/ide/** + + **/*.asc + + src/site/resources/js/jquery.js + src/site/resources/js/jquery.min.js + + log4j-distribution/target/**/* + log4j-distribution/.project + log4j-distribution/.settings/** + velocity.log + + felix-cache/** + RELEASE-NOTES.txt + **/revapi.json + + + + + + + https://logging.apache.org/log4j/2.x/download.html + + + www.example.com + scp://www.example.com/www/docs/project/ + + + + log4j-api-java9 + log4j-api + log4j-core-java9 + log4j-core + log4j-core-its + log4j-1.2-api + log4j-slf4j-impl + log4j-slf4j18-impl + log4j-to-slf4j + log4j-jcl + log4j-flume-ng + log4j-taglib + log4j-jmx-gui + log4j-samples + log4j-bom + log4j-jdbc-dbcp2 + log4j-jpa + log4j-couchdb + log4j-mongodb2 + log4j-mongodb3 + log4j-cassandra + log4j-web + log4j-perf + log4j-iostreams + log4j-jul + log4j-liquibase + log4j-appserver + log4j-osgi + + + + pdf + + + + org.apache.maven.plugins + maven-pdf-plugin + ${pdf.plugin.version} + + + pdf + generate-resources + + pdf + + + ${project.reporting.outputDirectory} + + + + + + + + + release-notes + + + + org.apache.maven.plugins + maven-changes-plugin + ${changes.plugin.version} + + + src/changes + true + . + RELEASE-NOTES.md + + changes.xml + + + ${Log4jReleaseVersion} + + ${Log4jReleaseVersion} + ${Log4jReleaseCount} + + true + + + + create-release-notes + generate-resources + + announcement-generate + + + + + + + + + apache-release + + + + maven-assembly-plugin + + + source-release-assembly + + true + + + + + + + + log4j-distribution + + + + rat + + + + + org.apache.rat + apache-rat-plugin + ${rat.plugin.version} + + + + src/main/resources/META-INF/services/**/* + + .idea/**/* + src/test/resources/**/* + + src/ide/** + + **/*.asc + + src/site/resources/js/jquery.js + src/site/resources/js/jquery.min.js + + log4j-distribution/target/**/* + log4j-distribution/.project + log4j-distribution/.settings/** + velocity.log + + felix-cache/** + RELEASE-NOTES.md + **/revapi.json + + + + + verify + + check + + + + + + + + + + yourkit-mac + + + /Applications/YJP.app + + + + com.yourkit + yjp-controller-api-redist + 2013 + system + ${yourkit.home}/lib/yjp-controller-api-redist.jar + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + -agentpath:"${yourkit.home}/bin/mac/libyjpagent.jnilib" + + + + maven-failsafe-plugin + + -agentpath:"${yourkit.home}/bin/mac/libyjpagent.jnilib" + + + + + + + jdk8orGreater + + [1.8,) + + + + + org.revapi + revapi-maven-plugin + ${revapi.plugin.version} + + + org.revapi + revapi-java + 0.18.2 + + + + + check + + false + ${revapi.skip} + false + + revapi.json + + + + + + + + + + + + org.revapi + revapi-maven-plugin + ${revapi.plugin.version} + + + false + + report-aggregate + + + + + report + + + + + + + + + jdk7 + + 1.7 + + + + + org.codehaus.mojo + clirr-maven-plugin + ${clirr.plugin.version} + + + org.apache.bcel + bcel + 6.2 + + + + ${minSeverity} + + + + maven-surefire-plugin + + -XX:MaxPermSize=512m + + + + maven-failsafe-plugin + + -XX:MaxPermSize=512m + + + + + + + useJava7 + + + useJava7 + + + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + + toolchain + + + + + + + 1.7 + + + + + + + + + java8-doclint-disabled + + [1.8,) + + + -Xdoclint:none + + + +
diff --git a/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom.sha1 b/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom.sha1 new file mode 100644 index 00000000..c44aef52 --- /dev/null +++ b/artifacts/m2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom.sha1 @@ -0,0 +1 @@ +d8a9ea2cb2f8494393f6baf9d4995ccaf58936b3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/logging/logging-parent/1/_remote.repositories b/artifacts/m2/org/apache/logging/logging-parent/1/_remote.repositories new file mode 100644 index 00000000..ef96907d --- /dev/null +++ b/artifacts/m2/org/apache/logging/logging-parent/1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:15 CST 2021 +logging-parent-1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/logging/logging-parent/1/logging-parent-1.pom b/artifacts/m2/org/apache/logging/logging-parent/1/logging-parent-1.pom new file mode 100644 index 00000000..3b8e311e --- /dev/null +++ b/artifacts/m2/org/apache/logging/logging-parent/1/logging-parent-1.pom @@ -0,0 +1,84 @@ + + + + + 4.0.0 + + + org.apache + apache + 18 + + + org.apache.logging + logging-parent + pom + 1 + + Apache Logging Services + + Parent pom for Apache Logging Services projects. + + https://logging.apache.org/ + 1999 + + + + 1.7 + 1.7 + + + + scm:git:git://git.apache.org/logging-parent.git + scm:git:https://git-wip-us.apache.org/repos/asf/logging-parent.git + https://git-wip-us.apache.org/repos/asf?p=logging-parent.git + logging-parent-1 + + + + + log4j-user + log4j-user-subscribe@logging.apache.org + log4j-user-unsubscribe@logging.apache.org + log4j-user@logging.apache.org + https://lists.apache.org/list.html?log4j-user@logging.apache.org + + + log4j-dev + log4j-dev-subscribe@logging.apache.org + log4j-dev-unsubscribe@logging.apache.org + log4j-dev@logging.apache.org + https://lists.apache.org/list.html?log4j-dev@logging.apache.org + + + + + JIRA + https://issues.apache.org/jira/browse/LOG4J2 + + + + + diff --git a/artifacts/m2/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 b/artifacts/m2/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 new file mode 100644 index 00000000..8c39e919 --- /dev/null +++ b/artifacts/m2/org/apache/logging/logging-parent/1/logging-parent-1.pom.sha1 @@ -0,0 +1 @@ +11a10ffb21434b96c37f7ca22982d9e20ffb1ee7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/_remote.repositories new file mode 100644 index 00000000..e39294bc --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-aether-provider-3.3.9.jar>repo.jenkins-ci.org= +maven-aether-provider-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar new file mode 100644 index 00000000..9f081209 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar.sha1 new file mode 100644 index 00000000..513d4735 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar.sha1 @@ -0,0 +1 @@ +29e8e7122f7a166ea53785cd75af0ef9d4d848d4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom new file mode 100644 index 00000000..d53e001a --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom @@ -0,0 +1,128 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-aether-provider + + Maven Aether Provider + Extensions to Aether for utilizing Maven POM and repository metadata. + + + + org.apache.maven + maven-model + + + org.apache.maven + maven-model-builder + + + org.apache.maven + maven-repository-metadata + + + org.eclipse.aether + aether-api + + + org.eclipse.aether + aether-spi + + + org.eclipse.aether + aether-util + + + org.eclipse.aether + aether-impl + + + org.codehaus.plexus + plexus-component-annotations + + + org.codehaus.plexus + plexus-utils + + + com.google.inject + guice + no_aop + true + + + aopalliance + aopalliance + + + + + org.apache.commons + commons-lang3 + + + + org.eclipse.aether + aether-connector-basic + test + + + org.eclipse.aether + aether-transport-wagon + test + + + org.apache.maven.wagon + wagon-file + test + + + org.eclipse.sisu + org.eclipse.sisu.plexus + test + + + org.mockito + mockito-core + 1.9.5 + test + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom.sha1 new file mode 100644 index 00000000..80bcb6d4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom.sha1 @@ -0,0 +1 @@ +cc4f4ca5b947baab989741ce4b3ddb9fe9267cb8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/_remote.repositories new file mode 100644 index 00000000..38c20b6f --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-archiver-3.2.0.jar>repo.jenkins-ci.org= +maven-archiver-3.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar new file mode 100644 index 00000000..59cc17d1 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar.sha1 new file mode 100644 index 00000000..3b1adcc4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar.sha1 @@ -0,0 +1 @@ +d2ca965e821e6b9cecd90e7ff6f42414e0e766fe \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom new file mode 100644 index 00000000..eda729a0 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom @@ -0,0 +1,121 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + org.apache.maven + maven-archiver + 3.2.0 + + Apache Maven Archiver + Provides utility methods for creating JARs and other archive files from a Maven project. + + + 3.0 + 7 + + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-archiver-3.2.0 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-archiver-3.2.0 + http://svn.apache.org/viewvc/maven/shared/tags/maven-archiver-3.2.0 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326430 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven + maven-model + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.2.0 + + + + commons-io + commons-io + 2.5 + + + + org.codehaus.plexus + plexus-archiver + 3.5 + + + + org.codehaus.plexus + plexus-utils + 3.0.24 + + + org.codehaus.plexus + plexus-interpolation + 1.22 + + + junit + junit + 4.12 + test + + + org.assertj + assertj-core + 1.7.1 + test + + + + diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom.sha1 new file mode 100644 index 00000000..7c84450a --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom.sha1 @@ -0,0 +1 @@ +f5d47cf6b05ea7ad19ea75c1bb63cd8ba4d7f18c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/_remote.repositories new file mode 100644 index 00000000..ed226324 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +maven-archiver-3.4.0.jar>repo.jenkins-ci.org= +maven-archiver-3.4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar new file mode 100644 index 00000000..0f3894c6 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar.sha1 new file mode 100644 index 00000000..75b9b46b --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar.sha1 @@ -0,0 +1 @@ +95f7b3498b9295ff203393107fbaf439d08204db \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom new file mode 100644 index 00000000..bf031884 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom @@ -0,0 +1,126 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 33 + ../../pom/maven/maven-shared-components/pom.xml + + + org.apache.maven + maven-archiver + 3.4.0 + + Apache Maven Archiver + Provides utility methods for creating JARs and other archive files from a Maven project. + + + 3.0 + 7 + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-archiver.git + scm:git:https://gitbox.apache.org/repos/asf/maven-archiver.git + https://github.com/apache/maven-archiver/tree/${project.scm.tag} + maven-archiver-3.4.0 + + + jira + https://issues.apache.org/jira/issues/?jql=project%3DMSHARED+AND+component%3Dmaven-archiver + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-archiver/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven + maven-model + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.2.1 + + + + commons-io + commons-io + 2.5 + + + + org.codehaus.plexus + plexus-archiver + 4.1.0 + + + + org.codehaus.plexus + plexus-utils + 3.1.0 + + + org.codehaus.plexus + plexus-interpolation + 1.25 + + + junit + junit + 4.12 + test + + + org.assertj + assertj-core + 1.7.1 + test + + + + diff --git a/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom.sha1 new file mode 100644 index 00000000..6b54d389 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom.sha1 @@ -0,0 +1 @@ +aa4c600afe718e77b4c4f46fa6c705d936f49254 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/_remote.repositories new file mode 100644 index 00000000..b4d5a1b0 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-artifact-3.3.9.jar>repo.jenkins-ci.org= +maven-artifact-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar new file mode 100644 index 00000000..eaf7d4db Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar.sha1 new file mode 100644 index 00000000..7eb53127 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar.sha1 @@ -0,0 +1 @@ +0f43afa184555fbc6e36b3334b17246c39b30f6e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom new file mode 100644 index 00000000..b23cc9a2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom @@ -0,0 +1,56 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-artifact + + Maven Artifact + + + + org.codehaus.plexus + plexus-utils + + + org.apache.commons + commons-lang3 + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.apache.maven.artifact.versioning.ComparableVersion + + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom.sha1 new file mode 100644 index 00000000..23a61fb3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom.sha1 @@ -0,0 +1 @@ +d1d1835d6f9f725841f6e0c8e40e00a19a4a1f9a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/_remote.repositories new file mode 100644 index 00000000..68bd00d4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-builder-support-3.3.9.jar>repo.jenkins-ci.org= +maven-builder-support-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar new file mode 100644 index 00000000..905c6ae7 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar.sha1 new file mode 100644 index 00000000..0b934146 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar.sha1 @@ -0,0 +1 @@ +a96f29da7623c0e1db9824f628548fe8181f6dd0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom new file mode 100644 index 00000000..4262f45e --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom @@ -0,0 +1,47 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-builder-support + + Maven Builder Support + Support for descriptor builders (model, setting, toolchains) + + + + org.codehaus.plexus + plexus-utils + + + org.apache.commons + commons-lang3 + + + + diff --git a/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom.sha1 new file mode 100644 index 00000000..8000035b --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom.sha1 @@ -0,0 +1 @@ +1875969a89c3488ee855334012ff99b1888e4d22 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-core/3.3.9/_remote.repositories new file mode 100644 index 00000000..c254fd75 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-core/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-core-3.3.9.jar>repo.jenkins-ci.org= +maven-core-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar new file mode 100644 index 00000000..337f62a6 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar.sha1 new file mode 100644 index 00000000..926972f3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar.sha1 @@ -0,0 +1 @@ +47154012330ea639849c618ebc11cff6870e570a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom new file mode 100644 index 00000000..531b9241 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom @@ -0,0 +1,236 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-core + + Maven Core + Maven Core classes. + + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,JavadocType,MethodName,MagicNumber,ConstantName,VisibilityModifier,InnerAssignment + + + + + + org.apache.maven + maven-model + + + + org.apache.maven + maven-settings + + + org.apache.maven + maven-settings-builder + + + org.apache.maven + maven-repository-metadata + + + org.apache.maven + maven-artifact + + + org.apache.maven + maven-plugin-api + + + org.apache.maven + maven-model-builder + + + org.apache.maven + maven-aether-provider + + + org.eclipse.aether + aether-impl + + + org.eclipse.aether + aether-api + + + org.eclipse.aether + aether-util + + + + org.eclipse.sisu + org.eclipse.sisu.plexus + + + com.google.inject + guice + no_aop + + + org.codehaus.plexus + plexus-interpolation + + + org.codehaus.plexus + plexus-utils + + + org.codehaus.plexus + plexus-classworlds + + + org.codehaus.plexus + plexus-component-annotations + + + org.sonatype.plexus + plexus-sec-dispatcher + + + org.apache.commons + commons-lang3 + + + commons-jxpath + commons-jxpath + test + + + org.mockito + mockito-core + 1.9.5 + test + + + + + + + src/main/resources + true + + + + + + org.apache.rat + apache-rat-plugin + + + lifecycle-executor.txt + plugin-manager.txt + project-builder.txt + src/site/resources/design/** + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + [1.2,) + + create-timestamp + + + + + + + + + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + org.eclipse.sisu + sisu-maven-plugin + + + org.codehaus.modello + modello-maven-plugin + + 1.1.0 + + src/main/mdo/toolchains.mdo + + + + + plugin-site-doc + pre-site + + xdoc + + + 1.0.0 + + src/main/mdo/extension.mdo + + + + + + + org.codehaus.mojo + buildnumber-maven-plugin + + + create-noncanonicalrev + + create-timestamp + + + 'NON-CANONICAL_'yyyy-MM-dd'T'HH:mm:ssXXX_'${user.name}' + nonCanonicalRevision + + + + create-buildnumber + + create + + + false + false + ${nonCanonicalRevision} + + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom.sha1 new file mode 100644 index 00000000..b997799a --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom.sha1 @@ -0,0 +1 @@ +5fadd931c97ffd20b1b72b57d7816b59e1a66ca6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/_remote.repositories new file mode 100644 index 00000000..92cdcb6a --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-model-builder-3.3.9.jar>repo.jenkins-ci.org= +maven-model-builder-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar new file mode 100644 index 00000000..c2e36413 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar.sha1 new file mode 100644 index 00000000..9fbe4e8b --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar.sha1 @@ -0,0 +1 @@ +e2055f9adb9f3c9a93e6b36fffe79781a785de2d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom new file mode 100644 index 00000000..29d1e77e --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom @@ -0,0 +1,88 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-model-builder + + Maven Model Builder + The effective model builder, with inheritance, profile activation, interpolation, ... + + + + org.codehaus.plexus + plexus-utils + + + org.codehaus.plexus + plexus-interpolation + + + org.codehaus.plexus + plexus-component-annotations + + + org.apache.maven + maven-model + + + org.apache.maven + maven-artifact + + + org.apache.maven + maven-builder-support + + + com.google.guava + guava + + + org.apache.commons + commons-lang3 + + + org.eclipse.sisu + org.eclipse.sisu.plexus + test + + + com.google.inject + guice + no_aop + test + + + xmlunit + xmlunit + 1.3 + test + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom.sha1 new file mode 100644 index 00000000..140b4984 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom.sha1 @@ -0,0 +1 @@ +565b650ca8225bf9b9f84c60a87a9f1def578255 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/3.3.9/_remote.repositories new file mode 100644 index 00000000..110dea11 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-model-3.3.9.jar>repo.jenkins-ci.org= +maven-model-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar new file mode 100644 index 00000000..cb0e15c3 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar.sha1 new file mode 100644 index 00000000..c2d32e2d --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar.sha1 @@ -0,0 +1 @@ +6efde8cbcb4de4c47f7e9c2a3ab2806022b5c70f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom new file mode 100644 index 00000000..7d8a864b --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom @@ -0,0 +1,130 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-model + + Maven Model + Model for Maven POM (Project Object Model) + + + FileLength + + + + + org.codehaus.plexus + plexus-utils + + + org.apache.commons + commons-lang3 + + + + + + + org.codehaus.modello + modello-maven-plugin + + 4.0.0 + + src/main/mdo/maven.mdo + + + + + standard + + java + xpp3-reader + xpp3-extended-reader + xpp3-writer + + + + + + org.apache.maven.plugins + maven-site-plugin + + + + navigation.xml + + + + + + + + + all-models + + + + org.codehaus.modello + modello-maven-plugin + + + v3 + + java + xpp3-writer + xpp3-reader + xsd + + + 3.0.0 + true + + + + + + maven-jar-plugin + + + package + + jar + + + all + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom.sha1 new file mode 100644 index 00000000..4d626dbf --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom.sha1 @@ -0,0 +1 @@ +4435603380715177bdda01d89c62ee69fd58dfc1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/30/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/30/_remote.repositories new file mode 100644 index 00000000..521d9899 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/30/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:04 CST 2021 +maven-parent-30.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/30/maven-parent-30.pom b/artifacts/m2/org/apache/maven/maven-parent/30/maven-parent-30.pom new file mode 100644 index 00000000..e877bb57 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/30/maven-parent-30.pom @@ -0,0 +1,1313 @@ + + + 4.0.0 + + + + org.apache + apache + 18 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 30 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Chair + + Europe/Paris + + + agudian + Andreas Gudian + agudian@apache.org + + PMC Member + + Europe/Berlin + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + Sonatype + cstamas@apache.org + +1 + + PMC Member + + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Member + + +1 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Melbourne + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Member + + Europe/Amsterdam + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + -8 + + PMC Member + + + + snicoll + Stephane Nicoll + snicoll@apache.org + ASF + + PMC Member + + +1 + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + Europe/Berlin + + Committer + + + + andham + Anders Hammar + andham@apache.org + +1 + + Committer + + + + bdemers + Brian Demers + Sonatype + bdemers@apache.org + -5 + + Committer + + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + -8 + + Committer + + + + dbradicich + Damian Bradicich + Sonatype + dbradicich@apache.org + -5 + + Committer + + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + godin + Evgeny Mandrikov + SonarSource + godin@apache.org + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + struberg + Mark Struberg + struberg@apache.org + + Committer + + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + users-subscribe@maven.apache.org + users-unsubscribe@maven.apache.org + users@maven.apache.org + https://mail-archives.apache.org/mod_mbox/maven-users + + http://www.mail-archive.com/users@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Users-f40176.html + http://maven-users.markmail.org/ + + + + Maven Developer List + dev-subscribe@maven.apache.org + dev-unsubscribe@maven.apache.org + dev@maven.apache.org + https://mail-archives.apache.org/mod_mbox/maven-dev + + http://www.mail-archive.com/dev@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html + http://maven-dev.markmail.org/ + + + + Maven Issues List + issues-subscribe@maven.apache.org + issues-unsubscribe@maven.apache.org + https://mail-archives.apache.org/mod_mbox/maven-issues/ + + http://www.mail-archive.com/issues@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html + http://maven-issues.markmail.org/ + + + + Maven Commits List + commits-subscribe@maven.apache.org + commits-unsubscribe@maven.apache.org + https://mail-archives.apache.org/mod_mbox/maven-commits/ + + http://www.mail-archive.com/commits@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html + http://maven-commits.markmail.org/ + + + + Maven Announcements List + announce@maven.apache.org + announce-subscribe@maven.apache.org + announce-unsubscribe@maven.apache.org + https://mail-archives.apache.org/mod_mbox/maven-announce/ + + http://www.mail-archive.com/announce@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html + http://maven-announce.markmail.org/ + + + + Maven Notifications List + notifications-subscribe@maven.apache.org + notifications-unsubscribe@maven.apache.org + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + + http://www.mail-archive.com/notifications@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html + http://maven-notifications.markmail.org/ + + + + + + maven-archetype-bundles + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-30 + scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-30 + https://svn.apache.org/viewvc/maven/pom/tags/maven-parent-30 + + + + Jenkins + https://builds.apache.org/view/M-R/view/Maven + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 6 + 1.${javaVersion} + 1.${javaVersion} + https://analysis.apache.org/ + ${user.home}/maven-sites + ../.. + 3.4 + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.6 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${mavenPluginToolsVersion} + provided + + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + true + + + + org.codehaus.modello + modello-maven-plugin + 1.8.1 + + true + + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${maven.site.cache}/${maven.site.path} + true + + + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + org.codehaus.plexus + plexus-component-metadata + 1.6 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.15 + + config/maven_checks.xml + config/maven-header.txt + + src/main/java + src/test/java + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.6 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + true + apache-release + deploy + ${arguments} + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.3 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-changes-plugin + 2.12 + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + ban-known-bad-maven-versions + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. + + + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-3 + + + + + org.apache.rat + apache-rat-plugin + + + rat-check + + check + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + false + + + + + index + summary + dependency-info + modules + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + verify + + cpd-check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + true + + + org.codehaus.plexus + plexus-javadoc + 1.0 + + + + + + default + + javadoc + test-javadoc + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + org.codehaus.sonar-plugins + maven-report + 0.1 + + + + + + site.scm-deploy + + maven.site.scm-deploydeploy + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + +
diff --git a/artifacts/m2/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1 new file mode 100644 index 00000000..d99d813a --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/30/maven-parent-30.pom.sha1 @@ -0,0 +1 @@ +64a1dc2866c00bce807e9e581c5f17d9dc132b36 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/31/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/31/_remote.repositories new file mode 100644 index 00000000..da55424e --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/31/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:24 CST 2021 +maven-parent-31.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/31/maven-parent-31.pom b/artifacts/m2/org/apache/maven/maven-parent/31/maven-parent-31.pom new file mode 100644 index 00000000..6101fae7 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/31/maven-parent-31.pom @@ -0,0 +1,1357 @@ + + + 4.0.0 + + + + org.apache + apache + 19 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 31 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Chair + + Europe/Amsterdam + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + andham + Anders Hammar + andham@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + cstamas@apache.org + +1 + + PMC Member + + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + gboue + Guillaume Boué + gboue@apache.org + + PMC Member + + Europe/Paris + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Member + + Europe/Paris + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Member + + +1 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Melbourne + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + -8 + + PMC Member + + + + snicoll + Stephane Nicoll + snicoll@apache.org + ASF + + PMC Member + + +1 + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + Europe/Berlin + + Committer + + + + bdemers + Brian Demers + Sonatype + bdemers@apache.org + -5 + + Committer + + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + -8 + + Committer + + + + dbradicich + Damian Bradicich + Sonatype + dbradicich@apache.org + -5 + + Committer + + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + godin + Evgeny Mandrikov + SonarSource + godin@apache.org + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + struberg + Mark Struberg + struberg@apache.org + + Committer + + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + + + agudian + Andreas Gudian + agudian@apache.org + + Emeritus + + Europe/Berlin + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + users-subscribe@maven.apache.org + users-unsubscribe@maven.apache.org + users@maven.apache.org + https://lists.apache.org/list.html?users@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-users + http://www.mail-archive.com/users@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Users-f40176.html + http://maven-users.markmail.org/ + + + + Maven Developer List + dev-subscribe@maven.apache.org + dev-unsubscribe@maven.apache.org + dev@maven.apache.org + https://lists.apache.org/list.html?dev@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-dev + http://www.mail-archive.com/dev@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html + http://maven-dev.markmail.org/ + + + + Maven Issues List + issues-subscribe@maven.apache.org + issues-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?issues@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-issues/ + http://www.mail-archive.com/issues@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html + http://maven-issues.markmail.org/ + + + + Maven Commits List + commits-subscribe@maven.apache.org + commits-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?commits@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-commits/ + http://www.mail-archive.com/commits@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html + http://maven-commits.markmail.org/ + + + + Maven Announcements List + announce@maven.apache.org + announce-subscribe@maven.apache.org + announce-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?announce@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-announce/ + http://www.mail-archive.com/announce@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html + http://maven-announce.markmail.org/ + + + + Maven Notifications List + notifications-subscribe@maven.apache.org + notifications-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?notifications@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + http://www.mail-archive.com/notifications@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html + http://maven-notifications.markmail.org/ + + + + + + maven-archetype-bundles + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + https://github.com/apache/maven-parent/tree/${project.scm.tag} + maven-parent-31 + + + + Jenkins + https://builds.apache.org/view/M-R/view/Maven/job/maven-box/ + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 6 + 1.${javaVersion} + 1.${javaVersion} + https://builds.apache.org/analysis/ + ${user.home}/maven-sites + ../.. + 3.5.1 + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.7.1 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${mavenPluginToolsVersion} + provided + + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + true + + + + org.codehaus.modello + modello-maven-plugin + 1.9.1 + + true + + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + ${maven.site.cache}/${maven.site.path} + true + + + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + config/maven_checks.xml + config/maven-header.txt + + + src/main/java + + + src/test/java + + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + apache-release + deploy + ${arguments} + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.0 + + true + true + true + en + + + org.codehaus.plexus + plexus-javadoc + 1.0 + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + true + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + true + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + ban-known-bad-maven-versions + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. + + + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-7 + + + + + org.apache.rat + apache-rat-plugin + + + .repository/** + .maven/spy.log + dependency-reduced-pom.xml + .java-version + + + + + rat-check + + check + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + false + + + + + index + summary + dependency-info + modules + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + verify + + cpd-check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + test-javadoc + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + org.codehaus.sonar-plugins + maven-report + 0.1 + + + + + +
diff --git a/artifacts/m2/org/apache/maven/maven-parent/31/maven-parent-31.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/31/maven-parent-31.pom.sha1 new file mode 100644 index 00000000..930283a1 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/31/maven-parent-31.pom.sha1 @@ -0,0 +1 @@ +3547c25479d1dfcb72e439984af2e90d117d70c7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/33/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/33/_remote.repositories new file mode 100644 index 00000000..e07ffd51 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/33/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:28 CST 2021 +maven-parent-33.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/33/maven-parent-33.pom b/artifacts/m2/org/apache/maven/maven-parent/33/maven-parent-33.pom new file mode 100644 index 00000000..f60234af --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/33/maven-parent-33.pom @@ -0,0 +1,1376 @@ + + + 4.0.0 + + + + org.apache + apache + 21 + ../asf/pom.xml + + + org.apache.maven + maven-parent + 33 + pom + + Apache Maven + Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. + https://maven.apache.org/ + 2002 + + + + + rfscholte + Robert Scholte + rfscholte@apache.org + + PMC Chair + + Europe/Amsterdam + + + aheritier + Arnaud Héritier + aheritier@apache.org + + PMC Member + + +1 + + + andham + Anders Hammar + andham@apache.org + + PMC Member + + +1 + + + baerrach + Barrie Treloar + baerrach@apache.org + + PMC Member + + Australia/Adelaide + + + bimargulies + Benson Margulies + bimargulies@apache.org + + PMC Member + + America/New_York + + + brianf + Brian Fox + brianf@apache.org + Sonatype + + PMC Member + + -5 + + + cstamas + Tamas Cservenak + cstamas@apache.org + +1 + + PMC Member + + + + dennisl + Dennis Lundberg + dennisl@apache.org + ASF + + PMC Member + + +1 + + + dkulp + Daniel Kulp + dkulp@apache.org + ASF + + PMC Member + + -5 + + + evenisse + Emmanuel Venisse + evenisse@apache.org + ASF + + PMC Member + + +1 + + + gboue + Guillaume Boué + gboue@apache.org + + PMC Member + + Europe/Paris + + + hboutemy + Hervé Boutemy + hboutemy@apache.org + ASF + + PMC Member + + Europe/Paris + + + ifedorenko + Igor Fedorenko + igor@ifedorenko.com + Sonatype + + PMC Member + + -5 + + + jvanzyl + Jason van Zyl + jason@maven.org + + PMC Member + + -5 + + + khmarbaise + Karl Heinz Marbaise + khmarbaise@apache.org + + PMC Member + + +1 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + PMC Member + + +1 + + + mkleint + Milos Kleint + + PMC Member + + + + olamy + Olivier Lamy + olamy@apache.org + + PMC Member + + Australia/Melbourne + + + michaelo + Michael Osipov + michaelo@apache.org + + PMC Member + + Europe/Berlin + + + rgoers + Ralph Goers + rgoers@apache.org + Intuit + -8 + + PMC Member + + + + snicoll + Stephane Nicoll + snicoll@apache.org + ASF + + PMC Member + + +1 + + + stephenc + Stephen Connolly + stephenc@apache.org + + PMC Member + + 0 + + + tibordigana + Tibor Digaňa + tibordigana@apache.org + + PMC Member + + Europe/Bratislava + + + vsiveton + Vincent Siveton + vsiveton@apache.org + ASF + + PMC Member + + -5 + + + wfay + Wayne Fay + wfay@apache.org + ASF + + PMC Member + + -6 + + + + + adangel + Andreas Dangel + adangel@apache.org + Europe/Berlin + + Committer + + + + bdemers + Brian Demers + Sonatype + bdemers@apache.org + -5 + + Committer + + + + bellingard + Fabrice Bellingard + + Committer + + + + bentmann + Benjamin Bentmann + bentmann@apache.org + Sonatype + + Committer + + +1 + + + chrisgwarp + Chris Graham + chrisgwarp@apache.org + + Committer + + Australia/Melbourne + + + dantran + Dan Tran + dantran@apache.org + -8 + + Committer + + + + dbradicich + Damian Bradicich + Sonatype + dbradicich@apache.org + -5 + + Committer + + + + brett + Brett Porter + brett@apache.org + ASF + + Committer + + +10 + + + dfabulich + Daniel Fabulich + dfabulich@apache.org + + Committer + + -8 + + + fgiust + Fabrizio Giustina + fgiust@apache.org + openmind + + Committer + + +1 + + + godin + Evgeny Mandrikov + SonarSource + godin@apache.org + + Committer + + +3 + + + handyande + Andrew Williams + handyande@apache.org + + Committer + + 0 + + + imod + Dominik Bartholdi + imod@apache.org + + Committer + + Europe/Zurich + + + jjensen + Jeff Jensen + + Committer + + + + ltheussl + Lukas Theussl + ltheussl@apache.org + + Committer + + +1 + + + markh + Mark Hobson + markh@apache.org + + Committer + + 0 + + + mauro + Mauro Talevi + + Committer + + + + mfriedenhagen + Mirko Friedenhagen + mfriedenhagen@apache.org + + Committer + + +1 + + + mmoser + Manfred Moser + mmoser@apache.org + + Committer + + -8 + + + nicolas + Nicolas de Loof + + Committer + + + + oching + Maria Odea B. Ching + + Committer + + + + pgier + Paul Gier + pgier@apache.org + Red Hat + + Committer + + -6 + + + ptahchiev + Petar Tahchiev + ptahchiev@apache.org + + Committer + + +2 + + + rafale + Raphaël Piéroni + rafale@apache.org + Dexem + + Committer + + +1 + + + schulte + Christian Schulte + schulte@apache.org + + Committer + + Europe/Berlin + + + simonetripodi + Simone Tripodi + simonetripodi@apache.org + + Committer + + +1 + + + sor + Christian Stein + sor@apache.org + + Committer + + Europe/Berlin + + + struberg + Mark Struberg + struberg@apache.org + + Committer + + + + tchemit + Tony Chemit + tchemit@apache.org + CodeLutin + + Committer + + Europe/Paris + + + vmassol + Vincent Massol + vmassol@apache.org + ASF + + Committer + + +1 + + + + + agudian + Andreas Gudian + agudian@apache.org + + Emeritus + + Europe/Berlin + + + aramirez + Allan Q. Ramirez + + Emeritus + + + + bayard + Henri Yandell + + Emeritus + + + + carlos + Carlos Sanchez + carlos@apache.org + ASF + + Emeritus + + +1 + + + chrisjs + Chris Stevenson + + Emeritus + + + + dblevins + David Blevins + + Emeritus + + + + dlr + Daniel Rall + + Emeritus + + + + epunzalan + Edwin Punzalan + epunzalan@apache.org + + Emeritus + + -8 + + + felipeal + Felipe Leme + + Emeritus + + + + jdcasey + John Casey + jdcasey@apache.org + ASF + + Emeritus + + -6 + + + jmcconnell + Jesse McConnell + jmcconnell@apache.org + ASF + + Emeritus + + -6 + + + joakime + Joakim Erdfelt + joakime@apache.org + ASF + + Emeritus + + -5 + + + jruiz + Johnny Ruiz III + jruiz@apache.org + + Emeritus + + + + jstrachan + James Strachan + + Emeritus + + + + jtolentino + Ernesto Tolentino Jr. + jtolentino@apache.org + ASF + + Emeritus + + +8 + + + kenney + Kenney Westerhof + kenney@apache.org + Neonics + + Emeritus + + +1 + + + mperham + Mike Perham + mperham@gmail.com + IBM + + Emeritus + + -6 + + + ogusakov + Oleg Gusakov + + Emeritus + + + + pschneider + Patrick Schneider + pschneider@gmail.com + + Emeritus + + -6 + + + rinku + Rahul Thakur + + Emeritus + + + + shinobu + Shinobu Kuwai + + Emeritus + + + + smorgrav + Torbjorn Eikli Smorgrav + + Emeritus + + + + trygvis + Trygve Laugstol + trygvis@apache.org + ASF + + Emeritus + + +1 + + + wsmoak + Wendy Smoak + wsmoak@apache.org + + Emeritus + + -7 + + + + + + Maven User List + mailto:users-subscribe@maven.apache.org + mailto:users-unsubscribe@maven.apache.org + mailto:users@maven.apache.org + https://lists.apache.org/list.html?users@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-users + https://www.mail-archive.com/users@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Users-f40176.html + https://maven-users.markmail.org/ + + + + Maven Developer List + mailto:dev-subscribe@maven.apache.org + mailto:dev-unsubscribe@maven.apache.org + mailto:dev@maven.apache.org + https://lists.apache.org/list.html?dev@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-dev + https://www.mail-archive.com/dev@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html + https://maven-dev.markmail.org/ + + + + Maven Issues List + mailto:issues-subscribe@maven.apache.org + mailto:issues-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?issues@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-issues/ + https://www.mail-archive.com/issues@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Issues-f219593.html + https://maven-issues.markmail.org/ + + + + Maven Commits List + mailto:commits-subscribe@maven.apache.org + mailto:commits-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?commits@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-commits/ + https://www.mail-archive.com/commits@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Commits-f277168.html + https://maven-commits.markmail.org/ + + + + Maven Announcements List + announce@maven.apache.org + mailto:announce-subscribe@maven.apache.org + mailto:announce-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?announce@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-announce/ + https://www.mail-archive.com/announce@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Announcements-f326045.html + https://maven-announce.markmail.org/ + + + + Maven Notifications List + mailto:notifications-subscribe@maven.apache.org + mailto:notifications-unsubscribe@maven.apache.org + https://lists.apache.org/list.html?notifications@maven.apache.org + + https://mail-archives.apache.org/mod_mbox/maven-notifications/ + https://www.mail-archive.com/notifications@maven.apache.org + http://maven.40175.n5.nabble.com/Maven-Notifications-f301718.html + https://maven-notifications.markmail.org/ + + + + + + maven-plugins + maven-shared-components + maven-skins + doxia-tools + apache-resource-bundles + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + scm:git:https://gitbox.apache.org/repos/asf/maven-parent.git + https://github.com/apache/maven-parent/tree/${project.scm.tag} + maven-parent-33 + + + + Jenkins + https://builds.apache.org/view/M-R/view/Maven/job/maven-box/ + + + mail + +
notifications@maven.apache.org
+
+
+
+
+ + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 6 + 1.${javaVersion} + 1.${javaVersion} + https://builds.apache.org/analysis/ + ${user.home}/maven-sites + ../.. + 3.5.2 + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.7.1 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${mavenPluginToolsVersion} + provided + + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + org.codehaus.modello + modello-maven-plugin + 1.9.1 + + true + + + + + org.apache.maven.plugins + maven-site-plugin + + + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${maven.site.cache}/${maven.site.path} + apache.releases.https + true + + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + config/maven_checks.xml + config/maven-header.txt + + + src/main/java + + + src/test/java + + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.target} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-release-plugin + + apache-release + deploy + ${arguments} + true + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.5 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + true + en + + + org.codehaus.plexus + plexus-javadoc + 1.0 + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + true + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + true + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.rat + apache-rat-plugin + [0.10,) + + check + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + checkstyle-check + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + + true + + + + ban-known-bad-maven-versions + + enforce + + + + + [3.0.4,) + Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin. + + + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-9 + + + + + org.apache.rat + apache-rat-plugin + + + .repository/** + .maven/spy.log + dependency-reduced-pom.xml + .java-version + + + + + rat-check + + check + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + false + + + + + index + summary + dependency-info + modules + team + scm + issue-management + mailing-lists + dependency-management + dependencies + dependency-convergence + ci-management + plugin-management + plugins + distribution-management + + + + + + + + + + jdk-toolchain + + + + org.apache.maven.plugins + maven-toolchains-plugin + + + + ${maven.compiler.target} + + + + + + + toolchain + + + + + + + + + quality-checks + + + quality-checks + true + + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + cpd-check + verify + + cpd-check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + + org.codehaus.mojo + taglist-maven-plugin + + + + + FIXME Work + + + fixme + ignoreCase + + + @fixme + ignoreCase + + + + + Todo Work + + + todo + ignoreCase + + + @todo + ignoreCase + + + + + Deprecated Work + + + @deprecated + ignoreCase + + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + default + + javadoc + test-javadoc + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + org.codehaus.sonar-plugins + maven-report + 0.1 + + + + + +
diff --git a/artifacts/m2/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 new file mode 100644 index 00000000..c994386d --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-parent/33/maven-parent-33.pom.sha1 @@ -0,0 +1 @@ +7240caff8e305ee4f2065010ed2b5657a083fb6b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/_remote.repositories new file mode 100644 index 00000000..8f76c1c3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-plugin-api-3.3.9.jar>repo.jenkins-ci.org= +maven-plugin-api-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar new file mode 100644 index 00000000..4418b5cf Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar.sha1 new file mode 100644 index 00000000..1a771570 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar.sha1 @@ -0,0 +1 @@ +aa706ea7ca23776861b4eb2cea97cf345e791496 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom new file mode 100644 index 00000000..a35ad934 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom @@ -0,0 +1,85 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-plugin-api + + Maven Plugin API + The API for plugins - Mojos - development. + + + + org.apache.maven + maven-model + + + org.apache.maven + maven-artifact + + + wagon-provider-api + org.apache.maven.wagon + + + + + org.eclipse.sisu + org.eclipse.sisu.plexus + + + + + + + org.codehaus.modello + modello-maven-plugin + + + src/main/mdo/lifecycle.mdo + + 1.0.0 + + + + plugin-site-doc + pre-site + + xdoc + + + + src/main/mdo/plugin.mdo + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom.sha1 new file mode 100644 index 00000000..8c8dbb5f --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom.sha1 @@ -0,0 +1 @@ +9a2b35a6e916b9fea2a6afa9cd5238efd3d0c407 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/_remote.repositories new file mode 100644 index 00000000..2c5b3c76 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-repository-metadata-3.3.9.jar>repo.jenkins-ci.org= +maven-repository-metadata-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar new file mode 100644 index 00000000..d1129e06 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar.sha1 new file mode 100644 index 00000000..f882af8e --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar.sha1 @@ -0,0 +1 @@ +6850232b35e504057d67bde11efddebf6271e1ce \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom new file mode 100644 index 00000000..14990ad2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom @@ -0,0 +1,57 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-repository-metadata + + Maven Repository Metadata Model + Per-directory local and remote repository metadata. + + + + org.codehaus.plexus + plexus-utils + + + + + + + org.codehaus.modello + modello-maven-plugin + + 1.1.0 + + src/main/mdo/metadata.mdo + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom.sha1 new file mode 100644 index 00000000..75d85d88 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom.sha1 @@ -0,0 +1 @@ +a84e1588e9b5b59383582a4d9f30d4e9f46d6ee1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/_remote.repositories new file mode 100644 index 00000000..5f179610 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-settings-builder-3.3.9.jar>repo.jenkins-ci.org= +maven-settings-builder-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar new file mode 100644 index 00000000..dd2d4007 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar.sha1 new file mode 100644 index 00000000..59f27e24 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar.sha1 @@ -0,0 +1 @@ +fe5ad82564dc07a31855da543db8d5376def3c26 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom new file mode 100644 index 00000000..21ef456e --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom @@ -0,0 +1,83 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-settings-builder + + Maven Settings Builder + The effective settings builder, with inheritance and password decryption. + + + + Thomas Meyer + + + + + + org.apache.maven + maven-builder-support + + + + org.codehaus.plexus + plexus-utils + + + org.codehaus.plexus + plexus-interpolation + + + org.codehaus.plexus + plexus-component-annotations + + + org.apache.maven + maven-settings + + + org.sonatype.plexus + plexus-sec-dispatcher + + + org.apache.commons + commons-lang3 + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom.sha1 new file mode 100644 index 00000000..76fef2f8 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom.sha1 @@ -0,0 +1 @@ +d489410b2fb313d152ef951d905150e2681f92ca \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/_remote.repositories new file mode 100644 index 00000000..e35e53a2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-settings-3.3.9.jar>repo.jenkins-ci.org= +maven-settings-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar new file mode 100644 index 00000000..b3e2dc21 Binary files /dev/null and b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar.sha1 new file mode 100644 index 00000000..1d479d62 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar.sha1 @@ -0,0 +1 @@ +68d4180c51468ae8f45869f8f9c569092262fcca \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom new file mode 100644 index 00000000..28ceb517 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom @@ -0,0 +1,57 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven + 3.3.9 + + + maven-settings + + Maven Settings + Maven Settings model. + + + + org.codehaus.plexus + plexus-utils + + + + + + + org.codehaus.modello + modello-maven-plugin + + 1.1.0 + + src/main/mdo/settings.mdo + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom.sha1 new file mode 100644 index 00000000..a02f5903 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom.sha1 @@ -0,0 +1 @@ +6920acd1a0bf6ec1b76f591375441ea30219a74d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/3.3.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven/3.3.9/_remote.repositories new file mode 100644 index 00000000..272ec078 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven/3.3.9/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:30 CST 2021 +maven-3.3.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom b/artifacts/m2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom new file mode 100644 index 00000000..7d44da68 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom @@ -0,0 +1,677 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 27 + ../pom/maven/pom.xml + + + maven + 3.3.9 + pom + + Apache Maven + Maven is a software build management and + comprehension tool. Based on the concept of a project object model: + builds, dependency management, documentation creation, site + publication, and distribution publication are all controlled from + the declarative file. Maven can be extended by plugins to utilise a + number of other development tools for reporting or the build + process. + + http://maven.apache.org/ref/${project.version}/ + 2001 + + + 3.0.5 + 1.7 + 1.7 + 2.5.2 + 1.2 + 3.4 + 4.11 + 1.6 + 1.21 + 3.0.22 + + 18.0 + 4.0 + 0.3.2 + 2.10 + 1.3 + 1.7 + 1.8.3 + 1.3 + 1.0.2.v20150114 + 1.7.5 + true + + apache-maven + Maven + Apache Maven + ref/3-LATEST + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,JavadocType,MagicNumber,InnerAssignment,MethodName + **/package-info.java + + + + maven-plugin-api + maven-builder-support + maven-model + maven-model-builder + maven-core + maven-settings + maven-settings-builder + maven-artifact + maven-aether-provider + maven-repository-metadata + maven-embedder + maven-compat + apache-maven + + + + scm:git:https://git-wip-us.apache.org/repos/asf/maven.git + scm:git:https://git-wip-us.apache.org/repos/asf/maven.git + https://github.com/apache/maven/tree/${project.scm.tag} + maven-3.3.9 + + + jira + https://issues.apache.org/jira/browse/MNG + + + Jenkins + https://builds.apache.org/job/maven-3.x/ + + + http://maven.apache.org/download.html + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + + Stuart McCulloch + + + Christian Schulte (MNG-2199) + + + Christopher Tubbs (MNG-4226) + + + Konstantin Perikov (MNG-4565) + + + Sébastian Le Merdy (MNG-5613) + + + Mark Ingram (MNG-5639) + + + Phil Pratt-Szeliga (MNG-5645) + + + Florencia Tarditti (PR 41) + + + Anton Tanasenko + + + Joseph Walton (MNG-5297) + + + + + + + + ${maven.version} + + + + + + + + + + org.apache.maven + maven-model + ${project.version} + + + org.apache.maven + maven-settings + ${project.version} + + + org.apache.maven + maven-settings-builder + ${project.version} + + + org.apache.maven + maven-plugin-api + ${project.version} + + + org.apache.maven + maven-embedder + ${project.version} + + + org.apache.maven + maven-core + ${project.version} + + + org.apache.maven + maven-model-builder + ${project.version} + + + org.apache.maven + maven-compat + ${project.version} + + + org.apache.maven + maven-artifact + ${project.version} + + + org.apache.maven + maven-aether-provider + ${project.version} + + + org.apache.maven + maven-repository-metadata + ${project.version} + + + org.apache.maven + maven-builder-support + ${project.version} + + + + + org.codehaus.plexus + plexus-utils + ${plexusUtilsVersion} + + + com.google.guava + guava + ${guavaVersion} + + + com.google.inject + guice + ${guiceVersion} + + + com.google.inject + guice + ${guiceVersion} + no_aop + + + org.eclipse.sisu + org.eclipse.sisu.plexus + ${sisuInjectVersion} + + + org.codehaus.plexus + plexus-component-annotations + ${plexusVersion} + + + junit + junit + + + + + org.codehaus.plexus + plexus-classworlds + ${classWorldsVersion} + + + org.codehaus.plexus + plexus-interpolation + ${plexusInterpolationVersion} + + + org.slf4j + slf4j-api + ${slf4jVersion} + + + org.slf4j + slf4j-simple + ${slf4jVersion} + true + + + ch.qos.logback + logback-classic + 1.0.7 + true + + + + org.apache.maven.wagon + wagon-provider-api + ${wagonVersion} + + + org.apache.maven.wagon + wagon-file + ${wagonVersion} + + + org.apache.maven.wagon + wagon-http + ${wagonVersion} + shaded + + + commons-logging + commons-logging + + + + + + org.eclipse.aether + aether-api + ${aetherVersion} + + + org.eclipse.aether + aether-spi + ${aetherVersion} + + + org.eclipse.aether + aether-impl + ${aetherVersion} + + + org.eclipse.aether + aether-util + ${aetherVersion} + + + org.eclipse.aether + aether-connector-basic + ${aetherVersion} + + + org.eclipse.aether + aether-transport-wagon + ${aetherVersion} + + + + commons-cli + commons-cli + ${commonsCliVersion} + + + commons-lang + commons-lang + + + commons-logging + commons-logging + + + + + commons-jxpath + commons-jxpath + ${jxpathVersion} + + + org.apache.commons + commons-lang3 + ${commonsLangVersion} + + + org.sonatype.plexus + plexus-sec-dispatcher + ${securityDispatcherVersion} + + + org.sonatype.plexus + plexus-cipher + ${cipherVersion} + + + + + + + + + junit + junit + ${junitVersion} + test + + + + + + + + + org.codehaus.plexus + plexus-component-metadata + ${plexusVersion} + + + + generate-metadata + generate-test-metadata + + + + + + org.eclipse.sisu + sisu-maven-plugin + ${sisuInjectVersion} + + + + main-index + test-index + + + + + + org.apache.maven.plugins + maven-release-plugin + + true + + + + org.apache.maven.plugins + maven-surefire-plugin + + -Xmx256m + + + + org.codehaus.modello + modello-maven-plugin + ${modelloVersion} + + + site-docs + pre-site + + xdoc + xsd + + + + standard + + java + xpp3-reader + xpp3-writer + + + + + + org.apache.felix + maven-bundle-plugin + 1.0.0 + + + org.codehaus.mojo + buildnumber-maven-plugin + 1.2 + + + org.apache.maven.plugins + maven-site-plugin + + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + org.apache.rat + apache-rat-plugin + + + src/test/resources*/** + src/test/projects/** + src/test/remote-repo/** + **/*.odg + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.rat + apache-rat-plugin + [0.10,) + + check + + + + + + + + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + org.codehaus.mojo.signature + java17 + 1.0 + + + + + check-java-1.6-compat + process-classes + + check + + + + + + org.apache.maven.plugins + maven-doap-plugin + 1.1 + + + The mission of the Apache Maven project is to create and maintain software + libraries that provide a widely-used project build tool, targeting mainly Java + development. Apache Maven promotes the use of dependencies via a + standardized coordinate system, binary plugins, and a standard build + lifecycle. + + + + + org.apache.rat + apache-rat-plugin + + + bootstrap/** + README.bootstrap.txt + .repository/** + .maven/spy.log + .java-version + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + ${maven.version} + + + + + + + + + + + + apache-release + + + + maven-assembly-plugin + + + source-release-assembly + + + true + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + true + true + + http://download.eclipse.org/aether/aether-core/${aetherVersion}/apidocs/ + http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/ + + + + + aggregate + false + + aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + + + aggregate + false + + aggregate + + + + + + + + + maven-repo-local + + + maven.repo.local + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + + maven.repo.local + ${maven.repo.local} + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom.sha1 new file mode 100644 index 00000000..c1923992 --- /dev/null +++ b/artifacts/m2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom.sha1 @@ -0,0 +1 @@ +6e8c698e365e1a895770db9eec7bd3e544e1464f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/_remote.repositories new file mode 100644 index 00000000..b4a0e1d5 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:21 CST 2021 +maven-plugin-annotations-3.5.2.jar>repo.jenkins-ci.org= +maven-plugin-annotations-3.5.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar new file mode 100644 index 00000000..8dfe4db1 Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar differ diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar.sha1 new file mode 100644 index 00000000..accea975 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar.sha1 @@ -0,0 +1 @@ +958c81789d4cc52e7f83ede3168633c0b03ea2de \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom new file mode 100644 index 00000000..0c199b77 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom @@ -0,0 +1,41 @@ + + + + 4.0.0 + + + maven-plugin-tools + org.apache.maven.plugin-tools + 3.5.2 + + + maven-plugin-annotations + + Maven Plugin Tools Java 5 Annotations + Java 5 annotations to use in Mojos + + + + org.apache.maven + maven-artifact + 3.0 + + + diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom.sha1 new file mode 100644 index 00000000..82e69623 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom.sha1 @@ -0,0 +1 @@ +263f39d1cb915beaa94497d2b4b6ec94ca5b1291 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/_remote.repositories new file mode 100644 index 00000000..a2a0dcae --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:18 CST 2021 +maven-plugin-tools-3.5.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom new file mode 100644 index 00000000..23478298 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom @@ -0,0 +1,438 @@ + + + + 4.0.0 + + + maven-parent + org.apache.maven + 31 + ../pom/maven/pom.xml + + + org.apache.maven.plugin-tools + maven-plugin-tools + 3.5.2 + pom + + Maven Plugin Tools + + The Maven Plugin Tools contains the necessary tools to be able to produce Maven Plugins in scripting languages + and to generate rebarbative content like descriptor, help and documentation. + + https://maven.apache.org/plugin-tools + 2004 + + + + Muminur Choudhury + + + Tinguaro Barreno + + + James Phillpotts + + + Slawomir Jaranowski + + + Mikolaj Izdebski + + + + + maven-plugin-tools-generators + maven-plugin-tools-api + maven-plugin-tools-java + maven-plugin-tools-annotations + maven-plugin-tools-javadoc + maven-plugin-annotations + maven-script + maven-plugin-plugin + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-plugin-tools.git + scm:git:https://gitbox.apache.org/repos/asf/maven-plugin-tools.git + https://github.com/apache/maven-plugin-tools/tree/${project.scm.tag} + maven-plugin-tools-3.5.2 + + + jira + https://issues.apache.org/jira/browse/MPLUGIN + + + Jenkins + https://builds.apache.org/job/maven-plugin-tools/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 2.21.0 + 1.2 + 2.2.1 + 1.7.1 + 3.0.1 + plugin-tools-archives/plugin-tools-LATEST + 5.0.2 + + + + + + + org.apache.maven.plugin-tools + maven-plugin-tools-api + ${project.version} + + + org.apache.maven.plugin-tools + maven-plugin-tools-generators + ${project.version} + + + org.apache.maven.plugin-tools + maven-plugin-tools-model + ${project.version} + + + org.apache.maven.plugin-tools + maven-plugin-tools-java + ${project.version} + + + org.apache.maven.plugin-tools + maven-plugin-tools-annotations + ${project.version} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${project.version} + + + org.apache.maven.plugin-tools + maven-plugin-tools-beanshell + ${project.version} + + + org.apache.maven + maven-model + ${mavenVersion} + + + org.apache.maven + maven-project + ${mavenVersion} + + + org.apache.maven + maven-plugin-descriptor + ${mavenVersion} + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + + + org.codehaus.plexus + plexus-utils + 3.0.20 + + + org.codehaus.plexus + plexus-component-annotations + 1.5.5 + + + junit + junit + + + + + org.codehaus.plexus + plexus-archiver + 3.4.1 + + + org.codehaus.plexus + plexus-velocity + 1.1.8 + + + velocity + velocity + + + + + + + org.apache.velocity + velocity + 1.7 + + + + com.thoughtworks.qdox + qdox + 2.0-M5 + + + + org.ow2.asm + asm + ${asmVersion} + + + org.ow2.asm + asm-commons + ${asmVersion} + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + ${pluginTestingHarnessVersion} + test + + + org.easymock + easymock + 3.4 + test + + + + + + + junit + junit + 3.8.2 + test + + + org.easytesting + fest-assert + 1.4 + test + + + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + + org.apache.maven.plugins + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/plugin-tools/tags + true + + + + org.codehaus.plexus + plexus-component-metadata + 1.7 + + + + generate-metadata + generate-test-metadata + + + + + + + + + maven-enforcer-plugin + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-5 + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + + + Plugin Tools' Maven Plugin Plugin + org.apache.maven.plugin.plugin* + + + Plugin Tools Extractor API + org.apache.maven.tools.plugin:org.apache.maven.tools.plugin.extractor:org.apache.maven.tools.plugin.scanner:org.apache.maven.tools.plugin.util + + + Plugin Tools Generators + org.apache.maven.tools.plugin.generator + + + Java Annotations Support: Annotations + Extractor + org.apache.maven.plugins.annotations:org.apache.maven.tools.plugin.extractor.annotations* + + + Javadoc Support: Javadoc Tags Extractor + Taglets + org.apache.maven.tools.plugin.extractor.javadoc:org.apache.maven.tools.plugin.javadoc + + + Beanshell Support: Extractor + Runtime + org.apache.maven.tools.plugin.extractor.beanshell:org.apache.maven.script.beanshell + + + Apache Ant Support : Metadata + Extractor + Runtime + org.apache.maven.tools.plugin.extractor.ant:org.apache.maven.script.ant:org.apache.maven.tools.plugin.extractor.model* + + + + + + non-aggregate + + javadoc + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + + + non-aggregate + + jxr + + + + aggregate + + aggregate + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + non-aggregate + + checkstyle + + + + aggregate + false + + checkstyle-aggregate + + + + + + + + + + [1.9,) + + + + + maven-enforcer-plugin + + + enforce-bytecode-version + + + + + module-info + + + + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-5 + + + + + + + 6.1.1 + + + + diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom.sha1 new file mode 100644 index 00000000..89541325 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom.sha1 @@ -0,0 +1 @@ +7c1b14adca1eef5063248cb8078b160e48c3a969 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/_remote.repositories new file mode 100644 index 00000000..6e4c4c2f --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:25 CST 2021 +maven-clean-plugin-3.1.0.jar>repo.jenkins-ci.org= +maven-clean-plugin-3.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar new file mode 100644 index 00000000..4541a487 Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar.sha1 new file mode 100644 index 00000000..fec06c0a --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar.sha1 @@ -0,0 +1 @@ +2e030994e207ee572491927b198b139424133b2e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom new file mode 100644 index 00000000..aff55604 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom @@ -0,0 +1,150 @@ + + + + + + 4.0.0 + + + org.apache.maven.plugins + maven-plugins + 31 + ../../pom/maven/maven-plugins/pom.xml + + + maven-clean-plugin + 3.1.0 + maven-plugin + + Apache Maven Clean Plugin + + The Maven Clean Plugin is a plugin that removes files generated at build-time in a project's directory. + + 2001 + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-clean-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-clean-plugin.git + https://github.com/apache/maven-clean-plugin/tree/${project.scm.tag} + maven-clean-plugin-3.1.0 + + + JIRA + https://issues.apache.org/jira/browse/MCLEAN + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-clean-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 3.0 + 2.21.0 + 7 + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.2.1 + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.apache.maven + maven-core + ${mavenVersion} + test + + + junit + junit + 4.12 + test + + + + + + run-its + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + true + src/it + ${project.build.directory}/it + + */pom.xml + + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + clean + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom.sha1 new file mode 100644 index 00000000..c62a82f6 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom.sha1 @@ -0,0 +1 @@ +ead53f1e3e119cf527543a74264b1452727a525b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/_remote.repositories new file mode 100644 index 00000000..44cc1d8d --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:29 CST 2021 +maven-compiler-plugin-3.8.1.jar>repo.jenkins-ci.org= +maven-compiler-plugin-3.8.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar new file mode 100644 index 00000000..cb5a2291 Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar.sha1 new file mode 100644 index 00000000..8ca295f2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar.sha1 @@ -0,0 +1 @@ +be834db00dbace3d7fd08a6e0e96ab5e4af45f99 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom new file mode 100644 index 00000000..5bef08fd --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom @@ -0,0 +1,358 @@ + + + + + + 4.0.0 + + + org.apache.maven.plugins + maven-plugins + 33 + ../../pom/maven/maven-plugins/pom.xml + + + maven-compiler-plugin + 3.8.1 + maven-plugin + + Apache Maven Compiler Plugin + The Compiler Plugin is used to compile the sources of your project. + 2001 + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git + https://github.com/apache/maven-compiler-plugin/tree/${project.scm.tag} + maven-compiler-plugin-3.8.1 + + + JIRA + https://issues.apache.org/jira/browse/MCOMPILER + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-compiler-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.0 + + 3.5 + 2.8.4 + 1.8.0 + 2.7.0-01 + 2.0.4-04 + 2.4.2 + 7 + false + + + + + Jan Sievers + + + + + + + + com.thoughtworks.qdox + qdox + 2.0-M9 + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.2.1 + + + org.apache.maven.shared + maven-shared-incremental + 1.1 + + + + org.codehaus.plexus + plexus-java + 0.9.10 + + + + org.codehaus.plexus + plexus-compiler-api + ${plexusCompilerVersion} + + + org.codehaus.plexus + plexus-component-api + + + + + org.codehaus.plexus + plexus-compiler-manager + ${plexusCompilerVersion} + + + org.codehaus.plexus + plexus-component-api + + + + + org.codehaus.plexus + plexus-compiler-javac + ${plexusCompilerVersion} + runtime + + + org.codehaus.plexus + plexus-component-api + + + + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.mockito + mockito-core + 1.9.5 + test + + + junit + junit + 4.12 + test + + + + + + + + org.apache.rat + apache-rat-plugin + + + .java-version + + + + + maven-enforcer-plugin + 1.4.1 + + + enforce-bytecode-version + + + + 1.6 + + org.ow2.asm:asm + + + + + + + + + + + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + descriptors + + generate-metadata + + + + + + + + + + run-its + + + + + org.apache.maven.plugins + maven-invoker-plugin + 3.2.0 + + + integration-test + + + true + + true + src/it + ${project.build.directory}/it + + */pom.xml + extras/*/pom.xml + multirelease-patterns/*/pom.xml + + + + setup_jar_module/pom.xml + setup_jar_automodule/pom.xml + setup_x/pom.xml + + + setup_x/** + + verify + ${project.build.directory}/local-repo + src/it/settings.xml + ${maven.it.failure.ignore} + + + ${https.protocols} + + + clean + test-compile + + + + + + + + + + + + org.codehaus.groovy + groovy-eclipse-compiler + ${groovyEclipseCompilerVersion} + test + + + org.codehaus.groovy + groovy-eclipse-batch + ${groovy-eclipse-batch} + test + + + org.codehaus.groovy + groovy-all + ${groovyVersion} + test + + + org.apache.openjpa + openjpa + ${openJpaVersion} + + + + + + Jenkins + + + env.JENKINS_URL + + + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + multirelease-patterns/singleproject-toolchains/pom.xml + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom.sha1 new file mode 100644 index 00000000..83a198c5 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom.sha1 @@ -0,0 +1 @@ +96021d81e9ecaa27aadb861c681840a768ea502b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/_remote.repositories new file mode 100644 index 00000000..449f87c8 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:11 CST 2021 +maven-jar-plugin-3.1.2.jar>repo.jenkins-ci.org= +maven-jar-plugin-3.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar new file mode 100644 index 00000000..4d0a946c Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar.sha1 new file mode 100644 index 00000000..bc44d2c8 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar.sha1 @@ -0,0 +1 @@ +e392e9d7124765659e939cea8956234ac68b3aa7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom new file mode 100644 index 00000000..e99bdd6c --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom @@ -0,0 +1,219 @@ + + + + + + 4.0.0 + + + maven-plugins + org.apache.maven.plugins + 33 + ../../pom/maven/maven-plugins/pom.xml + + + maven-jar-plugin + 3.1.2 + maven-plugin + + Apache Maven JAR Plugin + Builds a Java Archive (JAR) file from the compiled project classes and resources. + + + + Jerome Lacoste + jerome@coffeebreaks.org + CoffeeBreaks + http://www.coffeebreaks.org + +1 + + Java Developer + + + + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-jar-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-jar-plugin.git + https://github.com/apache/maven-jar-plugin/tree/${project.scm.tag} + maven-jar-plugin-3.1.2 + + + JIRA + https://issues.apache.org/jira/browse/MJAR + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-jar-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.0.0 + 3.4.0 + 3.0 + 7 + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven.shared + file-management + ${mavenFileManagementVersion} + + + org.apache.maven + maven-archiver + ${mavenArchiverVersion} + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + + org.apache.maven.shared + maven-shared-utils + 3.2.1 + + + org.codehaus.plexus + plexus-archiver + 4.1.0 + + + org.codehaus.plexus + plexus-utils + 3.2.0 + + + junit + junit + 4.12 + test + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + + + + + src/main/filtered-resources + true + + + + + + org.apache.rat + apache-rat-plugin + + + + src/it/mjar-71-01/src/main/resources/META-INF/MANIFEST.MF + src/it/mjar-71-02/src/main/resources/META-INF/MANIFEST.MF + + + + + + + + + + run-its + + + + org.apache.maven.plugins + maven-invoker-plugin + + + clean + package + + true + true + + + + integration-test + + install + integration-test + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom.sha1 new file mode 100644 index 00000000..613601f9 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom.sha1 @@ -0,0 +1 @@ +0fd8c2027bdd7e621aa8e48188afa2943359f9a1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/_remote.repositories new file mode 100644 index 00000000..1f7dbe16 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:23 CST 2021 +maven-plugins-31.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom new file mode 100644 index 00000000..666f8a7b --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom @@ -0,0 +1,285 @@ + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 31 + ../pom.xml + + + org.apache.maven.plugins + maven-plugins + pom + + Apache Maven Plugins + Maven Plugins + https://maven.apache.org/plugins/ + + + Jenkins + https://builds.apache.org/job/maven-plugins/ + + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/plugins-archives/ + + + + + plugins-archives/${project.artifactId}-LATEST + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + + org/apache/maven/plugins + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + org.apache.maven.plugin-tools + maven-plugin-tools-javadoc + ${mavenPluginToolsVersion} + + + + + + org.apache.maven.plugins + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/plugins/tags + apache-release,run-its + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + default-descriptor + process-classes + + + generate-helpmojo + + helpmojo + + + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + enforce + + ensure-no-container-api + + + + + org.codehaus.plexus:plexus-component-api + + The new containers are not supported. You probably added a dependency that is missing the exclusions. + + + true + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-docck-plugin + + + docck-check + verify + + check + + + + + + + + + run-its + + + ${maven.compiler.source} + ${maven.compiler.target} + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + src/it + ${project.build.directory}/it + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + */pom.xml + + + ${invoker.maven.compiler.source} + ${invoker.maven.compiler.target} + + + + + integration-test + + install + integration-test + verify + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-invoker-plugin + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom.sha1 new file mode 100644 index 00000000..b7a296e5 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom.sha1 @@ -0,0 +1 @@ +0b5efc4b76da252b79b683e47d3df82752f44093 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/_remote.repositories new file mode 100644 index 00000000..7a114e22 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:27 CST 2021 +maven-plugins-33.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom new file mode 100644 index 00000000..4ee95399 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom @@ -0,0 +1,289 @@ + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 33 + ../pom.xml + + + org.apache.maven.plugins + maven-plugins + pom + + Apache Maven Plugins + Maven Plugins + https://maven.apache.org/plugins/ + + + Jenkins + https://builds.apache.org/job/maven-plugins/ + + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/plugins-archives/ + + + + + plugins-archives/${project.artifactId}-LATEST + + + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + + org/apache/maven/plugins + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + org.apache.maven.plugin-tools + maven-plugin-tools-javadoc + ${mavenPluginToolsVersion} + + + + + + org.apache.maven.plugins + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/plugins/tags + apache-release,run-its + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + default-descriptor + process-classes + + + generate-helpmojo + + helpmojo + + + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + enforce + + ensure-no-container-api + + + + + org.codehaus.plexus:plexus-component-api + + The new containers are not supported. You probably added a dependency that is missing the exclusions. + + + true + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + ${mavenPluginToolsVersion} + + + + + + + quality-checks + + + quality-checks + true + + + + + + org.apache.maven.plugins + maven-docck-plugin + + + docck-check + verify + + check + + + + + + + + + run-its + + + ${maven.compiler.source} + ${maven.compiler.target} + false + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + src/it + ${project.build.directory}/it + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + */pom.xml + + + ${invoker.maven.compiler.source} + ${invoker.maven.compiler.target} + + ${https.protocols} + + ${maven.it.failure.ignore} + + + + integration-test + + install + integration-test + verify + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-invoker-plugin + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom.sha1 new file mode 100644 index 00000000..96d087b3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom.sha1 @@ -0,0 +1 @@ +1492c1ec367964ea0a088d128d13b1df4529c8ae \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/_remote.repositories new file mode 100644 index 00000000..4eb7e02e --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:26 CST 2021 +maven-resources-plugin-3.1.0.jar>repo.jenkins-ci.org= +maven-resources-plugin-3.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar new file mode 100644 index 00000000..13719141 Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar.sha1 new file mode 100644 index 00000000..4c5c3909 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar.sha1 @@ -0,0 +1 @@ +1b10443dbf8440d1740fc54c6313fda23a1a607f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom new file mode 100644 index 00000000..fb5aa41e --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom @@ -0,0 +1,210 @@ + + + + + + 4.0.0 + + + maven-plugins + org.apache.maven.plugins + 31 + ../../pom/maven/maven-plugins/pom.xml + + + maven-resources-plugin + 3.1.0 + maven-plugin + + Apache Maven Resources Plugin + + The Resources Plugin handles the copying of project resources to the output + directory. There are two different kinds of resources: main resources and test resources. The + difference is that the main resources are the resources associated to the main + source code while the test resources are associated to the test source code. + Thus, this allows the separation of resources for the main source code and its + unit tests. + + 2001 + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-resources-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-resources-plugin.git + https://github.com/apache/maven-resources-plugin/tree/${project.scm.tag} + maven-resources-plugin-3.1.0 + + + JIRA + https://issues.apache.org/jira/browse/MRESOURCES + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-resources-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 3.1.1 + 3.0 + 2.21.0 + 7 + + + + + Graham Leggett + + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven + maven-model + ${mavenVersion} + + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + org.codehaus.plexus + plexus-utils + 3.1.0 + + + + org.apache.maven.shared + maven-filtering + ${mavenFilteringVersion} + + + + commons-io + commons-io + 2.5 + compile + + + + org.codehaus.plexus + plexus-interpolation + 1.24 + + + + org.apache.maven + maven-compat + ${mavenVersion} + test + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + junit + junit + 4.12 + test + + + + + + run-its + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + verify + setup + ${project.build.directory}/local-repo + + clean + process-test-resources + + src/it/settings.xml + ${project.build.directory}/it + + fromExecProps + + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-test-metadata + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom.sha1 new file mode 100644 index 00000000..e9eb0051 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom.sha1 @@ -0,0 +1 @@ +f1666c68ba612f8be4736f7c6cae65a8e1b5581c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/_remote.repositories new file mode 100644 index 00000000..95056b2c --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-shade-plugin-3.2.1.jar>repo.jenkins-ci.org= +maven-shade-plugin-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar new file mode 100644 index 00000000..0a74a508 Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar.sha1 new file mode 100644 index 00000000..ada0aa39 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar.sha1 @@ -0,0 +1 @@ +fde20989f12e9b736ff3e556e21bf6d6f222505f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom new file mode 100644 index 00000000..116da494 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom @@ -0,0 +1,285 @@ + + + + + + 4.0.0 + + + maven-plugins + org.apache.maven.plugins + 33 + ../../pom/maven/maven-plugins/pom.xml + + + maven-shade-plugin + 3.2.1 + maven-plugin + + Apache Maven Shade Plugin + + Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes + or removing unused classes. + + + + ${mavenVersion} + + + + scm:git:https://gitbox.apache.org/repos/asf/maven-shade-plugin.git + scm:git:https://gitbox.apache.org/repos/asf/maven-shade-plugin.git + https://github.com/apache/maven-shade-plugin/tree/${project.scm.tag} + maven-shade-plugin-3.2.1 + + + jira + https://issues.apache.org/jira/browse/MSHADE + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-shade-plugin/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 3.0 + 7 + ${project.version} + 7.0 + + + + + Trask Stalnaker + + + Anthony Dahanne + + + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven + maven-model + ${mavenVersion} + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + provided + + + + + org.codehaus.plexus + plexus-utils + 3.1.0 + + + + org.apache.maven.shared + maven-artifact-transfer + 0.10.0 + + + + org.ow2.asm + asm + ${asmVersion} + + + org.ow2.asm + asm-commons + ${asmVersion} + + + + org.jdom + jdom2 + 2.0.6 + + + org.apache.maven.shared + maven-dependency-tree + 3.0.1 + + + commons-io + commons-io + 2.5 + + + org.vafer + jdependency + 2.1.1 + + + org.codehaus.plexus + plexus-component-annotations + provided + + + + junit + junit + 4.12 + test + + + + xmlunit + xmlunit + 1.6 + test + + + + com.google.guava + guava + 19.0 + + + + org.mockito + mockito-all + 1.9.5 + test + + + + + + + + org.apache.rat + apache-rat-plugin + + + + rel-path-test-files/** + src/it/dep-reduced-pom-use-base-version/repo/org/apache/maven/its/shade/drp/a/0.1-SNAPSHOT/_maven.repositories + src/it/mshade-123/sample.txt + src/it/MSHADE-133/src/main/resources/myConfig.yml + src/it/rerun-with-reloc/src/main/resources/some-ordinary-resource.txt + src/it/rerun-without-reloc/src/main/resources/some-ordinary-resource.txt + src/it/MSHADE-182/src/main/resources/META-INF/services/relocateme.Service + src/it/MSHADE-182/target/classes/META-INF/services/relocateme.Service + src/it/MSHADE-182/build.log + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-bytecode-version + + + + + module-info + + + org.vafer:jdependency + + + + + + + + + + + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + + generate-metadata + generate-test-metadata + + + + + + + + + + run-its + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + org.apache.maven.plugins + maven-invoker-plugin + + + clean + install + + + + ${https.protocols} + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom.sha1 new file mode 100644 index 00000000..1d908e12 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom.sha1 @@ -0,0 +1 @@ +25e6723f3ecfd15976dba49f7af27e1bb68adab8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/_remote.repositories new file mode 100644 index 00000000..3015ee40 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:30 CST 2021 +maven-surefire-plugin-2.22.2.jar>repo.jenkins-ci.org= +maven-surefire-plugin-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar new file mode 100644 index 00000000..d2576450 Binary files /dev/null and b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar.sha1 new file mode 100644 index 00000000..5a9592b2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar.sha1 @@ -0,0 +1 @@ +63d1dd017bfecc64a7b68b964e39e8d9f8f11a14 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom new file mode 100644 index 00000000..f0feb2df --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom @@ -0,0 +1,166 @@ + + + + + 4.0.0 + + + org.apache.maven.surefire + surefire + 2.22.2 + + + org.apache.maven.plugins + maven-surefire-plugin + maven-plugin + + Maven Surefire Plugin + Maven Surefire MOJO in maven-surefire-plugin. + + + 2.2.1 + + + + Surefire + Failsafe + + + + + org.apache.maven.surefire + maven-surefire-common + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + true + + + + mojo-descriptor + process-classes + + descriptor + + + + help-goal + + helpmojo + + + + + + maven-surefire-plugin + + + org.apache.maven.surefire + surefire-shadefire + 2.12.4 + + + + + maven-assembly-plugin + 2.6 + + + build-site + package + + single + + + true + site-source + + src/assembly/site-source.xml + + + + + + + + + + + + org.apache.maven.plugins + maven-plugin-plugin + + + + + + + ci + + + enableCiProfile + true + + + + + + maven-docck-plugin + 1.0 + + + + check + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-changes-plugin + + false + + + + + jira-report + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom.sha1 new file mode 100644 index 00000000..0be76010 --- /dev/null +++ b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom.sha1 @@ -0,0 +1 @@ +f0bfc47221f365d6812e6c4091227f6425268980 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/_remote.repositories b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/_remote.repositories new file mode 100644 index 00000000..5f146214 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +file-management-3.0.0.jar>repo.jenkins-ci.org= +file-management-3.0.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar new file mode 100644 index 00000000..7f9b7198 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar.sha1 b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar.sha1 new file mode 100644 index 00000000..fd7ea88a --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar.sha1 @@ -0,0 +1 @@ +065d87e03797af7bb5bb199d4d8b50f83cbea3ce \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom new file mode 100644 index 00000000..2f1ea5e2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom @@ -0,0 +1,145 @@ + + + + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 22 + ../../pom/maven/maven-shared-components/pom.xml + + + file-management + 3.0.0 + + Apache Maven File Management API + API to collect files from a given directory using several include/exclude rules. + + + + Joakim Erdfelt + joakim@erdfelt.com + + + + + ${mavenVersion} + + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/file-management-3.0.0 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/file-management-3.0.0 + http://svn.apache.org/viewvc/maven/shared/tags/file-management-3.0.0 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326425 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + 3.0 + 1.6 + 1.6 + + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-io + 3.0.0 + + + + org.apache.maven.shared + maven-shared-utils + 3.0.0 + + + + org.codehaus.plexus + plexus-utils + 3.0.22 + + + + junit + junit + 4.11 + test + + + + + + + org.codehaus.modello + modello-maven-plugin + + true + 1.1.0 + + src/main/mdo/fileset.mdo + + + + + fileset + + xpp3-reader + xpp3-writer + java + + + + site-docs + pre-site + + xdoc + + + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/test*/**/*.txt + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom.sha1 b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom.sha1 new file mode 100644 index 00000000..ec930d5c --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom.sha1 @@ -0,0 +1 @@ +f6d55739cb1a70aef37b345b89cdd9d4f53ed637 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/_remote.repositories new file mode 100644 index 00000000..9c910918 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-artifact-transfer-0.10.0.jar>repo.jenkins-ci.org= +maven-artifact-transfer-0.10.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar new file mode 100644 index 00000000..f344c497 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar.sha1 new file mode 100644 index 00000000..870419b1 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar.sha1 @@ -0,0 +1 @@ +cb0bc696b1c2380efe81ed2bd628b50d56a3a09b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom new file mode 100644 index 00000000..9a085dfe --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom @@ -0,0 +1,315 @@ + + + + maven-shared-components + org.apache.maven.shared + 31 + ../../pom/maven/maven-shared-components/pom.xml/pom.xml + + 4.0.0 + maven-artifact-transfer + Apache Maven Artifact Transfer + 0.10.0 + An API to install, deploy and resolving artifacts with Maven 3 + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12327114 + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-artifact-transfer/ + + + scm:git:https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git + scm:git:https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git + maven-artifact-transfer-0.10.0 + https://github.com/apache/maven-artifact-transfer/tree/${project.scm.tag} + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + + + + + + maven-shade-plugin + 3.1.0 + + + package + + shade + + + + + org.eclipse.aether:aether-util + + + + + org.eclipse.aether:aether-util + + org/eclipse/aether/util/artifact/SubArtifact.class + org/eclipse/aether/util/filter/* + + + + + + + + + org.apache.rat + apache-rat-plugin + 0.12 + + + dependency-reduced-pom.xml + src/it/**/.settings/** + src/it/**/.project + src/it/**/.classpath + src/it/**/target/** + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.15 + + + sniff + test + + check + + + + + + org.codehaus.mojo.signature + java16 + 1.1 + + + + + maven-enforcer-plugin + + + enforce-bytecode-version + + + + 1.6 + + + + + + + + + + + run-its + + + + maven-invoker-plugin + 3.0.1 + + + pre-integration-tests + + install + + + + integration-tests + + run + + + + + + org.codehaus.groovy + groovy + 2.4.10 + + + org.codehaus.gmaven.runtime + gmaven-runtime-2.0 + 1.5 + + + + true + false + ${project.build.directory}/local-repo + ${project.build.directory}/it + src/it + false + + */pom.xml + + setup + verify + src/it/settings.xml + 1 + + ${repository.proxy.url} + ${project.build.directory}/local-repo + + + org.apache.maven:apache-maven:3.0.5:tar.gz:bin + org.apache.maven:apache-maven:3.1.1:tar.gz:bin + org.apache.maven:apache-maven:3.2.5:tar.gz:bin + org.apache.maven:apache-maven:3.3.1:tar.gz:bin + org.apache.maven:apache-maven:3.3.9:tar.gz:bin + org.apache.maven:apache-maven:3.5.0:tar.gz:bin + + + + + + + + + + + org.apache.maven + maven-core + 3.0 + compile + + + org.apache.maven + maven-artifact + 3.0 + compile + + + org.codehaus.plexus + plexus-component-annotations + 1.7.1 + compile + + + org.apache.maven.shared + maven-common-artifact-filters + 3.0.1 + compile + + + org.codehaus.plexus + plexus-utils + 3.1.0 + compile + + + commons-codec + commons-codec + 1.11 + compile + + + org.sonatype.aether + aether-api + 1.7 + provided + + + org.sonatype.aether + aether-util + 1.7 + provided + + + org.sonatype.aether + aether-impl + 1.7 + test + + + aether-spi + org.sonatype.aether + + + + + org.eclipse.aether + aether-api + 0.9.0.M2 + provided + + + org.eclipse.aether + aether-impl + 0.9.0.M2 + provided + + + aether-spi + org.eclipse.aether + + + + + org.slf4j + slf4j-api + 1.7.5 + compile + + + junit + junit + 4.12 + test + + + hamcrest-core + org.hamcrest + + + + + org.mockito + mockito-core + 2.18.3 + test + + + byte-buddy + net.bytebuddy + + + byte-buddy-agent + net.bytebuddy + + + objenesis + org.objenesis + + + + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + 2.21.0 + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom.sha1 new file mode 100644 index 00000000..e0ac1a8f --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom.sha1 @@ -0,0 +1 @@ +b7a2420a1c229425fc7b502b814b69af74ef72c2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/_remote.repositories new file mode 100644 index 00000000..fbe2c3da --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-common-artifact-filters-3.0.1.jar>repo.jenkins-ci.org= +maven-common-artifact-filters-3.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar new file mode 100644 index 00000000..68d4d961 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar.sha1 new file mode 100644 index 00000000..8911c4d4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar.sha1 @@ -0,0 +1 @@ +1a98d8e3d5610bb0abf09a7756195e8b2ed215e5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom new file mode 100644 index 00000000..3b87cb2a --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom @@ -0,0 +1,134 @@ + + + + 4.0.0 + + + maven-shared-components + org.apache.maven.shared + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-common-artifact-filters + 3.0.1 + + Apache Maven Common Artifact Filters + A collection of ready-made filters to control inclusion/exclusion of artifacts during dependency resolution. + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-common-artifact-filters-3.0.1 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-common-artifact-filters-3.0.1 + http://svn.apache.org/viewvc/maven/shared/tags/maven-common-artifact-filters-3.0.1 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326431 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 3.0 + + + + + org.apache.maven + maven-artifact + ${maven.version} + + + org.apache.maven + maven-model + ${maven.version} + + + org.apache.maven + maven-core + ${maven.version} + + + org.apache.maven + maven-plugin-api + ${maven.version} + + + + org.sonatype.sisu + sisu-inject-plexus + 1.4.2 + + + + org.sonatype.aether + aether-api + 1.7 + provided + + + org.sonatype.aether + aether-util + 1.7 + provided + + + org.eclipse.aether + aether-api + 0.9.0.M2 + provided + + + org.eclipse.aether + aether-util + 0.9.0.M2 + provided + + + + org.apache.maven.shared + maven-shared-utils + 3.1.0 + + + + junit + junit + 4.9 + test + + + org.easymock + easymock + 3.2 + test + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom.sha1 new file mode 100644 index 00000000..8c9803d2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom.sha1 @@ -0,0 +1 @@ +c6e96947d07fc8d9d02f60ebccfd6e8080201676 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/_remote.repositories new file mode 100644 index 00000000..1235a718 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-dependency-tree-3.0.1.pom>repo.jenkins-ci.org= +maven-dependency-tree-3.0.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar new file mode 100644 index 00000000..25786341 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar.sha1 new file mode 100644 index 00000000..77292c21 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar.sha1 @@ -0,0 +1 @@ +e9ae9966f1d3a238004c8b15ca4fd0e03d405424 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom new file mode 100644 index 00000000..9bd0a18a --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom @@ -0,0 +1,217 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-dependency-tree + 3.0.1 + + Apache Maven Dependency Tree + A tree-based API for resolution of Maven project dependencies + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-dependency-tree-3.0.1 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-dependency-tree-3.0.1 + http://svn.apache.org/viewvc/maven/shared/tags/maven-dependency-tree-3.0.1 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326427 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 3.0 + + + + + Tuomas Kiviaho + + + + + + org.apache.maven + maven-core + 3.0.4 + provided + + + org.codehaus.plexus + plexus-component-annotations + 1.6 + + + org.sonatype.aether + aether-api + 1.13.1 + true + + + org.eclipse.aether + aether-api + 0.9.0.M2 + true + + + org.eclipse.aether + aether-util + 0.9.0.M2 + + + org.eclipse.aether + aether-api + + + + + + jmock + jmock + 1.2.0 + test + + + org.apache.maven.shared + maven-plugin-testing-harness + 1.1 + test + + + + + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + + generate-metadata + + + + + + maven-surefire-plugin + + + **/DefaultDependencyTreeBuilderTest* + + + + + org.apache.maven.plugins + maven-invoker-plugin + + true + src/it + ${project.build.directory}/it + setup + verify + ${project.build.directory}/local-repo + src/it/settings.xml + + reactor/resolve-extension/pom.xml + + + */pom.xml + + + maven-version/pom.xml + mshared-167/pom.xml + reactor/pom.xml + verbose/pom.xml + + + ${maven.compiler.source} + ${maven.compiler.target} + + + + + integration-test + + install + integration-test + verify + + + + + + org.apache.rat + apache-rat-plugin + + + + src/it/*/expected*.txt + + + + + check + + check + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + Maven 3 Dependency Graph + org.apache.maven.shared.dependency.graph* + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom.sha1 new file mode 100644 index 00000000..b99b06fe --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom.sha1 @@ -0,0 +1 @@ +836669a016f1abbabc9a4776c4b76fa097f8a7d5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/_remote.repositories new file mode 100644 index 00000000..1c5dc8a3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:11 CST 2021 +maven-filtering-3.1.1.jar>repo.jenkins-ci.org= +maven-filtering-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar new file mode 100644 index 00000000..cffb4e47 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar.sha1 new file mode 100644 index 00000000..36db85a4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar.sha1 @@ -0,0 +1 @@ +52f2401b6e1a8cc40185da68e5c514f01f7a7a68 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom new file mode 100644 index 00000000..8db47015 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom @@ -0,0 +1,175 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-filtering + 3.1.1 + + Apache Maven Filtering + A component to assist in filtering of resource files with properties from a Maven project. + + + ${mavenVersion} + + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-filtering-3.1.1 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-filtering-3.1.1 + http://svn.apache.org/viewvc/maven/shared/tags/maven-filtering-3.1.1 + + + JIRA + https://issues.apache.org/jira/browse/MSHARED/component/12326444 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 3.0 + + + + + Graham Leggett + + + + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.0.0 + + + org.codehaus.plexus + plexus-utils + 3.0.24 + + + org.codehaus.plexus + plexus-interpolation + 1.22 + + + org.sonatype.plexus + plexus-build-api + 0.0.7 + + + + com.google.code.findbugs + jsr305 + 3.0.0 + provided + + + org.sonatype.plexus + plexus-build-api + + 0.0.4 + test + tests + + + + org.mockito + mockito-core + 1.9.5 + test + + + junit + junit + 4.11 + test + + + + org.assertj + assertj-core + 1.7.1 + test + + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-changes-plugin + + Type,Key,Summary,Assignee,Status,Resolution,Created + 200 + true + Key + maven-filtering- + 12335751 + true + + + + + jira-report + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom.sha1 new file mode 100644 index 00000000..97c66760 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom.sha1 @@ -0,0 +1 @@ +824f9dbf759d151975d54b0499ea246fe2b279d4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/_remote.repositories new file mode 100644 index 00000000..4c22bfb2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:14 CST 2021 +maven-shared-components-22.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom new file mode 100644 index 00000000..b837f9cd --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + + + org.apache.maven + maven-parent + 27 + ../../pom/maven/pom.xml + + + org.apache.maven.shared + maven-shared-components + 22 + pom + + Apache Maven Shared Components + Maven shared components + http://maven.apache.org/shared/ + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-22 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-22 + http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-22 + + + jira + https://issues.apache.org/jira/browse/MSHARED + + + Jenkins + https://builds.apache.org/job/maven-shared/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/shared-archives/ + + + + + shared-archives/${project.artifactId}-LATEST + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + 2.11 + + + JIRA + + 1000 + true + ${project.artifactId}- + + org/apache/maven/shared + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 1 + + + + + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/shared/tags + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom.sha1 new file mode 100644 index 00000000..0feb5f76 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom.sha1 @@ -0,0 +1 @@ +d12164aef4e1d91b2d61acf8097483d73f2a6b5e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/_remote.repositories new file mode 100644 index 00000000..9266264a --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:03 CST 2021 +maven-shared-components-30.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom new file mode 100644 index 00000000..77307d91 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom @@ -0,0 +1,111 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 30 + ../pom.xml + + + org.apache.maven.shared + maven-shared-components + pom + + Apache Maven Shared Components + Maven shared components + https://maven.apache.org/shared/ + + + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-parent-30/maven-shared-components + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-parent-30/maven-shared-components + https://svn.apache.org/viewvc/maven/shared/tags/maven-parent-30/maven-shared-components + + + jira + https://issues.apache.org/jira/browse/MSHARED + + + Jenkins + https://builds.apache.org/job/maven-shared/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/shared-archives/ + + + + + shared-archives/${project.artifactId}-LATEST + true + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + ${project.artifactId}- + + org/apache/maven/shared + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 1 + + + + + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/shared/tags + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom.sha1 new file mode 100644 index 00000000..6d0d3bf4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom.sha1 @@ -0,0 +1 @@ +fed1e8496612f1fd3621e686a4cee4ea56d04cf9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/_remote.repositories new file mode 100644 index 00000000..b2a09170 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:46 CST 2021 +maven-shared-components-31.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom new file mode 100644 index 00000000..c2145107 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom @@ -0,0 +1,129 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 31 + ../pom.xml + + + org.apache.maven.shared + maven-shared-components + pom + + Apache Maven Shared Components + Maven shared components + https://maven.apache.org/shared/ + + + jira + https://issues.apache.org/jira/browse/MSHARED + + + Jenkins + https://builds.apache.org/job/maven-shared/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/shared-archives/ + + + + + shared-archives/${project.artifactId}-LATEST + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + ${project.artifactId}- + + org/apache/maven/shared + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/shared/tags + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom.sha1 new file mode 100644 index 00000000..cba70b57 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom.sha1 @@ -0,0 +1 @@ +1e54affbd5add6742dadba9ffff35d57512b015e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/_remote.repositories new file mode 100644 index 00000000..b4274144 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:17 CST 2021 +maven-shared-components-33.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom new file mode 100644 index 00000000..4d0c0a2d --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom @@ -0,0 +1,129 @@ + + + + + + 4.0.0 + + + org.apache.maven + maven-parent + 33 + ../pom.xml + + + org.apache.maven.shared + maven-shared-components + pom + + Apache Maven Shared Components + Maven shared components + https://maven.apache.org/shared/ + + + jira + https://issues.apache.org/jira/browse/MSHARED + + + Jenkins + https://builds.apache.org/job/maven-shared/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/shared-archives/ + + + + + shared-archives/${project.artifactId}-LATEST + + + + + + + org.apache.maven.plugins + maven-changes-plugin + + + JIRA + + 1000 + true + ${project.artifactId}- + + org/apache/maven/shared + + [ANN] ${project.name} ${project.version} Released + + announce@maven.apache.org + users@maven.apache.org + + + dev@maven.apache.org + + + ${apache.availid} + ${smtp.host} + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + maven-release-plugin + + https://svn.apache.org/repos/asf/maven/shared/tags + + + + + org.apache.maven.plugins + maven-site-plugin + + true + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom.sha1 new file mode 100644 index 00000000..119d000d --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom.sha1 @@ -0,0 +1 @@ +3eb04765b707822b0b97eae2648b1054e21cbdb3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/_remote.repositories new file mode 100644 index 00000000..504d1b79 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +maven-shared-io-3.0.0.jar>repo.jenkins-ci.org= +maven-shared-io-3.0.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar new file mode 100644 index 00000000..cd7f85b9 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar.sha1 new file mode 100644 index 00000000..5214f52a --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar.sha1 @@ -0,0 +1 @@ +fe598062dbcf95ac9eba77840f86d2ff25d81f55 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom new file mode 100644 index 00000000..7096114e --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom @@ -0,0 +1,118 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 22 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-shared-io + 3.0.0 + + Apache Maven Shared I/O API + API for I/O support like logging, download or file scanning. + + + ${mavenVersion} + + + + + Joakim Erdfelt + joakim@erdfelt.com + + + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-io-3.0.0 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-io-3.0.0 + http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-io-3.0.0 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326440 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + 3.0 + 1.6 + 1.6 + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,JavadocType + + + + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven + maven-compat + ${mavenVersion} + + + org.apache.maven.wagon + wagon-provider-api + 2.10 + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + 3.0.0 + + + + + org.codehaus.plexus + plexus-utils + 3.0.22 + + + org.easymock + easymock + 3.2 + test + + + junit + junit + 4.11 + test + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom.sha1 new file mode 100644 index 00000000..647d7d78 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom.sha1 @@ -0,0 +1 @@ +d0d34db967e12bd9d443d6ce0d80ba7ceddd5f88 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/_remote.repositories new file mode 100644 index 00000000..6afc9184 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:11 CST 2021 +maven-shared-utils-3.0.0.jar>repo.jenkins-ci.org= +maven-shared-utils-3.0.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar new file mode 100644 index 00000000..f5a9cdd2 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar.sha1 new file mode 100644 index 00000000..be997350 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar.sha1 @@ -0,0 +1 @@ +542e6f4c7fb03354836bc18e35a3e30417564a9e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom new file mode 100644 index 00000000..d7dd6f16 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom @@ -0,0 +1,164 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 21 + ../maven-shared-components/pom.xml + + + maven-shared-utils + 3.0.0 + + Apache Maven Shared Utils + Shared utils without any further dependencies + + + ${mavenVersion} + + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.0.0 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.0.0 + + http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-utils-3.0.0 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326452 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder + + 3.0 + 1.6 + 1.6 + + + + + junit + junit + 4.11 + test + + + org.hamcrest + hamcrest-core + 1.3 + test + + + commons-io + commons-io + 2.4 + + + org.apache.commons + commons-lang3 + 3.4 + test + + + com.google.code.findbugs + jsr305 + 2.0.1 + + + + org.apache.maven + maven-core + ${mavenVersion} + provided + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.5.5 + + + org.apache.maven.plugins + maven-checkstyle-plugin + + 2.15 + + + org.codehaus.mojo + findbugs-maven-plugin + + findbugs-exclude.xml + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/directorywalker/**/* + src/test/resources/symlinks/**/* + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + 2.15 + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom.sha1 new file mode 100644 index 00000000..6b0c47a5 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom.sha1 @@ -0,0 +1 @@ +2157b52fe64a25d8f8db93a5bad36dfa024d70e1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/_remote.repositories new file mode 100644 index 00000000..3efa3177 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:41 CST 2021 +maven-shared-utils-3.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom new file mode 100644 index 00000000..3e93f9a2 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom @@ -0,0 +1,144 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-shared-utils + 3.1.0 + + Apache Maven Shared Utils + Shared utils without any further dependencies + + + ${mavenVersion} + + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.1.0 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.1.0 + + http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-utils-3.1.0 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326452 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder + + 3.0 + + + + + org.fusesource.jansi + jansi + 1.13 + true + + + junit + junit + 4.11 + test + + + org.hamcrest + hamcrest-core + 1.3 + test + + + commons-io + commons-io + 2.5 + + + org.apache.commons + commons-lang3 + 3.4 + test + + + com.google.code.findbugs + jsr305 + 3.0.0 + provided + + + + org.apache.maven + maven-core + ${mavenVersion} + test + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-9-stable-1 + provided + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + findbugs-exclude.xml + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/directorywalker/**/* + src/test/resources/symlinks/**/* + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom.sha1 new file mode 100644 index 00000000..4cafa823 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom.sha1 @@ -0,0 +1 @@ +96d533d4ae5c8ae5abe3f2e04fea554e2b03fd99 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/_remote.repositories new file mode 100644 index 00000000..349ca484 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +maven-shared-utils-3.2.0.jar>repo.jenkins-ci.org= +maven-shared-utils-3.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar new file mode 100644 index 00000000..1175d753 Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar.sha1 new file mode 100644 index 00000000..809a6609 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar.sha1 @@ -0,0 +1 @@ +294c35ae8260be0660d4e4ba9e64402b84530b4e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom new file mode 100644 index 00000000..b8fffbb8 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom @@ -0,0 +1,140 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-shared-utils + 3.2.0 + + Apache Maven Shared Utils + Shared utils without any further dependencies + + + scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.2.0 + scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-3.2.0 + + http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-utils-3.2.0 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326452 + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder + + 3.0 + + + + + org.fusesource.jansi + jansi + 1.13 + true + + + junit + junit + 4.11 + test + + + org.hamcrest + hamcrest-core + 1.3 + test + + + commons-io + commons-io + 2.5 + + + org.apache.commons + commons-lang3 + 3.4 + test + + + com.google.code.findbugs + jsr305 + 3.0.0 + provided + + + + org.apache.maven + maven-core + ${mavenVersion} + test + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-9-stable-1 + provided + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + findbugs-exclude.xml + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/directorywalker/**/* + src/test/resources/symlinks/**/* + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom.sha1 new file mode 100644 index 00000000..39a47723 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom.sha1 @@ -0,0 +1 @@ +562babea575ea1aabdea1911ea9d9226bb2c7c78 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/_remote.repositories new file mode 100644 index 00000000..92a20de7 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:05 CST 2021 +maven-shared-utils-3.2.1.jar>repo.jenkins-ci.org= +maven-shared-utils-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar new file mode 100644 index 00000000..a312c31e Binary files /dev/null and b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar.sha1 new file mode 100644 index 00000000..9e9482db --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar.sha1 @@ -0,0 +1 @@ +08dd4dfb1d2d8b6969f6462790f82670bcd35ce2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom new file mode 100644 index 00000000..2f881a2c --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom @@ -0,0 +1,158 @@ + + + + 4.0.0 + + + org.apache.maven.shared + maven-shared-components + 30 + ../../pom/maven/maven-shared-components/pom.xml + + + maven-shared-utils + 3.2.1 + + Apache Maven Shared Utils + Shared utils without any further dependencies + + + scm:git:https://gitbox.apache.org/repos/asf/maven-shared-utils.git + scm:git:https://gitbox.apache.org/repos/asf/maven-shared-utils.git + https://github.com/apache/maven-shared-utils/tree/${project.scm.tag} + maven-shared-utils-3.2.1 + + + jira + https://issues.apache.org/jira/browse/MSHARED/component/12326452 + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-shared-utils/ + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder + + 3.0 + + + + + org.fusesource.jansi + jansi + 1.13 + true + + + junit + junit + 4.11 + test + + + org.hamcrest + hamcrest-core + 1.3 + test + + + commons-io + commons-io + 2.5 + + + org.apache.commons + commons-lang3 + 3.4 + test + + + com.google.code.findbugs + jsr305 + 3.0.0 + provided + + + + org.apache.maven + maven-core + ${mavenVersion} + test + + + org.codehaus.plexus + plexus-container-default + 1.7.1 + provided + + + org.apache.maven.plugin-testing + maven-plugin-testing-harness + 2.1 + test + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.20.1 + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.20.1 + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + findbugs-exclude.xml + + + + org.apache.rat + apache-rat-plugin + + + src/test/resources/directorywalker/**/* + src/test/resources/symlinks/**/* + + + + + + + diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom.sha1 new file mode 100644 index 00000000..7ff75516 --- /dev/null +++ b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom.sha1 @@ -0,0 +1 @@ +9347480fc0b3162e873c3a1f83af76ee1f909924 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/_remote.repositories new file mode 100644 index 00000000..3b2b0811 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:21 CST 2021 +maven-surefire-common-2.22.2.jar>repo.jenkins-ci.org= +maven-surefire-common-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar new file mode 100644 index 00000000..955f42a7 Binary files /dev/null and b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar differ diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar.sha1 new file mode 100644 index 00000000..9c7f648a --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar.sha1 @@ -0,0 +1 @@ +d22aaa69c65e96cd9d87f779e45df76fb5040108 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom new file mode 100644 index 00000000..1468c33e --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom @@ -0,0 +1,336 @@ + + + + surefire + org.apache.maven.surefire + 2.22.2 + + 4.0.0 + maven-surefire-common + Maven Surefire Common + API used in Surefire and Failsafe MOJO. + + 2.2.1 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-source + generate-sources + + add-source + + + + ${project.build.directory}/generated-sources + + + + + + + maven-dependency-plugin + + + shared-logging-generated-sources + generate-sources + + unpack + + + ${project.build.directory}/generated-sources + false + org.apache.maven.shared:maven-shared-utils:3.1.0:jar:sources + org/apache/maven/shared/utils/logging/*.java + + + + + + maven-surefire-plugin + + + org.apache.maven.surefire + surefire-shadefire + 2.12.4 + + + + + **/JUnit4SuiteTest.java + + + + + maven-shade-plugin + + + package + + shade + + + true + + + org.apache.maven.shared:maven-shared-utils + org.apache.maven.shared:maven-common-artifact-filters + commons-io:commons-io + org.apache.commons:commons-lang3 + + + + + org.apache.maven.shared + org.apache.maven.surefire.shade.org.apache.maven.shared + + + org.apache.commons.io + org.apache.maven.surefire.shade.org.apache.commons.io + + + org.apache.commons.lang3 + org.apache.maven.surefire.shade.org.apache.commons.lang3 + + + + + + + + + + + org.apache.maven + maven-plugin-api + 2.2.1 + compile + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.5.2 + compile + + + org.apache.maven.surefire + surefire-api + 2.22.2 + compile + + + org.apache.maven.surefire + surefire-booter + 2.22.2 + compile + + + org.apache.maven + maven-artifact + 2.2.1 + compile + + + org.apache.maven + maven-plugin-descriptor + 2.2.1 + compile + + + org.apache.maven + maven-project + 2.2.1 + compile + + + org.apache.maven + maven-model + 2.2.1 + compile + + + org.apache.maven + maven-core + 2.2.1 + compile + + + wagon-file + org.apache.maven.wagon + + + wagon-webdav + org.apache.maven.wagon + + + wagon-http-lightweight + org.apache.maven.wagon + + + wagon-ssh + org.apache.maven.wagon + + + wagon-ssh-external + org.apache.maven.wagon + + + doxia-sink-api + org.apache.maven.doxia + + + commons-cli + commons-cli + + + plexus-interactivity-api + org.codehaus.plexus + + + + + org.apache.maven + maven-toolchain + 2.2.1 + compile + + + com.google.code.findbugs + jsr305 + 2.0.3 + provided + + + org.fusesource.jansi + jansi + 1.13 + provided + + + org.codehaus.plexus + plexus-java + 0.9.10 + compile + + + org.mockito + mockito-core + 2.21.0 + test + + + hamcrest-core + org.hamcrest + + + objenesis + org.objenesis + + + + + org.powermock + powermock-core + 2.0.0-beta.5 + test + + + byte-buddy + net.bytebuddy + + + byte-buddy-agent + net.bytebuddy + + + powermock-reflect + org.powermock + + + javassist + org.javassist + + + + + org.powermock + powermock-module-junit4 + 2.0.0-beta.5 + test + + + powermock-module-junit4-common + org.powermock + + + hamcrest-core + org.hamcrest + + + + + org.powermock + powermock-api-mockito2 + 2.0.0-beta.5 + test + + + powermock-api-support + org.powermock + + + + + net.bytebuddy + byte-buddy + 1.8.17 + test + + + net.bytebuddy + byte-buddy-agent + 1.8.17 + test + + + junit + junit + 4.12 + test + + + hamcrest-core + org.hamcrest + + + + + org.hamcrest + hamcrest-library + 1.3 + test + + + hamcrest-core + org.hamcrest + + + + + org.easytesting + fest-assert + 1.4 + test + + + fest-util + org.easytesting + + + + + diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom.sha1 new file mode 100644 index 00000000..56115b5a --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom.sha1 @@ -0,0 +1 @@ +7024a6391c6869c06e7b801c9553553884df2fdb \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/_remote.repositories new file mode 100644 index 00000000..b87dbdb5 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:21 CST 2021 +surefire-api-2.22.2.jar>repo.jenkins-ci.org= +surefire-api-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar new file mode 100644 index 00000000..b0d27f31 Binary files /dev/null and b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar.sha1 new file mode 100644 index 00000000..64926835 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar.sha1 @@ -0,0 +1 @@ +273caddf446705ccceada91064e7266eb8517608 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom new file mode 100644 index 00000000..e03991a3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom @@ -0,0 +1,106 @@ + + + + surefire + org.apache.maven.surefire + 2.22.2 + + 4.0.0 + surefire-api + SureFire API + API used in Surefire and Failsafe MOJO, Booter, Common and test framework providers. + + + + maven-surefire-plugin + + + org.apache.maven.surefire + surefire-shadefire + 2.12.4 + + + + + **/JUnit4SuiteTest.java + + + + + maven-shade-plugin + + + package + + shade + + + true + + + org.apache.maven.shared:maven-shared-utils + + + + + org.apache.maven.shared + org.apache.maven.surefire.shade.org.apache.maven.shared + + + + + + + + + + + org.apache.maven.surefire + surefire-logger-api + 2.22.2 + compile + + + com.google.code.findbugs + jsr305 + 2.0.3 + provided + + + junit + junit + 4.12 + test + + + hamcrest-core + org.hamcrest + + + + + org.hamcrest + hamcrest-library + 1.3 + test + + + hamcrest-core + org.hamcrest + + + + + org.easytesting + fest-assert + 1.4 + test + + + fest-util + org.easytesting + + + + + diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom.sha1 new file mode 100644 index 00000000..c5c3feb0 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom.sha1 @@ -0,0 +1 @@ +49b34d166f30020a893551f058148e559779daf2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/_remote.repositories new file mode 100644 index 00000000..42407468 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:21 CST 2021 +surefire-booter-2.22.2.jar>repo.jenkins-ci.org= +surefire-booter-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar new file mode 100644 index 00000000..85474179 Binary files /dev/null and b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar.sha1 new file mode 100644 index 00000000..47eb3ae8 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar.sha1 @@ -0,0 +1 @@ +84f8a93e76a7991f7f57d0e3905d8cf76176d3f5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom new file mode 100644 index 00000000..88e3fcfe --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom @@ -0,0 +1,225 @@ + + + + surefire + org.apache.maven.surefire + 2.22.2 + + 4.0.0 + surefire-booter + SureFire Booter + API and Facilities used by forked tests running in JVM sub-process. + + + + maven-dependency-plugin + + + build-test-classpath + generate-sources + + build-classpath + + + test + target/test-classpath/cp.txt + + + + + + maven-surefire-plugin + + + org.apache.maven.surefire + surefire-shadefire + 2.12.4 + + + + + **/JUnit4SuiteTest.java + + + + + maven-shade-plugin + + + package + + shade + + + true + + + org.apache.commons:commons-lang3 + commons-io:commons-io + + + + + org.apache.commons.lang3 + org.apache.maven.surefire.shade.org.apache.commons.lang3 + + + org.apache.commons.io + org.apache.maven.surefire.shade.org.apache.commons.io + + + + + + + + + + + org.apache.maven.surefire + surefire-api + 2.22.2 + compile + + + maven-shared-utils + org.apache.maven.shared + + + + + org.apache.maven.shared + maven-shared-utils + 0.9 + test + + + jsr305 + com.google.code.findbugs + + + + + com.google.code.findbugs + jsr305 + 2.0.3 + provided + + + org.mockito + mockito-core + 2.21.0 + test + + + hamcrest-core + org.hamcrest + + + objenesis + org.objenesis + + + + + org.powermock + powermock-core + 2.0.0-beta.5 + test + + + byte-buddy + net.bytebuddy + + + byte-buddy-agent + net.bytebuddy + + + powermock-reflect + org.powermock + + + javassist + org.javassist + + + + + org.powermock + powermock-module-junit4 + 2.0.0-beta.5 + test + + + powermock-module-junit4-common + org.powermock + + + hamcrest-core + org.hamcrest + + + + + org.powermock + powermock-api-mockito2 + 2.0.0-beta.5 + test + + + powermock-api-support + org.powermock + + + + + net.bytebuddy + byte-buddy + 1.8.17 + test + + + net.bytebuddy + byte-buddy-agent + 1.8.17 + test + + + junit + junit + 4.12 + test + + + hamcrest-core + org.hamcrest + + + + + org.hamcrest + hamcrest-library + 1.3 + test + + + hamcrest-core + org.hamcrest + + + + + org.easytesting + fest-assert + 1.4 + test + + + fest-util + org.easytesting + + + + + diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom.sha1 new file mode 100644 index 00000000..180109c9 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom.sha1 @@ -0,0 +1 @@ +378a14fb78a3ba2d3efbb8cce8370937d65d39e3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/_remote.repositories new file mode 100644 index 00000000..69dccef6 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:23 CST 2021 +surefire-junit4-2.22.2.jar>repo.jenkins-ci.org= +surefire-junit4-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.jar b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.jar new file mode 100644 index 00000000..ae12ebf6 Binary files /dev/null and b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.jar differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.jar.sha1 new file mode 100644 index 00000000..138bdc1c --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.jar.sha1 @@ -0,0 +1 @@ +ac953b744c812b8c047f4a050e4fdc610877842b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.pom new file mode 100644 index 00000000..df88582f --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.pom @@ -0,0 +1,90 @@ + + + + surefire-providers + org.apache.maven.surefire + 2.22.2 + + 4.0.0 + surefire-junit4 + SureFire JUnit4 Runner + SureFire JUnit 4.0+ Runner + + + + META-INF + src/main/resources/META-INF + + + + + maven-shade-plugin + 1.4 + + + package + + shade + + + true + + + org.apache.maven.surefire:common-junit3 + org.apache.maven.surefire:common-junit4 + org.apache.maven.surefire:common-java5 + org.apache.maven.shared:maven-shared-utils + + + + + org.apache.maven.shared + org.apache.maven.surefire.shade.org.apache.maven.shared + + + + + + + + + + + junit + junit + 4.0 + provided + + + org.apache.maven.surefire + surefire-api + 2.22.2 + compile + + + org.hamcrest + hamcrest-library + 1.3 + test + + + hamcrest-core + org.hamcrest + + + + + org.easytesting + fest-assert + 1.4 + test + + + fest-util + org.easytesting + + + + + + diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.pom.sha1 new file mode 100644 index 00000000..7faf9624 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.22.2/surefire-junit4-2.22.2.pom.sha1 @@ -0,0 +1 @@ +307e744d057312ea74ce4344391eed147df351ec \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/_remote.repositories new file mode 100644 index 00000000..1b10ee0d --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:21 CST 2021 +surefire-logger-api-2.22.2.jar>repo.jenkins-ci.org= +surefire-logger-api-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar new file mode 100644 index 00000000..eecf3e52 Binary files /dev/null and b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar.sha1 new file mode 100644 index 00000000..a37e8220 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar.sha1 @@ -0,0 +1 @@ +7c1513509a6f386711cfe21f50127a2641986163 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom new file mode 100644 index 00000000..00e8f9ec --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom @@ -0,0 +1,52 @@ + + + + 4.0.0 + + + org.apache.maven.surefire + surefire + 2.22.2 + + + surefire-logger-api + + SureFire Logger API + + Interfaces and Utilities related only to internal SureFire Logger API. Free of dependencies. + + + + UTF-8 + + + + + tibordigana + Tibor Digaňa (tibor17) + tibordigana@apache.org + + PMC + + Europe/Bratislava + + + + \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom.sha1 new file mode 100644 index 00000000..3dd6c658 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom.sha1 @@ -0,0 +1 @@ +8170e8a3cd87c73fb8c97233b57d8ea4000dc8bf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/_remote.repositories new file mode 100644 index 00000000..bd702067 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:22 CST 2021 +surefire-providers-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom new file mode 100644 index 00000000..8b09571a --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom @@ -0,0 +1,71 @@ + + + + + 4.0.0 + + + org.apache.maven.surefire + surefire + 2.22.2 + + + surefire-providers + pom + + SureFire Providers + SureFire Providers Aggregator POM + + + common-junit3 + common-java5 + common-junit4 + common-junit48 + surefire-junit3 + surefire-junit4 + surefire-junit47 + surefire-junit-platform + surefire-testng-utils + surefire-testng + + + + + org.apache.maven.surefire + surefire-api + + + + + + + maven-surefire-plugin + + + org.apache.maven.surefire + surefire-shadefire + 2.12.4 + + + + + + + diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom.sha1 new file mode 100644 index 00000000..be89d7b8 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom.sha1 @@ -0,0 +1 @@ +ee4f06040a14eadb487492a0d419b48586ddbd59 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/_remote.repositories new file mode 100644 index 00000000..e4cdb0a7 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:30 CST 2021 +surefire-2.22.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom b/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom new file mode 100644 index 00000000..9d57448c --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom @@ -0,0 +1,707 @@ + + + + 4.0.0 + + + maven-parent + org.apache.maven + 33 + + + org.apache.maven.surefire + surefire + 2.22.2 + pom + + Apache Maven Surefire + Surefire is a test framework project. + This is the aggregator POM in Apache Maven Surefire project. + https://maven.apache.org/surefire/ + 2004 + + + + Jesse Kuhnert + + + Marvin Froeder + marvin@marvinformatics.com + + + + + surefire-logger-api + surefire-api + surefire-shadefire + surefire-booter + surefire-grouper + surefire-providers + maven-surefire-common + surefire-report-parser + maven-surefire-plugin + maven-failsafe-plugin + maven-surefire-report-plugin + surefire-its + + + + ${maven.surefire.scm.devConnection} + ${maven.surefire.scm.devConnection} + https://github.com/apache/maven-surefire/tree/${project.scm.tag} + surefire-2.22.2 + + + jira + https://issues.apache.org/jira/browse/SUREFIRE + + + Jenkins + https://builds.apache.org/job/maven-box/job/maven-surefire + + + + apache.website + scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path} + + + + + 2.2.1 + + 3.5 + 2.5 + 0.9 + 2.0.0-beta.5 + scm:git:https://gitbox.apache.org/repos/asf/maven-surefire.git + surefire-archives/surefire-LATEST + + ${java.home}/.. + 1.${javaVersion} + 1.${javaVersion} + -server -XX:+UseG1GC -Xms128m -Xmx144m -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true + + + + + + org.apache.maven.surefire + surefire-api + ${project.version} + + + org.apache.commons + commons-lang3 + ${commonsLang3Version} + + + commons-io + commons-io + ${commonsIoVersion} + + + org.apache.maven.surefire + surefire-booter + ${project.version} + + + org.apache.maven.surefire + surefire-logger-api + ${project.version} + + + org.apache.maven.surefire + surefire-grouper + ${project.version} + + + org.apache.maven.surefire + maven-surefire-common + ${project.version} + + + org.apache.maven.reporting + maven-reporting-api + 3.0 + + + org.apache.maven + maven-core + ${mavenVersion} + + + org.apache.maven.wagon + wagon-file + + + org.apache.maven.wagon + wagon-webdav + + + org.apache.maven.wagon + wagon-http-lightweight + + + org.apache.maven.wagon + wagon-ssh + + + org.apache.maven.wagon + wagon-ssh-external + + + org.apache.maven.doxia + doxia-sink-api + + + commons-cli + commons-cli + + + org.codehaus.plexus + plexus-interactivity-api + + + + + org.apache.maven + maven-plugin-api + ${mavenVersion} + + + org.apache.maven.plugin-tools + maven-plugin-annotations + ${mavenPluginToolsVersion} + compile + + + org.apache.maven + maven-artifact + ${mavenVersion} + + + org.apache.maven + maven-plugin-descriptor + ${mavenVersion} + + + org.apache.maven + maven-project + ${mavenVersion} + + + org.apache.maven + maven-model + ${mavenVersion} + + + org.apache.maven + maven-toolchain + ${mavenVersion} + + + org.apache.maven + maven-settings + ${mavenVersion} + + + org.apache.maven.shared + maven-shared-utils + ${mavenSharedUtilsVersion} + + + com.google.code.findbugs + jsr305 + + + + + org.apache.maven.shared + maven-common-artifact-filters + 1.3 + + + org.apache.maven.shared + maven-plugin-testing-harness + + + + + org.fusesource.jansi + jansi + 1.13 + + + org.apache.maven.shared + maven-verifier + 1.6 + + + org.codehaus.plexus + plexus-java + 0.9.10 + + + org.mockito + mockito-core + 2.21.0 + + + org.hamcrest + hamcrest-core + + + + + + org.powermock + powermock-core + ${powermockVersion} + test + + + net.bytebuddy + byte-buddy + + + net.bytebuddy + byte-buddy-agent + + + + + net.bytebuddy + byte-buddy + 1.8.17 + + + net.bytebuddy + byte-buddy-agent + 1.8.17 + + + org.powermock + powermock-module-junit4 + ${powermockVersion} + test + + + org.powermock + powermock-api-mockito2 + ${powermockVersion} + test + + + + junit + junit + 4.12 + + + org.hamcrest + hamcrest-library + 1.3 + + + org.easytesting + fest-assert + 1.4 + + + org.assertj + assertj-core + 3.9.1 + + + com.google.code.findbugs + jsr305 + 2.0.3 + + + + + + junit + junit + test + + + org.hamcrest + hamcrest-core + + + + + org.hamcrest + hamcrest-library + test + + + org.easytesting + fest-assert + test + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + org.apache.maven.plugins + maven-compiler-plugin + + + compile-generated + process-sources + + compile + + + + org/apache/maven/shared/utils/logging/*.java + HelpMojo.java + **/HelpMojo.java + org/apache/maven/plugin/failsafe/xmlsummary/*.java + + + + -Xdoclint:none + + + + + default-compile + compile + + compile + + + + org/apache/maven/shared/utils/logging/*.java + HelpMojo.java + **/HelpMojo.java + org/apache/maven/plugin/failsafe/xmlsummary/*.java + + + -Xdoclint:all + + + + + + true + + -Xdoclint:all + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.16 + + + signature-check + + check + + + + org.codehaus.mojo.signature + java16 + 1.1 + + + org.codehaus.plexus:plexus-java + org.ow2.asm:asm + + + org.objectweb.asm.* + org.codehaus.plexus.languages.java.jpms.* + + + + + + + maven-surefire-plugin + 2.12.4 + + + false + ${jvm.args.tests} ${jacoco.agent} -Dnet.bytebuddy.experimental=true + false + false + ${jdk.home}/bin/java + + + + maven-release-plugin + + clean install + false + + + + maven-plugin-plugin + + true + + + + maven-invoker-plugin + 3.0.1 + + + org.jacoco + jacoco-maven-plugin + 0.8.2 + + + + + + org.jacoco + jacoco-maven-plugin + + + jacoco-agent + + prepare-agent + + + + + jacoco.agent + true + true + false + false + + **/failsafe/* + **/failsafe/**/* + **/surefire/* + **/surefire/**/* + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M1 + + + enforce-java + + enforce + + + + + + + [1.8, 1.9) + + + + + + enforce-maven + + enforce + + + + + [3.1.0,) + + + + + + enforce-bytecode-version + + enforce + + + + + ${maven.compiler.target} + + org.codehaus.plexus:plexus-java + org.ow2.asm:asm + org.junit.platform:junit-platform-commons + + + + + + + + true + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + org.apache.rat + apache-rat-plugin + + + rat-check + + check + + + + Jenkinsfile + README.md + .gitignore + .git/**/* + **/.idea + **/.svn/**/* + **/*.iml + **/*.ipr + **/*.iws + **/*.versionsBackup + **/dependency-reduced-pom.xml + .repository/** + src/test/resources/**/* + src/test/resources/**/*.css + **/*.jj + src/main/resources/META-INF/services/org.apache.maven.surefire.providerapi.SurefireProvider + + DEPENDENCIES + .m2/** + .m2 + .travis.yml + + + + + + + maven-deploy-plugin + + true + + + + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.12.4 + + + + + + + reporting + + + + + + org.apache.maven.plugins + maven-site-plugin + + + + + + + + + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + Type,Priority,Key,Summary,Resolution + true + Fixed + type DESC,Priority DESC,Key + 1000 + true + + + + + + + m2e + + target + + + + m2e.version + + + + ${m2BuildDirectory} + + + org.maven.ide.eclipse + lifecycle-mapping + 0.10.0 + + customizable + + + + + + + org.apache.maven.plugins:maven-resources-plugin:: + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom.sha1 new file mode 100644 index 00000000..52c9ded4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom.sha1 @@ -0,0 +1 @@ +2bf172bb2ad3375d96a945775254a5d23f82612e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/_remote.repositories new file mode 100644 index 00000000..dd195414 --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +wagon-provider-api-2.10.jar>repo.jenkins-ci.org= +wagon-provider-api-2.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar new file mode 100644 index 00000000..454d3cde Binary files /dev/null and b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar differ diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar.sha1 new file mode 100644 index 00000000..2d079ac1 --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar.sha1 @@ -0,0 +1 @@ +0cd9cdde3f56bb5250d87c54592f04cbc24f03bf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom new file mode 100644 index 00000000..b3f06ee4 --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom @@ -0,0 +1,45 @@ + + + + 4.0.0 + + + org.apache.maven.wagon + wagon + 2.10 + ../pom.xml + + + wagon-provider-api + Apache Maven Wagon :: API + Maven Wagon API that defines the contract between different Wagon implementations + + + + org.codehaus.plexus + plexus-utils + + + org.easymock + easymock + test + + + diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom.sha1 new file mode 100644 index 00000000..2f37c451 --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom.sha1 @@ -0,0 +1 @@ +8f5232e7bd333fe4479e19e62ea8fbeaec6964db \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/2.10/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon/2.10/_remote.repositories new file mode 100644 index 00000000..32db3491 --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon/2.10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:15 CST 2021 +wagon-2.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom b/artifacts/m2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom new file mode 100644 index 00000000..f2fae1f3 --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom @@ -0,0 +1,580 @@ + + + + 4.0.0 + + + maven-parent + org.apache.maven + 26 + ../pom/maven/pom.xml + + + org.apache.maven.wagon + wagon + 2.10 + pom + + Apache Maven Wagon + Tools to manage artifacts and deployment + http://maven.apache.org/wagon + 2003 + + + true + 1.7.7 + wagon-archives/wagon-LATEST + + + + + James William Dumay + + + Nathan Beyer + + + Gregory Block + + + Thomas Recloux + + + Trustin Lee + + + John Wells + + + Marcel Schutte + + + David Hawkins + + + Juan F. Codagnone + + + ysoonleo + + + Thomas Champagne + + + M. van der Plas + + + Jason Dillon + + + Jochen Wiedmann + + + Gilles Scokart + + + Wolfgang Glas + + + Kohsuke Kawaguchi + + + Antti Virtanen + + + Thorsten Heit + + + Michal Maczka + michal@codehaus.org + Codehaus + + Developer + + + + Adrián Boimvaser + Application Security, Inc. + + Developer + + + + Oleg Kalnichevski + + + William Bernardet + + + Michael Neale + + + Grzegorz Grzybek + + + + + + Maven Developer List + dev-subscribe@maven.apache.org + dev-unsubscribe@maven.apache.org + dev@maven.apache.org + http://mail-archives.apache.org/mod_mbox/maven-dev + + http://www.mail-archive.com/dev@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html + http://maven-dev.markmail.org/ + + + + Maven User List + users-subscribe@maven.apache.org + users-unsubscribe@maven.apache.org + users@maven.apache.org + http://mail-archives.apache.org/mod_mbox/maven-users + + http://www.mail-archive.com/users@maven.apache.org/ + http://maven.40175.n5.nabble.com/Maven-Users-f40176.html + http://maven-users.markmail.org/ + + + + + LEGACY Wagon User List (deprecated) + wagon-users@maven.apache.org + wagon-users-subscribe@maven.apache.org + wagon-users-unsubscribe@maven.apache.org + http://mail-archives.apache.org/mod_mbox/maven-wagon-users/ + + http://www.mail-archive.com/wagon-users@maven.apache.org + http://maven.40175.n5.nabble.com/Wagon-Users-f326332.html + http://maven-wagon-users.markmail.org/ + + + + LEGACY Wagon Developer List (deprecated) + wagon-dev@maven.apache.org + wagon-dev-subscribe@maven.apache.org + wagon-dev-unsubscribe@maven.apache.org + http://mail-archives.apache.org/mod_mbox/maven-wagon-dev/ + + http://www.mail-archive.com/wagon-dev@maven.apache.org + http://maven.40175.n5.nabble.com/Wagon-Dev-f326406.html + http://maven-wagon-dev.markmail.org/ + + + + Wagon Commits List + wagon-commits-subscribe@maven.apache.org + wagon-commits-unsubscribe@maven.apache.org + http://mail-archives.apache.org/mod_mbox/maven-wagon-commits/ + + http://maven-wagon-commits.markmail.org/ + + + + + + scm:git:https://git-wip-us.apache.org/repos/asf/maven-wagon.git + scm:git:https://git-wip-us.apache.org/repos/asf/maven-wagon.git + https://github.com/apache/maven-wagon/tree/${project.scm.tag} + wagon-2.10 + + + + jira + https://issues.apache.org/jira/browse/WAGON + + + Jenkins + https://builds.apache.org/job/maven-wagon/ + + + + + apache.website + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + + wagon-provider-api + wagon-providers + wagon-provider-test + wagon-tcks + + + + + junit + junit + test + + + + + + + org.apache.maven.wagon + wagon-provider-api + ${project.version} + + + org.apache.maven.wagon + wagon-provider-test + ${project.version} + + + org.apache.maven.wagon + wagon-ssh-common-test + ${project.version} + + + org.apache.maven.wagon + wagon-ssh-common + ${project.version} + + + junit + junit + 4.11 + + + org.codehaus.plexus + plexus-interactivity-api + 1.0-alpha-6 + + + plexus + plexus-utils + + + org.codehaus.plexus + plexus-container-default + + + classworlds + classworlds + + + + + org.codehaus.plexus + plexus-container-default + 1.5.5 + test + + + org.codehaus.plexus + plexus-utils + 3.0.15 + + + + + org.slf4j + slf4j-api + ${slf4jVersion} + + + org.slf4j + slf4j-simple + ${slf4jVersion} + test + + + + org.slf4j + slf4j-log4j12 + ${slf4jVersion} + + + org.slf4j + jcl-over-slf4j + ${slf4jVersion} + + + + commons-lang + commons-lang + 2.6 + + + commons-io + commons-io + 2.2 + + + org.easymock + easymock + 3.2 + test + + + + org.mortbay.jetty + jetty + 6.1.26 + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + 400 + + ${project.build.directory} + + + + + org.apache.maven.plugins + maven-site-plugin + + scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} + + + + org.apache.rat + apache-rat-plugin + + + **/*.odg + src/test/resources/** + src/main/resources/default-server-root/** + src/main/resources/ssh-keys/** + src/test/ssh-keys/** + .repository/** + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.rat + apache-rat-plugin + [0.11,) + + check + + + + + + + + + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + generate + + generate-metadata + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.9 + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + check-java-1.5-compat + process-classes + + check + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + enforce + + + + + 1.6.0 + + + + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + + http://java.sun.com/j2ee/1.4/docs/api + http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ + http://commons.apache.org/logging/apidocs/ + http://commons.apache.org/pool/apidocs/ + http://junit.sourceforge.net/javadoc/ + http://logging.apache.org/log4j/1.2/apidocs/ + http://jakarta.apache.org/regexp/apidocs/ + http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ + http://maven.apache.org/ref/current/maven-artifact/apidocs/ + http://maven.apache.org/ref/current/maven-artifact-manager/apidocs/ + http://maven.apache.org/ref/current/maven-model/apidocs/ + http://maven.apache.org/ref/current/maven-plugin-api/apidocs/ + http://maven.apache.org/ref/current/maven-project/apidocs/ + http://maven.apache.org/ref/current/maven-reporting/maven-reporting-api/apidocs/ + http://maven.apache.org/ref/current/maven-settings/apidocs/ + + + + API + Test + org.apache.maven.wagon* + + + File Provider + org.apache.maven.wagon.providers.file* + + + FTP Provider + org.apache.maven.wagon.providers.ftp* + + + HTTP Providers + org.apache.maven.wagon.providers.http*:org.apache.maven.wagon.shared.http* + + + SCM Provider + org.apache.maven.wagon.providers.scm* + + + SSH Providers + org.apache.maven.wagon.providers.ssh* + + + Webdav Provider + org.apache.maven.wagon.providers.webdav*:org.apache.jackrabbit.webdav* + + + HTTP TCK + org.apache.maven.wagon.tck.http* + + + + + + non-aggregate + + javadoc + test-javadoc + + + + aggregate + false + + aggregate + + + + + + org.apache.maven.plugins + maven-jxr-plugin + + + non-aggregate + + jxr + test-jxr + + + + aggregate + false + + aggregate + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + non-aggregate + + checkstyle + + + + aggregate + false + + checkstyle-aggregate + + + + + + + + + + diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom.sha1 new file mode 100644 index 00000000..8e4e7d8d --- /dev/null +++ b/artifacts/m2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom.sha1 @@ -0,0 +1 @@ +d51307a7a9d4909736d942b1f8a0711c11f90aca \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/_remote.repositories b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/_remote.repositories new file mode 100644 index 00000000..f34e3c44 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +tomcat-embed-core-9.0.29.jar>repo.jenkins-ci.org= +tomcat-embed-core-9.0.29.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.jar b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.jar new file mode 100644 index 00000000..6e9b4c78 Binary files /dev/null and b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.jar differ diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.jar.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.jar.sha1 new file mode 100644 index 00000000..48ed2727 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.jar.sha1 @@ -0,0 +1 @@ +207dc9ca4215853d96ed695862f9873001f02a4b \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.pom b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.pom new file mode 100644 index 00000000..73be1cf5 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.pom @@ -0,0 +1,43 @@ + + + + 4.0.0 + org.apache.tomcat.embed + tomcat-embed-core + 9.0.29 + Core Tomcat implementation + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + org.apache.tomcat + tomcat-annotations-api + 9.0.29 + compile + + + diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.pom.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.pom.sha1 new file mode 100644 index 00000000..20b930f5 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/9.0.29/tomcat-embed-core-9.0.29.pom.sha1 @@ -0,0 +1 @@ +a9c99d34426500f071e2710fd405c36698398481 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/_remote.repositories b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/_remote.repositories new file mode 100644 index 00000000..9c7aaaf8 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +tomcat-embed-el-9.0.29.jar>repo.jenkins-ci.org= +tomcat-embed-el-9.0.29.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.jar b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.jar new file mode 100644 index 00000000..944c15a2 Binary files /dev/null and b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.jar differ diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.jar.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.jar.sha1 new file mode 100644 index 00000000..438f0c4a --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.jar.sha1 @@ -0,0 +1 @@ +3c1186083cb613c18949ffac21d856ecf8cdfd13 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.pom b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.pom new file mode 100644 index 00000000..0743a07b --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.pom @@ -0,0 +1,35 @@ + + + + 4.0.0 + org.apache.tomcat.embed + tomcat-embed-el + 9.0.29 + Core Tomcat implementation + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.pom.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.pom.sha1 new file mode 100644 index 00000000..6ef8e9cf --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/9.0.29/tomcat-embed-el-9.0.29.pom.sha1 @@ -0,0 +1 @@ +6934f62235ff015042aa810148bc345c55514717 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/_remote.repositories b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/_remote.repositories new file mode 100644 index 00000000..a4a53426 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +tomcat-embed-websocket-9.0.29.jar>repo.jenkins-ci.org= +tomcat-embed-websocket-9.0.29.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.jar b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.jar new file mode 100644 index 00000000..fc8d9272 Binary files /dev/null and b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.jar differ diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.jar.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.jar.sha1 new file mode 100644 index 00000000..1aa53d95 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.jar.sha1 @@ -0,0 +1 @@ +57a550a531648dd665444f11d45c352a6978c7b6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.pom b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.pom new file mode 100644 index 00000000..0fdb4873 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.pom @@ -0,0 +1,43 @@ + + + + 4.0.0 + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.29 + Core Tomcat implementation + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.29 + compile + + + diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.pom.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.pom.sha1 new file mode 100644 index 00000000..98fd31a6 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.29/tomcat-embed-websocket-9.0.29.pom.sha1 @@ -0,0 +1 @@ +84bc8dd3d438f8728172bd4450bd8fe945118d07 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/_remote.repositories b/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/_remote.repositories new file mode 100644 index 00000000..c1c309a9 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:48 CST 2021 +tomcat-annotations-api-9.0.29.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/tomcat-annotations-api-9.0.29.pom b/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/tomcat-annotations-api-9.0.29.pom new file mode 100644 index 00000000..f167b6e0 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/tomcat-annotations-api-9.0.29.pom @@ -0,0 +1,35 @@ + + + + 4.0.0 + org.apache.tomcat + tomcat-annotations-api + 9.0.29 + Annotations Package + https://tomcat.apache.org/ + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/tomcat-annotations-api-9.0.29.pom.sha1 b/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/tomcat-annotations-api-9.0.29.pom.sha1 new file mode 100644 index 00000000..b94fe831 --- /dev/null +++ b/artifacts/m2/org/apache/tomcat/tomcat-annotations-api/9.0.29/tomcat-annotations-api-9.0.29.pom.sha1 @@ -0,0 +1 @@ +a3f120a746e8c52b95a29b4f75d6138074752c2a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/_remote.repositories new file mode 100644 index 00000000..840e508a --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:27 CST 2021 +plexus-archiver-3.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom new file mode 100644 index 00000000..814f5e6f --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom @@ -0,0 +1,159 @@ + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 5.0 + + + plexus-archiver + 3.5 + Plexus Archiver Component + + + scm:git:git@github.com:codehaus-plexus/plexus-archiver.git + scm:git:git@github.com:codehaus-plexus/plexus-archiver.git + http://github.com/codehaus-plexus/plexus-archiver + plexus-archiver-3.5 + + + jira + https://github.com/codehaus-plexus/plexus-archiver/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + 7 + + + + + Dan Tran + + + Richard van der Hoff + + + Tomasz 'Trog' Welman + trog@swmud.pl + + + + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-30 + provided + + + org.codehaus.plexus + plexus-utils + 3.0.24 + + + org.codehaus.plexus + plexus-io + 3.0.0 + + + org.apache.commons + commons-compress + 1.14 + + + org.iq80.snappy + snappy + 0.4 + + + junit + junit + 4.12 + test + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + org.tukaani + xz + 1.6 + runtime + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + + + **/src/test/resources/utf8/** + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom.sha1 new file mode 100644 index 00000000..bc516d29 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom.sha1 @@ -0,0 +1 @@ +3d2c90dc6a5d611a0ec7458919e0d691b4a1953e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/_remote.repositories new file mode 100644 index 00000000..3e337298 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +plexus-archiver-3.6.0.jar>repo.jenkins-ci.org= +plexus-archiver-3.6.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar new file mode 100644 index 00000000..00000570 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar.sha1 new file mode 100644 index 00000000..814cc678 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar.sha1 @@ -0,0 +1 @@ +1b74dd2c2f4209d227673c2a233a1db60956b8ab \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom new file mode 100644 index 00000000..8d5c9ad9 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom @@ -0,0 +1,159 @@ + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 5.0 + + + plexus-archiver + 3.6.0 + Plexus Archiver Component + + + scm:git:git@github.com:codehaus-plexus/plexus-archiver.git + scm:git:git@github.com:codehaus-plexus/plexus-archiver.git + http://github.com/codehaus-plexus/plexus-archiver + plexus-archiver-3.6.0 + + + jira + https://github.com/codehaus-plexus/plexus-archiver/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + 7 + + + + + Dan Tran + + + Richard van der Hoff + + + Tomasz 'Trog' Welman + trog@swmud.pl + + + + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-30 + provided + + + org.codehaus.plexus + plexus-utils + 3.1.0 + + + org.codehaus.plexus + plexus-io + 3.0.1 + + + org.apache.commons + commons-compress + 1.16.1 + + + org.iq80.snappy + snappy + 0.4 + + + junit + junit + 4.12 + test + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + org.tukaani + xz + 1.8 + runtime + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + + + **/src/test/resources/utf8/** + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom.sha1 new file mode 100644 index 00000000..4943b898 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom.sha1 @@ -0,0 +1 @@ +9929853c94aef0eb677cd2ff39c05a75e57cc199 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/_remote.repositories new file mode 100644 index 00000000..a44f40e2 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +plexus-archiver-4.1.0.jar>repo.jenkins-ci.org= +plexus-archiver-4.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar new file mode 100644 index 00000000..7eacc51a Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar.sha1 new file mode 100644 index 00000000..5c52462d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar.sha1 @@ -0,0 +1 @@ +0763af859d6f9fafbc61d2034fcf12275e72554e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom new file mode 100644 index 00000000..3135280b --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom @@ -0,0 +1,159 @@ + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 5.1 + + + plexus-archiver + 4.1.0 + Plexus Archiver Component + + + scm:git:git@github.com:codehaus-plexus/plexus-archiver.git + scm:git:git@github.com:codehaus-plexus/plexus-archiver.git + http://github.com/codehaus-plexus/plexus-archiver/tree/${project.scm.tag}/ + plexus-archiver-4.1.0 + + + jira + https://github.com/codehaus-plexus/plexus-archiver/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + 7 + + + + + Dan Tran + + + Richard van der Hoff + + + Tomasz 'Trog' Welman + trog@swmud.pl + + + + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-30 + provided + + + org.codehaus.plexus + plexus-utils + 3.1.1 + + + org.codehaus.plexus + plexus-io + 3.1.1 + + + org.apache.commons + commons-compress + 1.18 + + + org.iq80.snappy + snappy + 0.4 + + + junit + junit + 4.12 + test + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + org.tukaani + xz + 1.8 + runtime + + + + + + + + org.apache.maven.plugins + maven-release-plugin + + + + **/src/test/resources/utf8/** + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom.sha1 new file mode 100644 index 00000000..5b366e8f --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom.sha1 @@ -0,0 +1 @@ +e5a347a3656848a40de0c1554ae0517e65efc687 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/_remote.repositories new file mode 100644 index 00000000..0dd50c3d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +plexus-classworlds-2.5.2.jar>repo.jenkins-ci.org= +plexus-classworlds-2.5.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar new file mode 100644 index 00000000..2560b3ff Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar.sha1 new file mode 100644 index 00000000..bdd66d74 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar.sha1 @@ -0,0 +1 @@ +4abb111bfdace5b8167db4c0ef74644f3f88f142 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom new file mode 100644 index 00000000..3226dfb0 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom @@ -0,0 +1,216 @@ + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 3.3.1 + + + plexus-classworlds + 2.5.2 + bundle + + Plexus Classworlds + A class loader framework + 2002 + + + scm:git:git@github.com:sonatype/plexus-classworlds.git + scm:git:git@github.com:sonatype/plexus-classworlds.git + http://github.com/sonatype/plexus-classworlds + plexus-classworlds-2.5.2 + + + + + adm-site + scm:git:git@github.com:sonatype/plexus-classworlds.git + + + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.0 + + gh-pages + + + + org.apache.maven.plugins + maven-site-plugin + 3.3 + + gh-pages + + + + org.apache.maven.plugins + maven-release-plugin + 2.5 + + true + false + false + deploy + -Pplexus-release + + + + + + + org.apache.felix + maven-bundle-plugin + true + + + <_nouses>true + org.codehaus.classworlds.*;org.codehaus.plexus.classworlds.* + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + org.codehaus.plexus.classworlds.launcher.Launcher + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + -ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds + once + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + org/codehaus/plexus/classworlds/event/* + + + + + org.apache.maven.plugins + maven-dependency-plugin + 2.0 + + + generate-test-resources + + copy + + + + + org.apache.ant + ant + 1.9.0 + + + commons-logging + commons-logging + 1.0.3 + + + xml-apis + xml-apis + 1.3.02 + + + ${project.build.directory}/test-lib + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.3.1 + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + false + + + + + summary + index + dependencies + issue-tracking + scm + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + utf-8 + true + true + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom.sha1 new file mode 100644 index 00000000..5a4a2705 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom.sha1 @@ -0,0 +1 @@ +a39bedbc3fa3652d3606821d7c21d80e900f57a0 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/_remote.repositories new file mode 100644 index 00000000..6f1745eb --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:16 CST 2021 +plexus-compiler-api-2.8.4.jar>repo.jenkins-ci.org= +plexus-compiler-api-2.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar new file mode 100644 index 00000000..2ff8a24b Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar.sha1 new file mode 100644 index 00000000..827cd327 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar.sha1 @@ -0,0 +1 @@ +ab13f02c237842b1d81b531fafd27f3c13585a37 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom new file mode 100644 index 00000000..f985310b --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom @@ -0,0 +1,26 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus-compiler + 2.8.4 + + + plexus-compiler-api + + Plexus Compiler Api + Plexus Compilers component's API to manipulate compilers. + + + + org.codehaus.plexus + plexus-utils + + + junit + junit + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom.sha1 new file mode 100644 index 00000000..be5459ba --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom.sha1 @@ -0,0 +1 @@ +be4194949f559462e78267207a99360274a58056 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/_remote.repositories new file mode 100644 index 00000000..d1d60f2e --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:16 CST 2021 +plexus-compiler-javac-2.8.4.jar>repo.jenkins-ci.org= +plexus-compiler-javac-2.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar new file mode 100644 index 00000000..5c8a780e Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar.sha1 new file mode 100644 index 00000000..e45cbb58 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar.sha1 @@ -0,0 +1 @@ +4a2c03bf7663dff8fd512cc1a7adecacf1a2249b \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom new file mode 100644 index 00000000..defe5d07 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom @@ -0,0 +1,23 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus-compilers + 2.8.4 + + + plexus-compiler-javac + + Plexus Javac Component + Javac Compiler support for Plexus Compiler component. + + + + org.codehaus.plexus + plexus-utils + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom.sha1 new file mode 100644 index 00000000..300e5320 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom.sha1 @@ -0,0 +1 @@ +fecd511a1cd70f23ecee2cecc52b4d89124c114c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/_remote.repositories new file mode 100644 index 00000000..372607ea --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:16 CST 2021 +plexus-compiler-manager-2.8.4.jar>repo.jenkins-ci.org= +plexus-compiler-manager-2.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar new file mode 100644 index 00000000..046edf8f Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar.sha1 new file mode 100644 index 00000000..8fd1c134 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar.sha1 @@ -0,0 +1 @@ +43b09c6b1831e962259634ac9ae2e6ac0467560e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom new file mode 100644 index 00000000..8b8972de --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom @@ -0,0 +1,21 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus-compiler + 2.8.4 + + + plexus-compiler-manager + + Plexus Compiler Manager + + + + org.codehaus.plexus + plexus-compiler-api + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom.sha1 new file mode 100644 index 00000000..ed4dce53 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom.sha1 @@ -0,0 +1 @@ +578d6fba6c0b8a91884f3e710e051ad466d33425 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/_remote.repositories new file mode 100644 index 00000000..73858f4d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:14 CST 2021 +plexus-compiler-2.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom new file mode 100644 index 00000000..b8541815 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom @@ -0,0 +1,197 @@ + + + + 4.0.0 + + + org.codehaus.plexus + plexus-components + 4.0 + + + plexus-compiler + 2.8.4 + pom + + Plexus Compiler + Plexus Compiler is a Plexus component to use different compilers through a uniform API. + + + plexus-compiler-api + plexus-compiler-manager + plexus-compilers + plexus-compiler-test + + + + ${scm.url} + ${scm.url} + http://github.com/codehaus-plexus/plexus-compiler/tree/${project.scm.tag}/ + plexus-compiler-2.8.4 + + + github + https://github.com/codehaus-plexus/plexus-compiler/issues + + + + github:gh-pages + ${scm.url} + + + + + scm:git:git@github.com:codehaus-plexus/plexus-compiler.git + 7 + true + + + + + + org.codehaus.plexus + plexus-compiler-api + ${project.version} + + + org.codehaus.plexus + plexus-compiler-test + ${project.version} + + + junit + junit + test + 4.12 + + + + + + org.codehaus.plexus + plexus-container-default + provided + + + junit + junit + test + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.20 + + ${redirectTestOutputToFile} + + + + org.apache.maven.plugins + maven-release-plugin + + plexus-release,tools.jar + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + + + + org.apache.maven.plugins + maven-site-plugin + + ${scm.url} + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + merge-metadata + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.16 + + + + test + + check + + + + org.codehaus.mojo.signature + java17 + 1.0 + + + + + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + + + + + + maven.repo.local + + + maven.repo.local + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + maven.repo.local + ${maven.repo.local} + + + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom.sha1 new file mode 100644 index 00000000..0ee51e47 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom.sha1 @@ -0,0 +1 @@ +0e54ac334bbea91bcb67325d78871c4082522f28 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/_remote.repositories new file mode 100644 index 00000000..440aa1f9 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:15 CST 2021 +plexus-compilers-2.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom new file mode 100644 index 00000000..c6298396 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom @@ -0,0 +1,43 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus-compiler + 2.8.4 + + + plexus-compilers + pom + + Plexus Compilers + + + plexus-compiler-aspectj + plexus-compiler-csharp + plexus-compiler-eclipse + plexus-compiler-jikes + plexus-compiler-javac + plexus-compiler-javac-errorprone + plexus-compiler-j2objc + + + + + junit + junit + test + + + org.codehaus.plexus + plexus-compiler-api + + + org.codehaus.plexus + plexus-compiler-test + test + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom.sha1 new file mode 100644 index 00000000..708d4d15 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom.sha1 @@ -0,0 +1 @@ +2ee8e7bcc9426c075fa4d0c415fb648ea8a9d701 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories new file mode 100644 index 00000000..405686ee --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +plexus-component-annotations-1.6.jar>repo.jenkins-ci.org= +plexus-component-annotations-1.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar new file mode 100644 index 00000000..22e433d9 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar.sha1 new file mode 100644 index 00000000..30be65ec --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar.sha1 @@ -0,0 +1 @@ +1a34a4e12b5fded8c548a568f463dfee21500927 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom new file mode 100644 index 00000000..cf5613c9 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom @@ -0,0 +1,20 @@ + + + + + 4.0.0 + + + org.codehaus.plexus + plexus-containers + 1.6 + + + plexus-component-annotations + + Plexus :: Component Annotations + + Plexus Component "Java 5" Annotations, to describe plexus components properties in java sources with + standard annotations instead of javadoc annotations. + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom.sha1 new file mode 100644 index 00000000..d816dba4 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom.sha1 @@ -0,0 +1 @@ +b3100bff4d6af30a293f11b7a8023110882cfb00 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/_remote.repositories new file mode 100644 index 00000000..7ed43521 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:05 CST 2021 +plexus-component-annotations-1.7.1.jar>repo.jenkins-ci.org= +plexus-component-annotations-1.7.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar new file mode 100644 index 00000000..cd7e3624 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar.sha1 new file mode 100644 index 00000000..552815b6 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar.sha1 @@ -0,0 +1 @@ +862abca6deff0fff241a835a33d22559e9132069 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom new file mode 100644 index 00000000..489002ce --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom @@ -0,0 +1,20 @@ + + + + + 4.0.0 + + + org.codehaus.plexus + plexus-containers + 1.7.1 + + + plexus-component-annotations + + Plexus :: Component Annotations + + Plexus Component "Java 5" Annotations, to describe plexus components properties in java sources with + standard annotations instead of javadoc annotations. + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom.sha1 new file mode 100644 index 00000000..251d563d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom.sha1 @@ -0,0 +1 @@ +e265daf1fcf56a67dd9bae3db80531a9717ccee4 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/_remote.repositories new file mode 100644 index 00000000..731e5619 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:14 CST 2021 +plexus-components-4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom new file mode 100644 index 00000000..41afb40a --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom @@ -0,0 +1,73 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + ../pom/pom.xml + + + plexus-components + 4.0 + pom + + Plexus Components + + + scm:git:git@github.com:codehaus-plexus/plexus-components.git + scm:git:git@github.com:codehaus-plexus/plexus-components.git + http://github.com/codehaus-plexus/plexus-components + plexus-components-4.0 + + + github + http://github.com/codehaus-plexus/plexus-components/issues + + + + github:gh-pages + scm:git:git@github.com:codehaus-plexus + + + + + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-9-stable-1 + + + org.codehaus.plexus + plexus-utils + 3.0.22 + + + junit + junit + 3.8.2 + test + + + + + + + + org.codehaus.plexus + plexus-component-metadata + + + + generate-metadata + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom.sha1 new file mode 100644 index 00000000..15589648 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom.sha1 @@ -0,0 +1 @@ +f9f865523961ae76af3f6cf74a2922d0fe10a433 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories new file mode 100644 index 00000000..463dd565 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:33 CST 2021 +plexus-containers-1.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom new file mode 100644 index 00000000..269101f7 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom @@ -0,0 +1,111 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus + 3.3.2 + + + plexus-containers + 1.6 + pom + + Plexus Containers + + Plexus IoC Container core with companion tools. + + + + plexus-component-annotations + plexus-component-metadata + plexus-component-javadoc + plexus-container-default + + + + scm:git:git@github.com:sonatype/plexus-containers.git + scm:git:git@github.com:sonatype/plexus-containers.git + https://github.com/sonatype/plexus-containers + plexus-containers-1.6 + + + + 2.5.1 + 3.0.20 + 3.7 + UTF-8 + + + + + + org.codehaus.plexus + plexus-container-default + ${project.version} + + + org.codehaus.plexus + plexus-component-annotations + ${project.version} + + + org.codehaus.plexus + plexus-component-metadata + ${project.version} + + + org.codehaus.plexus + plexus-classworlds + ${classWorldsVersion} + + + org.codehaus.plexus + plexus-utils + ${plexusUtilsVersion} + + + org.apache.xbean + xbean-reflect + ${xbeanReflectVersion} + + + com.thoughtworks.qdox + qdox + 2.0-M2 + + + jdom + jdom + 1.1 + + + org.apache.maven + maven-plugin-api + 2.0.9 + + + org.apache.maven + maven-model + 2.0.9 + + + org.apache.maven + maven-project + 2.0.9 + + + com.google.collections + google-collections + 1.0 + + + junit + junit + 4.11 + provided + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom.sha1 new file mode 100644 index 00000000..e4dfefea --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom.sha1 @@ -0,0 +1 @@ +01ee1c699a2730f9119b35055fb0674af36125ea \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/_remote.repositories new file mode 100644 index 00000000..c001715d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:02 CST 2021 +plexus-containers-1.7.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom new file mode 100644 index 00000000..d4024715 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom @@ -0,0 +1,147 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + + + plexus-containers + 1.7.1 + pom + + Plexus Containers + + Plexus IoC Container core with companion tools. + + + + plexus-component-annotations + plexus-component-metadata + plexus-component-javadoc + plexus-container-default + + + + scm:git:https://github.com/codehaus-plexus/plexus-containers.git + scm:git:https://github.com/codehaus-plexus/plexus-containers.git + https://github.com/codehaus-plexus/plexus-containers/tree/plexus-containers-1.x + plexus-containers-1.7.1 + + + github + http://github.com/codehaus-plexus/plexus-containers/issues + + + + github:gh-pages + ${scm.url} + + + + + scm:git:git@github.com:codehaus-plexus/plexus-containers.git + 2.5.1 + 3.0.20 + 3.7 + UTF-8 + 6 + + + + + + org.codehaus.plexus + plexus-container-default + ${project.version} + + + org.codehaus.plexus + plexus-component-annotations + ${project.version} + + + org.codehaus.plexus + plexus-component-metadata + ${project.version} + + + org.codehaus.plexus + plexus-classworlds + ${classWorldsVersion} + + + org.codehaus.plexus + plexus-utils + ${plexusUtilsVersion} + + + org.apache.xbean + xbean-reflect + ${xbeanReflectVersion} + + + com.thoughtworks.qdox + qdox + 2.0-M2 + + + org.jdom + jdom2 + 2.0.6 + + + org.apache.maven + maven-plugin-api + 2.0.9 + + + org.apache.maven + maven-model + 2.0.9 + + + org.apache.maven + maven-project + 2.0.9 + + + com.google.collections + google-collections + 1.0 + + + junit + junit + 4.11 + provided + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + + + + + + + org.apache.maven.plugins + maven-site-plugin + + ${scm.url} + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom.sha1 new file mode 100644 index 00000000..4f99ccfa --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom.sha1 @@ -0,0 +1 @@ +7ff4e431b5af8100be6e9fcd946ba7c532d890e2 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/_remote.repositories new file mode 100644 index 00000000..6417fe77 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +plexus-interpolation-1.22.pom>repo.jenkins-ci.org= +plexus-interpolation-1.22.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar new file mode 100644 index 00000000..d8c10c15 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar.sha1 new file mode 100644 index 00000000..96dbde09 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar.sha1 @@ -0,0 +1 @@ +1a3c07196ad64b0c5378ee1a2092fd72952e20bd \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom new file mode 100644 index 00000000..066d09bd --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom @@ -0,0 +1,47 @@ + + 4.0.0 + + + org.codehaus.plexus + plexus-components + 1.3.1 + + + plexus-interpolation + 1.22 + + Plexus Interpolation API + + + scm:git:git@github.com:sonatype/plexus-interpolation.git + scm:git:git@github.com:sonatype/plexus-interpolation.git + http://github.com/sonatype/plexus-interpolation + plexus-interpolation-1.22 + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + + + **/src/test/resources/utf8/** + + + + + + + + + junit + junit + 4.11 + test + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom.sha1 new file mode 100644 index 00000000..8e3d182b --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom.sha1 @@ -0,0 +1 @@ +782dc9485921d413721351372518740805e45694 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/_remote.repositories new file mode 100644 index 00000000..f1b00a63 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:11 CST 2021 +plexus-interpolation-1.24.jar>repo.jenkins-ci.org= +plexus-interpolation-1.24.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar new file mode 100644 index 00000000..e31495c1 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar.sha1 new file mode 100644 index 00000000..8cdb92dc --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar.sha1 @@ -0,0 +1 @@ +ff3f217127fbd6846bba831ab156e227db2cf347 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom new file mode 100644 index 00000000..4c332797 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom @@ -0,0 +1,77 @@ + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + + + plexus-interpolation + 1.24 + bundle + + Plexus Interpolation API + + + scm:git:git@github.com:codehaus-plexus/plexus-interpolation.git + scm:git:git@github.com:codehaus-plexus/plexus-interpolation.git + http://github.com/codehaus-plexus/plexus-interpolation + plexus-interpolation-1.24 + + + + JIRA + https://github.com/codehaus-plexus/plexus-interpolation/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + org.codehaus.plexus.* + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-release-plugin + + + + **/src/test/resources/utf8/** + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom.sha1 new file mode 100644 index 00000000..1f6f2102 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom.sha1 @@ -0,0 +1 @@ +1909f6cd42a5ead655435ebc7ecb609e3d6536ac \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/_remote.repositories new file mode 100644 index 00000000..fdf91c44 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:23 CST 2021 +plexus-interpolation-1.25.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom new file mode 100644 index 00000000..cc8e4768 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom @@ -0,0 +1,77 @@ + + 4.0.0 + + + org.codehaus.plexus + plexus + 5.1 + + + plexus-interpolation + 1.25 + bundle + + Plexus Interpolation API + + + scm:git:git@github.com:codehaus-plexus/plexus-interpolation.git + scm:git:git@github.com:codehaus-plexus/plexus-interpolation.git + http://github.com/codehaus-plexus/plexus-interpolation/tree/${project.scm.tag}/ + plexus-interpolation-1.25 + + + + JIRA + https://github.com/codehaus-plexus/plexus-interpolation/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + + + + org.apache.felix + maven-bundle-plugin + 3.0.1 + true + + + org.codehaus.plexus.* + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-release-plugin + + + + **/src/test/resources/utf8/** + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom.sha1 new file mode 100644 index 00000000..c7eadc0e --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom.sha1 @@ -0,0 +1 @@ +12076338086123f5e5719c3afd9a5ba98363e35f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/_remote.repositories new file mode 100644 index 00000000..29f8ca89 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:28 CST 2021 +plexus-io-3.0.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom new file mode 100644 index 00000000..795b2aec --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom @@ -0,0 +1,149 @@ + + 4.0.0 + + + plexus + org.codehaus.plexus + 5.0 + + + plexus-io + 3.0.0 + + Plexus IO Components + + + scm:git:git@github.com:codehaus-plexus/plexus-io.git + scm:git:git@github.com:codehaus-plexus/plexus-io.git + http://github.com/codehaus-plexus/plexus-io + plexus-io-3.0.0 + + + jira + https://github.com/codehaus-plexus/plexus-io/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + true + 7 + + + + + org.codehaus.plexus + plexus-utils + 3.0.24 + + + org.codehaus.plexus + plexus-container-default + test + 1.0-alpha-30 + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + commons-io + commons-io + 2.5 + + + junit + junit + 4.12 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + never + + + + org.apache.maven.plugins + maven-release-plugin + + + org.apache.maven.plugins + maven-gpg-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + 1.7.0 + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.12 + + + sniff + test + + check + + + + + + org.codehaus.mojo.signature + java17 + 1.0 + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom.sha1 new file mode 100644 index 00000000..b195a909 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom.sha1 @@ -0,0 +1 @@ +873fa1e145c1f3fbf46d2ccf3e1e353eb3fe9701 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/_remote.repositories new file mode 100644 index 00000000..0a0b84dc --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +plexus-io-3.0.1.jar>repo.jenkins-ci.org= +plexus-io-3.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar new file mode 100644 index 00000000..4e241672 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar.sha1 new file mode 100644 index 00000000..6b740246 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar.sha1 @@ -0,0 +1 @@ +f80682b2005e1274b5f50704ccb34bcf144fbda2 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom new file mode 100644 index 00000000..fd8d1a9f --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom @@ -0,0 +1,149 @@ + + 4.0.0 + + + plexus + org.codehaus.plexus + 5.0 + + + plexus-io + 3.0.1 + + Plexus IO Components + + + scm:git:git@github.com:codehaus-plexus/plexus-io.git + scm:git:git@github.com:codehaus-plexus/plexus-io.git + http://github.com/codehaus-plexus/plexus-io + plexus-io-3.0.1 + + + jira + https://github.com/codehaus-plexus/plexus-io/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + true + 7 + + + + + org.codehaus.plexus + plexus-utils + 3.1.0 + + + org.codehaus.plexus + plexus-container-default + test + 1.0-alpha-30 + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + commons-io + commons-io + 2.6 + + + junit + junit + 4.12 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + never + + + + org.apache.maven.plugins + maven-release-plugin + + + org.apache.maven.plugins + maven-gpg-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + 1.7.0 + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.12 + + + sniff + test + + check + + + + + + org.codehaus.mojo.signature + java17 + 1.0 + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom.sha1 new file mode 100644 index 00000000..47875d6a --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom.sha1 @@ -0,0 +1 @@ +e9b9e28661236bd2a4a6caf1a6c638db90144394 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/_remote.repositories new file mode 100644 index 00000000..ec7961f7 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +plexus-io-3.1.1.jar>repo.jenkins-ci.org= +plexus-io-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar new file mode 100644 index 00000000..b2f166f6 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar.sha1 new file mode 100644 index 00000000..8316416d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar.sha1 @@ -0,0 +1 @@ +3d372932025ed4d545ad0474406e46215432511c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom new file mode 100644 index 00000000..a6a1b85f --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom @@ -0,0 +1,149 @@ + + 4.0.0 + + + org.codehaus.plexus + plexus + 5.1 + + + plexus-io + 3.1.1 + + Plexus IO Components + + + scm:git:git@github.com:codehaus-plexus/plexus-io.git + scm:git:git@github.com:codehaus-plexus/plexus-io.git + http://github.com/codehaus-plexus/plexus-io + plexus-io-3.1.1 + + + jira + https://github.com/codehaus-plexus/plexus-io/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + true + 7 + + + + + org.codehaus.plexus + plexus-utils + 3.1.0 + + + org.codehaus.plexus + plexus-container-default + test + 1.0-alpha-30 + + + com.google.code.findbugs + jsr305 + 3.0.2 + provided + + + commons-io + commons-io + 2.6 + + + junit + junit + 4.12 + test + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + never + + + + org.apache.maven.plugins + maven-release-plugin + + + org.apache.maven.plugins + maven-gpg-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + validate + + enforce + + + + + 1.7.0 + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.12 + + + sniff + test + + check + + + + + + org.codehaus.mojo.signature + java17 + 1.0 + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom.sha1 new file mode 100644 index 00000000..b8e6b86f --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom.sha1 @@ -0,0 +1 @@ +57957485ae217ef811c65ec01a85676fbbd39423 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/_remote.repositories new file mode 100644 index 00000000..cbebe4ca --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:16 CST 2021 +plexus-java-0.9.10.jar>repo.jenkins-ci.org= +plexus-java-0.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar new file mode 100644 index 00000000..41907b68 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar.sha1 new file mode 100644 index 00000000..17e61808 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar.sha1 @@ -0,0 +1 @@ +269ef3b88d500716f958a8e2b78561f34d50df80 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom new file mode 100644 index 00000000..c54ffb7c --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom @@ -0,0 +1,160 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus-languages + 0.9.10 + + plexus-java + + Plexus Languages :: Java + + + 1.7 + 1.7 + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.21.0 + + + + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + + + source + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.21.0 + + + + integration-test + verify + + + + + + **/*Test.java + + + + + + + + + org.ow2.asm + asm + 6.2 + + + com.thoughtworks.qdox + qdox + 2.0-M8 + + + + javax.inject + javax.inject + 1 + true + + + org.codehaus.plexus + plexus-component-annotations + 1.7.1 + true + + + + junit + junit + 4.12 + test + + + org.mockito + mockito-core + 2.18.3 + test + + + com.google.inject + guice + 4.1.0 + test + + + + + + jdk9 + + [9,) + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + + jdk9 + + compile + + + 9 + + ${project.basedir}/src/main/java9 + + ${project.build.outputDirectory}/META-INF/versions/9 + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + default-jar + + + + true + + + + + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom.sha1 new file mode 100644 index 00000000..446b4241 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom.sha1 @@ -0,0 +1 @@ +65d0f66fc4b0adafe01c8b29a8bd692d0d62ba09 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/_remote.repositories new file mode 100644 index 00000000..abff5ab4 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:11 CST 2021 +plexus-languages-0.9.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom b/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom new file mode 100644 index 00000000..80b0eee8 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom @@ -0,0 +1,131 @@ + + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + + + plexus-languages + 0.9.10 + pom + + Plexus Languages + + Plexus Languages maintains shared language features. + + + + plexus-java + + + + scm:git:git@github.com:codehaus-plexus/plexus-languages.git + scm:git:git@github.com:codehaus-plexus/plexus-languages.git + https://github.com/codehaus-plexus/plexus-languages/tree/plexus-languages + plexus-languages-0.9.10 + + + github + http://github.com/codehaus-plexus/plexus-languages/issues + + + + github:gh-pages + ${scm.url} + + + + + scm:git:git@github.com:codehaus-plexus/plexus-languages.git + UTF-8 + 6 + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.0 + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + ${scm.url} + + + + + + + + E:\java-workspace\codehaus-plexus\plexus-languages\target\site + + + org.codehaus.mojo + cobertura-maven-plugin + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + + + + + + + plexus-release + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M1 + + + enforce-java + + enforce + + + + + 9 + + + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom.sha1 new file mode 100644 index 00000000..9b5cd62e --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom.sha1 @@ -0,0 +1 @@ +f7816d2ab70df6ff670bcfb8376d14238a63be72 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/_remote.repositories new file mode 100644 index 00000000..fd3affbf --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:14 CST 2021 +plexus-utils-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom new file mode 100644 index 00000000..9d3413ea --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom @@ -0,0 +1,50 @@ + + + plexus + org.codehaus.plexus + 1.0.11 + ../pom/pom.xml + + 4.0.0 + plexus-utils + Plexus Common Utilities + 1.4.2 + + + + maven-compiler-plugin + + + 1.3 + 1.3 + + + + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + + + + scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.2 + scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.2 + http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.4.2 + + + + + maven-javadoc-plugin + + + maven-jxr-plugin + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 new file mode 100644 index 00000000..b6534730 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom.sha1 @@ -0,0 +1 @@ +f530a0f2aae3ef8e65ca359e7243d67ecc366076 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories index b1f1d142..a70b9a43 100644 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories @@ -1,3 +1,4 @@ #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:39 CST 2019 +#Fri Jan 29 08:52:05 CST 2021 +plexus-utils-2.0.4.jar>repo.jenkins-ci.org= plexus-utils-2.0.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar new file mode 100644 index 00000000..2a6972cc Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar.sha1 new file mode 100644 index 00000000..6bad5d91 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar.sha1 @@ -0,0 +1 @@ +1a363fa733fba4285967162f9a6ffe6fd356ec24 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/_remote.repositories index e03d7939..2503ed03 100644 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/_remote.repositories +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/_remote.repositories @@ -1,3 +1,4 @@ #NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:27 CST 2019 +#Fri Jan 29 08:53:16 CST 2021 +plexus-utils-3.0.15.pom>repo.jenkins-ci.org= plexus-utils-3.0.15.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom new file mode 100644 index 00000000..70967027 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom @@ -0,0 +1,94 @@ + + + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 3.3.1 + + + plexus-utils + 3.0.15 + + Plexus Common Utilities + A collection of various utility classes to ease working with strings, files, command lines, XML and + more. + + http://plexus.codehaus.org/plexus-utils + + + scm:git:git@github.com:sonatype/plexus-utils.git + scm:git:git@github.com:sonatype/plexus-utils.git + http://github.com/sonatype/plexus-utils + plexus-utils-3.0.15 + + + JIRA + http://jira.codehaus.org/browse/PLXUTILS + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + JAVA_HOME + ${JAVA_HOME} + + + M2_HOME + ${M2_HOME} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.1.1 + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 new file mode 100644 index 00000000..313025f2 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom.sha1 @@ -0,0 +1 @@ +b46db4dcfbbcc99f6d9bae21f6bc3634fdf3cf02 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/_remote.repositories new file mode 100644 index 00000000..5cb7843a --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:37 CST 2021 +plexus-utils-3.0.17.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom new file mode 100644 index 00000000..a2a08aa0 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom @@ -0,0 +1,102 @@ + + + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 3.3.1 + + + plexus-utils + 3.0.17 + + Plexus Common Utilities + A collection of various utility classes to ease working with strings, files, command lines, XML and + more. + + http://plexus.codehaus.org/plexus-utils + + + scm:git:git@github.com:sonatype/plexus-utils.git + scm:git:git@github.com:sonatype/plexus-utils.git + http://github.com/sonatype/plexus-utils + plexus-utils-3.0.17 + + + JIRA + http://jira.codehaus.org/browse/PLXUTILS + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + JAVA_HOME + ${JAVA_HOME} + + + M2_HOME + ${M2_HOME} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.1.1 + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.6 + 1.6 + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom.sha1 new file mode 100644 index 00000000..276b8156 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom.sha1 @@ -0,0 +1 @@ +f2f5fa2f18718b54e0c488e9c40ca68c9e0cd190 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/_remote.repositories new file mode 100644 index 00000000..5389a3ca --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:08 CST 2021 +plexus-utils-3.0.24.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom new file mode 100644 index 00000000..9bfd0d39 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom @@ -0,0 +1,123 @@ + + + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + + + plexus-utils + 3.0.24 + + Plexus Common Utilities + A collection of various utility classes to ease working with strings, files, command lines, XML and + more. + + + + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + http://github.com/codehaus-plexus/plexus-utils + plexus-utils-3.0.24 + + + github + http://github.com/codehaus-plexus/plexus-utils/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + + org.apache.maven.shared + maven-plugin-testing-harness + 1.1 + test + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + JAVA_HOME + ${JAVA_HOME} + + + M2_HOME + ${M2_HOME} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.1.1 + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom.sha1 new file mode 100644 index 00000000..5ec43332 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom.sha1 @@ -0,0 +1 @@ +288f4a74efd0cea03e1d59272271f07d598b88d6 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/_remote.repositories new file mode 100644 index 00000000..5f97144d --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:11 CST 2021 +plexus-utils-3.1.0.jar>repo.jenkins-ci.org= +plexus-utils-3.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar new file mode 100644 index 00000000..d5c008ef Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar.sha1 new file mode 100644 index 00000000..df8c1fb2 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar.sha1 @@ -0,0 +1 @@ +60eecb6f15abdb1c653ad80abaac6fe188b3feaa \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom new file mode 100644 index 00000000..366051a7 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom @@ -0,0 +1,142 @@ + + + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + + + plexus-utils + 3.1.0 + + Plexus Common Utilities + A collection of various utility classes to ease working with strings, files, command lines, XML and + more. + + + + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + http://github.com/codehaus-plexus/plexus-utils + plexus-utils-3.1.0 + + + github + http://github.com/codehaus-plexus/plexus-utils/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + 6 + + + + + org.apache.maven.shared + maven-plugin-testing-harness + 1.1 + test + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + JAVA_HOME + ${JAVA_HOME} + + + M2_HOME + ${M2_HOME} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.1.1 + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + + + + + + eclipse-only-jdk-version + + + m2e.version + + + + 7 + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom.sha1 new file mode 100644 index 00000000..b61915bd --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom.sha1 @@ -0,0 +1 @@ +8113ec9ba85eb589648929ae5bbd68b1023996c7 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/_remote.repositories new file mode 100644 index 00000000..9cf83320 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:18 CST 2021 +plexus-utils-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom new file mode 100644 index 00000000..4bc52d37 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom @@ -0,0 +1,151 @@ + + + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 4.0 + + + plexus-utils + 3.1.1 + + Plexus Common Utilities + A collection of various utility classes to ease working with strings, files, command lines, XML and + more. + + + + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + http://github.com/codehaus-plexus/plexus-utils + plexus-utils-3.1.1 + + + github + http://github.com/codehaus-plexus/plexus-utils/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + 6 + + + + + org.apache.maven.shared + maven-plugin-testing-harness + 1.1 + test + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.0 + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + JAVA_HOME + ${JAVA_HOME} + + + M2_HOME + ${M2_HOME} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.1.1 + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + + + + + + eclipse-only-jdk-version + + + m2e.version + + + + 7 + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom.sha1 new file mode 100644 index 00000000..75eb349c --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom.sha1 @@ -0,0 +1 @@ +9444be6c0e7197eccde066fc5ed8aaba968e9a16 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/_remote.repositories new file mode 100644 index 00000000..3d65c37a --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +plexus-utils-3.2.0.pom>repo.jenkins-ci.org= +plexus-utils-3.2.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar new file mode 100644 index 00000000..0951eb68 Binary files /dev/null and b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar.sha1 new file mode 100644 index 00000000..af54e818 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar.sha1 @@ -0,0 +1 @@ +d69e11d69dfce0c964587ab97b559187b3c27a6f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom new file mode 100644 index 00000000..a70ae07b --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom @@ -0,0 +1,148 @@ + + + + + + 4.0.0 + + + org.codehaus.plexus + plexus + 5.1 + + + plexus-utils + 3.2.0 + + Plexus Common Utilities + A collection of various utility classes to ease working with strings, files, command lines, XML and + more. + + + + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + scm:git:git@github.com:codehaus-plexus/plexus-utils.git + http://github.com/codehaus-plexus/plexus-utils + plexus-utils-3.2.0 + + + github + http://github.com/codehaus-plexus/plexus-utils/issues + + + + github:gh-pages + ${project.scm.developerConnection} + + + + + + org.apache.maven.shared + maven-plugin-testing-harness + 1.1 + test + + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.0 + + + + + + org.apache.maven.plugins + maven-scm-publish-plugin + + ${project.reporting.outputDirectory} + + + + scm-publish + site-deploy + + publish-scm + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + true + + org/codehaus/plexus/util/FileBasedTestCase.java + **/Test*.java + + + + JAVA_HOME + ${JAVA_HOME} + + + M2_HOME + ${M2_HOME} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-java + + enforce + + + + + 1.7.0 + + + + + + + + + + + + + + eclipse-only-jdk-version + + + m2e.version + + + + 7 + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom.sha1 new file mode 100644 index 00000000..5df5d215 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom.sha1 @@ -0,0 +1 @@ +1a232f7612ac1d56eadf248d059d58461b1515fe \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/_remote.repositories new file mode 100644 index 00000000..a738db19 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:34 CST 2021 +plexus-3.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom b/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom new file mode 100644 index 00000000..971a01cc --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom @@ -0,0 +1,675 @@ + + + + + + 4.0.0 + + + org.sonatype.spice + spice-parent + 17 + + + org.codehaus.plexus + plexus + pom + 3.3.2 + + Plexus + The Plexus project provides a full software stack for creating and executing software projects. + http://plexus.codehaus.org/ + 2001 + + Codehaus + http://www.codehaus.org/ + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + jvanzyl + Jason van Zyl + jason@maven.org + + Developer + Release Manager + + + + kaz + Pete Kazmier + + + + Developer + + + + jtaylor + James Taylor + james@jamestaylor.org + + + Developer + + + + dandiep + Dan Diephouse + dan@envoisolutions.com + Envoi solutions + + Developer + + + + kasper + Kasper Nielsen + apache@kav.dk + + + Developer + + + + bwalding + Ben Walding + bwalding@codehaus.org + Walding Consulting Services + + Developer + + + + mhw + Mark Wilkinson + mhw@kremvax.net + + Developer + + + + michal + Michal Maczka + mmaczka@interia.pl + + Developer + + + + evenisse + Emmanuel Venisse + evenisse@codehaus.org + + Developer + + + + Trygve Laugstøl + trygvis + trygvis@codehaus.org + + Developer + + + + Kenney Westerhof + kenney + kenney@codehaus.org + + Developer + + + + Carlos Sanchez + carlos + carlos@codehaus.org + + Developer + + + + Brett Porter + brett + brett@codehaus.org + + Developer + + + + John Casey + jdcasey + jdcasey@codehaus.org + + Developer + + + + Andrew Williams + handyande + andy@handyande.co.uk + + Developer + + + + Rahul Thakur + rahul + rahul.thakur.xdev@gmail.com + + Developer + + + + Joakim Erdfelt + joakime + joakim@erdfelt.com + + Developer + + + + Olivier Lamy + olamy + olamy@codehaus.org + + Developer + + + + Hervé Boutemy + hboutemy + hboutemy@codehaus.org + + Developer + + + + Oleg Gusakov + oleg + olegy@codehaus.org + + Developer + + + + Vincent Siveton + vsiveton + vsiveton@codehaus.org + + Developer + + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + + Developer + + + + + + + + Plexus User List + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://archive.plexus.codehaus.org/user + user@plexus.codehaus.org + + + Plexus Developer List + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://archive.plexus.codehaus.org/dev + dev@plexus.codehaus.org + + + Plexus Announce List + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://archive.plexus.codehaus.org/announce + + + Plexus Commit List + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://archive.plexus.codehaus.org/scm + + + + + scm:git:git@github.com:sonatype/plexus-pom.git + scm:git:git@github.com:sonatype/plexus-pom.git + http://github.com/sonatype/plexus-pom + plexus-3.3.2 + + + JIRA + http://jira.codehaus.org/browse/PLX + + + + + mail + +
dev@plexus.codehaus.org
+
+
+
+
+ + + plexus-releases + Plexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + plexus-snapshots + Plexus Snapshot Repository + ${plexusDistMgmtSnapshotsUrl} + + + codehaus.org + dav:https://dav.codehaus.org/plexus + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/plexus-snapshots + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.5.6 + compile + + + + + + + junit + junit + 4.11 + test + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + org.apache.maven.plugins + maven-compiler-plugin + 2.5.1 + + 1.5 + 1.5 + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.3 + + + maven-release-plugin + 2.5.1 + + deploy + false + -Pplexus-release + + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 2.7 + + + org.slf4j + slf4j-api + 1.7.2 + + + org.slf4j + slf4j-simple + 1.7.2 + + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.17 + + + org.codehaus.plexus + plexus-component-metadata + 1.5.6 + + + process-classes + + generate-metadata + + + + process-test-classes + + generate-test-metadata + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + + + index + summary + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.6 + + + + index + summary + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.17 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.13 + + config/maven_checks.xml + https://raw.github.com/sonatype/plexus-pom/master/src/main/resources/config/plexus-header.txt + + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.2 + + 1.5 + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.5.2 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.4 + + + default + + jxr + test-jxr + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.1 + + true + + http://junit.sourceforge.net/javadoc/ + + + + + default + + javadoc + test-javadoc + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.6 + + + + + + plexus-release + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + maven-3 + + + + ${basedir} + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + +
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom.sha1 new file mode 100644 index 00000000..459cb9d6 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom.sha1 @@ -0,0 +1 @@ +7ba5dd42cae4e80cf4d34ecff014dbf34df26b59 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/4.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/4.0/_remote.repositories new file mode 100644 index 00000000..f8a81352 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/4.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:02 CST 2021 +plexus-4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom b/artifacts/m2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom new file mode 100644 index 00000000..8a6168ec --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom @@ -0,0 +1,652 @@ + + + + + + 4.0.0 + + + org.sonatype.forge + forge-parent + 10 + + + + org.codehaus.plexus + plexus + pom + 4.0 + + Plexus + The Plexus project provides a full software stack for creating and executing software projects. + http://codehaus-plexus.github.io/ + 2001 + + Codehaus Plexus + http://codehaus-plexus.github.io/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + jvanzyl + Jason van Zyl + jason@maven.org + + Developer + Release Manager + + + + kaz + Pete Kazmier + + + + Developer + + + + jtaylor + James Taylor + james@jamestaylor.org + + + Developer + + + + dandiep + Dan Diephouse + dan@envoisolutions.com + Envoi solutions + + Developer + + + + kasper + Kasper Nielsen + apache@kav.dk + + + Developer + + + + bwalding + Ben Walding + bwalding@codehaus.org + Walding Consulting Services + + Developer + + + + mhw + Mark Wilkinson + mhw@kremvax.net + + Developer + + + + michal + Michal Maczka + mmaczka@interia.pl + + Developer + + + + evenisse + Emmanuel Venisse + evenisse@codehaus.org + + Developer + + + + Trygve Laugstøl + trygvis + trygvis@codehaus.org + + Developer + + + + Kenney Westerhof + kenney + kenney@codehaus.org + + Developer + + + + Carlos Sanchez + carlos + carlos@codehaus.org + + Developer + + + + Brett Porter + brett + brett@codehaus.org + + Developer + + + + John Casey + jdcasey + jdcasey@codehaus.org + + Developer + + + + Andrew Williams + handyande + andy@handyande.co.uk + + Developer + + + + Rahul Thakur + rahul + rahul.thakur.xdev@gmail.com + + Developer + + + + Joakim Erdfelt + joakime + joakim@erdfelt.com + + Developer + + + + Olivier Lamy + olamy + olamy@codehaus.org + + Developer + + + + Hervé Boutemy + hboutemy + hboutemy@apache.org + + Developer + + + + Oleg Gusakov + oleg + olegy@codehaus.org + + Developer + + + + Vincent Siveton + vsiveton + vsiveton@codehaus.org + + Developer + + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + + Developer + + + + Andreas Gudian + agudian + agudian@apache.org + + Developer + + + + + + + Plexus User List + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://archive.plexus.codehaus.org/user + user@plexus.codehaus.org + + + Plexus Developer List + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://archive.plexus.codehaus.org/dev + dev@plexus.codehaus.org + + + Plexus Announce List + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://archive.plexus.codehaus.org/announce + + + Plexus Commit List + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://archive.plexus.codehaus.org/scm + + + + + scm:git:git@github.com:codehaus-plexus/plexus-pom.git + scm:git:git@github.com:codehaus-plexus/plexus-pom.git + http://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ + plexus-4.0 + + + github + http://github.com/codehaus-plexus/plexus-pom/issues + + + + plexus-releases + Plexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + plexus-snapshots + Plexus Snapshot Repository + ${plexusDistMgmtSnapshotsUrl} + + + github:gh-pages + scm:git:git@github.com:codehaus-plexus + + + + + 3.0 + + + + 5 + 1.${javaVersion} + 1.${javaVersion} + UTF-8 + https://oss.sonatype.org/content/repositories/plexus-snapshots + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.6 + compile + + + + + + + junit + junit + 4.12 + test + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 2.6.1 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.3 + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-jar-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.1 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.4 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8.1 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + deploy + false + -Pplexus-release + + + + org.apache.maven.plugins + maven-resources-plugin + 2.7 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + ${project.scm.developerConnection} + gh-pages + + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + true + + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.18.1 + + + org.codehaus.plexus + plexus-component-metadata + 1.6 + + + process-classes + + generate-metadata + + + + process-test-classes + + generate-test-metadata + + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8.1 + + + + index + summary + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.18.1 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.13 + + config/maven_checks.xml + https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt + + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.2 + + ${maven.compiler.source} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.2 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + default + + jxr + test-jxr + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + + http://junit.sourceforge.net/javadoc/ + + + + + default + + javadoc + test-javadoc + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.6 + + + + + + plexus-release + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + maven-3 + + + + ${basedir} + + + + + + org.apache.maven.plugins + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 new file mode 100644 index 00000000..7d56b79c --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom.sha1 @@ -0,0 +1 @@ +cdbb31ee91973d16e8f8b0bda51ed4211e7a9f57 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/5.0/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/5.0/_remote.repositories new file mode 100644 index 00000000..ad7c7afa --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/5.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:28 CST 2021 +plexus-5.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom b/artifacts/m2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom new file mode 100644 index 00000000..4b827d17 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom @@ -0,0 +1,666 @@ + + + + + + 4.0.0 + + org.codehaus.plexus + plexus + pom + 5.0 + + Plexus + The Plexus project provides a full software stack for creating and executing software projects. + http://codehaus-plexus.github.io/ + 2001 + + Codehaus Plexus + http://codehaus-plexus.github.io/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + jvanzyl + Jason van Zyl + jason@maven.org + + Developer + Release Manager + + + + kaz + Pete Kazmier + + + + Developer + + + + jtaylor + James Taylor + james@jamestaylor.org + + + Developer + + + + dandiep + Dan Diephouse + dan@envoisolutions.com + Envoi solutions + + Developer + + + + kasper + Kasper Nielsen + apache@kav.dk + + + Developer + + + + bwalding + Ben Walding + bwalding@codehaus.org + Walding Consulting Services + + Developer + + + + mhw + Mark Wilkinson + mhw@kremvax.net + + Developer + + + + michal + Michal Maczka + mmaczka@interia.pl + + Developer + + + + evenisse + Emmanuel Venisse + evenisse@codehaus.org + + Developer + + + + Trygve Laugstøl + trygvis + trygvis@codehaus.org + + Developer + + + + Kenney Westerhof + kenney + kenney@codehaus.org + + Developer + + + + Carlos Sanchez + carlos + carlos@codehaus.org + + Developer + + + + Brett Porter + brett + brett@codehaus.org + + Developer + + + + John Casey + jdcasey + jdcasey@codehaus.org + + Developer + + + + Andrew Williams + handyande + andy@handyande.co.uk + + Developer + + + + Rahul Thakur + rahul + rahul.thakur.xdev@gmail.com + + Developer + + + + Joakim Erdfelt + joakime + joakim@erdfelt.com + + Developer + + + + Olivier Lamy + olamy + olamy@codehaus.org + + Developer + + + + Hervé Boutemy + hboutemy + hboutemy@apache.org + + Developer + + + + Oleg Gusakov + oleg + olegy@codehaus.org + + Developer + + + + Vincent Siveton + vsiveton + vsiveton@codehaus.org + + Developer + + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + + Developer + + + + Andreas Gudian + agudian + agudian@apache.org + + Developer + + + + Karl Heinz Marbaise + khmarbaise + khmarbaise@apache.org + + Developer + + + + Michael Osipov + michael-o + 1983-01-06@gmx.net + + Developer + + + + + + + Plexus User List + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://archive.plexus.codehaus.org/user + user@plexus.codehaus.org + + + Plexus Developer List + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://archive.plexus.codehaus.org/dev + dev@plexus.codehaus.org + + + Plexus Announce List + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://archive.plexus.codehaus.org/announce + + + Plexus Commit List + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://archive.plexus.codehaus.org/scm + + + + + scm:git:git@github.com:codehaus-plexus/plexus-pom.git + scm:git:git@github.com:codehaus-plexus/plexus-pom.git + http://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ + plexus-5.0 + + + github + http://github.com/codehaus-plexus/plexus-pom/issues + + + + plexus-releases + Plexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + plexus-snapshots + Plexus Snapshot Repository + ${plexusDistMgmtSnapshotsUrl} + + + github:gh-pages + scm:git:git@github.com:codehaus-plexus + + + + + 6 + 1.${javaVersion} + 1.${javaVersion} + UTF-8 + https://oss.sonatype.org/content/repositories/plexus-snapshots + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.6 + compile + + + + + + + junit + junit + 4.12 + test + + + + + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + ${maven.compiler.source} + ${maven.compiler.target} + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5 + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + deploy + forked-path + false + -Pplexus-release + + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 1.1 + + + ${project.scm.developerConnection} + gh-pages + + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + true + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.20 + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + process-classes + + generate-metadata + + + + process-test-classes + + generate-test-metadata + + + + + + + + + maven-enforcer-plugin + 1.4.1 + + + enforce-maven + + enforce + + + + + 3.0.5 + This project requires at least Maven 3.0.5 + + + + + + + + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + + index + summary + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.20 + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.17 + + config/maven_checks.xml + https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt + + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.source} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + default + + jxr + test-jxr + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + + http://junit.sourceforge.net/javadoc/ + + + + + default + + javadoc + test-javadoc + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + + + + plexus-release + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + ${gpg.passphrase} + + + + sign-artifacts + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom.sha1 new file mode 100644 index 00000000..964de27a --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom.sha1 @@ -0,0 +1 @@ +7733f81581a7b549cef034c9117d4d8c29ea07d6 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/5.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/5.1/_remote.repositories new file mode 100644 index 00000000..ce26c23f --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/5.1/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:18 CST 2021 +plexus-5.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom b/artifacts/m2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom new file mode 100644 index 00000000..0434f109 --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom @@ -0,0 +1,700 @@ + + + + + + 4.0.0 + + org.codehaus.plexus + plexus + pom + 5.1 + + Plexus + The Plexus project provides a full software stack for creating and executing software projects. + http://codehaus-plexus.github.io/ + 2001 + + Codehaus Plexus + http://codehaus-plexus.github.io/ + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + jvanzyl + Jason van Zyl + jason@maven.org + + Developer + Release Manager + + + + kaz + Pete Kazmier + + + + Developer + + + + jtaylor + James Taylor + james@jamestaylor.org + + + Developer + + + + dandiep + Dan Diephouse + dan@envoisolutions.com + Envoi solutions + + Developer + + + + kasper + Kasper Nielsen + apache@kav.dk + + + Developer + + + + bwalding + Ben Walding + bwalding@codehaus.org + Walding Consulting Services + + Developer + + + + mhw + Mark Wilkinson + mhw@kremvax.net + + Developer + + + + michal + Michal Maczka + mmaczka@interia.pl + + Developer + + + + evenisse + Emmanuel Venisse + evenisse@codehaus.org + + Developer + + + + Trygve Laugstøl + trygvis + trygvis@codehaus.org + + Developer + + + + Kenney Westerhof + kenney + kenney@codehaus.org + + Developer + + + + Carlos Sanchez + carlos + carlos@codehaus.org + + Developer + + + + Brett Porter + brett + brett@codehaus.org + + Developer + + + + John Casey + jdcasey + jdcasey@codehaus.org + + Developer + + + + Andrew Williams + handyande + andy@handyande.co.uk + + Developer + + + + Rahul Thakur + rahul + rahul.thakur.xdev@gmail.com + + Developer + + + + Joakim Erdfelt + joakime + joakim@erdfelt.com + + Developer + + + + Olivier Lamy + olamy + olamy@codehaus.org + + Developer + + + + Hervé Boutemy + hboutemy + hboutemy@apache.org + + Developer + + + + Oleg Gusakov + oleg + olegy@codehaus.org + + Developer + + + + Vincent Siveton + vsiveton + vsiveton@codehaus.org + + Developer + + + + Kristian Rosenvold + krosenvold + krosenvold@apache.org + + Developer + + + + Andreas Gudian + agudian + agudian@apache.org + + Developer + + + + Karl Heinz Marbaise + khmarbaise + khmarbaise@apache.org + + Developer + + + + Michael Osipov + michael-o + 1983-01-06@gmx.net + + Developer + + + + + + + Plexus User List + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/user%40plexus.codehaus.org + http://archive.plexus.codehaus.org/user + user@plexus.codehaus.org + + + Plexus Developer List + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org + http://archive.plexus.codehaus.org/dev + dev@plexus.codehaus.org + + + Plexus Announce List + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/announce%40plexus.codehaus.org + http://archive.plexus.codehaus.org/announce + + + Plexus Commit List + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://xircles.codehaus.org/manage_email/scm%40plexus.codehaus.org + http://archive.plexus.codehaus.org/scm + + + + + scm:git:git@github.com:codehaus-plexus/plexus-pom.git + scm:git:git@github.com:codehaus-plexus/plexus-pom.git + http://github.com/codehaus-plexus/plexus-pom/tree/${project.scm.tag}/ + plexus-5.1 + + + github + http://github.com/codehaus-plexus/plexus-pom/issues + + + + plexus-releases + Plexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + plexus-snapshots + Plexus Snapshot Repository + ${plexusDistMgmtSnapshotsUrl} + + + github:gh-pages + scm:git:git@github.com:codehaus-plexus + + + + + 6 + 1.${javaVersion} + 1.${javaVersion} + UTF-8 + https://oss.sonatype.org/content/repositories/plexus-snapshots + + + + + + org.codehaus.plexus + plexus-component-annotations + 1.6 + compile + + + + + + + junit + junit + 4.12 + test + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 3.0.0 + + config/maven_checks.xml + https://raw.github.com/codehaus-plexus/plexus-pom/master/src/main/resources/config/plexus-header.txt + + + + + org.apache.maven.shared + maven-shared-resources + 2 + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.0.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.apache.maven.plugins + maven-plugin-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.8 + + ${maven.compiler.source} + + rulesets/maven.xml + + + ${project.build.directory}/generated-sources/modello + ${project.build.directory}/generated-sources/plugin + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.9 + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + deploy + forked-path + false + -Pplexus-release + + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.2 + + + org.apache.maven.plugins + maven-scm-publish-plugin + 3.0.0 + + + ${project.scm.developerConnection} + gh-pages + + + + org.apache.maven.plugins + maven-site-plugin + 3.7.1 + + true + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + org.apache.maven.plugins + maven-surefire-plugin + 2.20 + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.20 + + + org.codehaus.mojo + cobertura-maven-plugin + 2.7 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + org.codehaus.plexus + plexus-component-metadata + 1.7.1 + + + process-classes + + generate-metadata + + + + process-test-classes + + generate-test-metadata + + + + + + + + + maven-enforcer-plugin + + + enforce-maven + + enforce + + + + + 3.0.5 + This project requires at least Maven 3.0.5 + + + + + + + + maven-site-plugin + + + attach-descriptor + + attach-descriptor + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + index + summary + dependency-info + modules + license + project-team + scm + issue-tracking + mailing-list + dependency-management + dependencies + dependency-convergence + cim + plugin-management + plugins + distribution-management + + + + + + + + + + reporting + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + default + + checkstyle + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + org.codehaus.mojo + findbugs-maven-plugin + + + org.codehaus.mojo + taglist-maven-plugin + + + org.apache.maven.plugins + maven-jxr-plugin + + + default + + jxr + test-jxr + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + true + + http://junit.sourceforge.net/javadoc/ + + + + + default + + javadoc + test-javadoc + + + + + + org.codehaus.mojo + cobertura-maven-plugin + + + + + + plexus-release + + + + org.apache.maven.plugins + maven-gpg-plugin + + ${gpg.passphrase} + + + + sign-artifacts + + sign + + + + + + org.apache.maven.plugins + maven-source-plugin + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + + + + diff --git a/artifacts/m2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom.sha1 new file mode 100644 index 00000000..f42e0ecd --- /dev/null +++ b/artifacts/m2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom.sha1 @@ -0,0 +1 @@ +2fca82e2eb5172f6a2909bea7accc733581a8c71 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/_remote.repositories b/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/_remote.repositories new file mode 100644 index 00000000..872b4c62 --- /dev/null +++ b/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:16 CST 2021 +jetty-bom-9.4.24.v20191120.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/jetty-bom-9.4.24.v20191120.pom b/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/jetty-bom-9.4.24.v20191120.pom new file mode 100644 index 00000000..7947e7c7 --- /dev/null +++ b/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/jetty-bom-9.4.24.v20191120.pom @@ -0,0 +1,473 @@ + + + 4.0.0 + org.eclipse.jetty + jetty-bom + 9.4.24.v20191120 + pom + Jetty :: Bom + Jetty BOM artifact + http://www.eclipse.org/jetty + 1995 + + Webtide + https://webtide.com + + + + Apache Software License - Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + + + Eclipse Public License - Version 1.0 + http://www.eclipse.org/org/documents/epl-v10.php + + + + + gregw + Greg Wilkins + gregw@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + janb + Jan Bartel + janb@webtide.com + Webtide, LLC + https://webtide.com + 10 + + + jesse + Jesse McConnell + jesse.mcconnell@gmail.com + Webtide, LLC + https://webtide.com + -6 + + + joakime + Joakim Erdfelt + joakim.erdfelt@gmail.com + Webtide, LLC + https://webtide.com + -7 + + + sbordet + Simone Bordet + simone.bordet@gmail.com + Webtide, LLC + https://webtide.com + 1 + + + djencks + David Jencks + david.a.jencks@gmail.com + IBM + -8 + + + olamy + Olivier Lamy + oliver.lamy@gmail.com + Webtide, LLC + https://webtide.com + Australia/Brisbane + + + + + Jetty Developer Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mailman/listinfo/jetty-dev + https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html + + + Jetty Commit Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mailman/listinfo/jetty-commit + https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html + + + Jetty Users Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mailman/listinfo/jetty-users + https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html + + + Jetty Announce Mailing List + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mailman/listinfo/jetty-announce + https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html + + + + scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom + scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom + https://github.com/eclipse/jetty.project/jetty-bom + + + github + https://github.com/eclipse/jetty.project/issues + + + + oss.sonatype.org + Jetty Staging Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + oss.sonatype.org + Jetty Snapshot Repository + https://oss.sonatype.org/content/repositories/jetty-snapshots/ + + + jetty.eclipse.website + scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.24.v20191120/jetty-bom/ + + + + + + org.eclipse.jetty + apache-jsp + 9.4.24.v20191120 + + + org.eclipse.jetty + apache-jstl + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-annotations + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-ant + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-client + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-continuation + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-deploy + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-distribution + 9.4.24.v20191120 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.24.v20191120 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.24.v20191120 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.24.v20191120 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-home + 9.4.24.v20191120 + zip + + + org.eclipse.jetty + jetty-home + 9.4.24.v20191120 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.24.v20191120 + + + org.eclipse.jetty.http2 + http2-client + 9.4.24.v20191120 + + + org.eclipse.jetty.http2 + http2-common + 9.4.24.v20191120 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.24.v20191120 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.24.v20191120 + + + org.eclipse.jetty.http2 + http2-server + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-http-spi + 9.4.24.v20191120 + + + org.eclipse.jetty + infinispan-common + 9.4.24.v20191120 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.24.v20191120 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-io + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-jaas + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-jaspi + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-jmx + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-jndi + 9.4.24.v20191120 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-nosql + 9.4.24.v20191120 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.24.v20191120 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.24.v20191120 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.24.v20191120 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-plus + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-proxy + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-quickstart + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-rewrite + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-security + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-openid + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-server + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-servlet + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-servlets + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-spring + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-util + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-webapp + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.24.v20191120 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.24.v20191120 + + + org.eclipse.jetty + jetty-xml + 9.4.24.v20191120 + + + + diff --git a/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/jetty-bom-9.4.24.v20191120.pom.sha1 b/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/jetty-bom-9.4.24.v20191120.pom.sha1 new file mode 100644 index 00000000..ba0e9e77 --- /dev/null +++ b/artifacts/m2/org/eclipse/jetty/jetty-bom/9.4.24.v20191120/jetty-bom-9.4.24.v20191120.pom.sha1 @@ -0,0 +1 @@ +6362b2c92d59e65071708b17f61db92f9aada097 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/_remote.repositories b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/_remote.repositories new file mode 100644 index 00000000..362b84a7 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +org.eclipse.sisu.inject-0.3.2.jar>repo.jenkins-ci.org= +org.eclipse.sisu.inject-0.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar new file mode 100644 index 00000000..f9251b1a Binary files /dev/null and b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar differ diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar.sha1 new file mode 100644 index 00000000..d1180f83 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar.sha1 @@ -0,0 +1 @@ +59044b92ec27cc6fda7a2d24b2cd6cec23f31d5b \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom new file mode 100644 index 00000000..07e3fb96 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom @@ -0,0 +1,87 @@ + + + + + + 4.0.0 + + + org.eclipse.sisu + sisu-inject + 0.3.2 + + + org.eclipse.sisu.inject + eclipse-plugin + + + + + + com.google.inject + guice + 3.0 + provided + + + + + src + + + org.codehaus.mojo + build-helper-maven-plugin + 1.9.1 + + + attach-build-target + generate-resources + + attach-artifact + + + + + build.target + build + target + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + org.eclipse.tycho + target-platform-configuration + + + org.eclipse.tycho + tycho-maven-plugin + true + + + org.eclipse.tycho + tycho-source-plugin + + + + + diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom.sha1 new file mode 100644 index 00000000..189060a7 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom.sha1 @@ -0,0 +1 @@ +41a7f34260adf84181f7bfaf512e5c0ddde5f417 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/_remote.repositories b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/_remote.repositories new file mode 100644 index 00000000..cd2a8579 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +org.eclipse.sisu.plexus-0.3.2.jar>repo.jenkins-ci.org= +org.eclipse.sisu.plexus-0.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar new file mode 100644 index 00000000..e82b9bca Binary files /dev/null and b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar differ diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar.sha1 new file mode 100644 index 00000000..afac4a3b --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar.sha1 @@ -0,0 +1 @@ +cd84cb43788de23847eec2999070f64381bdb495 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom new file mode 100644 index 00000000..fb52e460 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom @@ -0,0 +1,138 @@ + + + + + + 4.0.0 + + + org.eclipse.sisu + sisu-plexus + 0.3.2 + + + org.eclipse.sisu.plexus + eclipse-plugin + + + + + + com.google.inject + guice + 3.0 + provided + + + + javax.enterprise + cdi-api + 1.0 + + + javax.el + el-api + + + org.jboss.ejb3 + jboss-ejb3-api + + + org.jboss.interceptor + jboss-interceptor-api + + + + + org.eclipse.sisu + org.eclipse.sisu.inject + ${project.version} + + + + org.codehaus.plexus + plexus-component-annotations + 1.5.5 + + + org.codehaus.plexus + plexus-classworlds + 2.5.2 + + + org.codehaus.plexus + plexus-utils + 3.0.17 + + + junit + junit + 4.11 + true + + + + + src + + + org.codehaus.mojo + build-helper-maven-plugin + 1.9.1 + + + attach-build-target + generate-resources + + attach-artifact + + + + + build.target + build + target + + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + org.eclipse.tycho + target-platform-configuration + + + org.eclipse.tycho + tycho-maven-plugin + true + + + org.eclipse.tycho + tycho-source-plugin + + + + + diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom.sha1 new file mode 100644 index 00000000..5933a09c --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom.sha1 @@ -0,0 +1 @@ +2b368076ccdce46590f97214bde1aa0f9413f282 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/_remote.repositories b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/_remote.repositories new file mode 100644 index 00000000..d3d41fc8 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:37 CST 2021 +sisu-inject-0.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom new file mode 100644 index 00000000..c87dba59 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom @@ -0,0 +1,396 @@ + + + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.eclipse.sisu + sisu-inject + 0.3.2 + pom + + Sisu Inject + JSR330-based container; supports classpath scanning, auto-binding, and dynamic auto-wiring + http://www.eclipse.org/sisu/ + 2010 + + The Eclipse Foundation + http://www.eclipse.org/ + + + + Eclipse Public License, Version 1.0 + http://www.eclipse.org/legal/epl-v10.html + repo + + + + + + Sisu Developers List + sisu-dev-subscribe@eclipse.org + sisu-dev-unsubscribe@eclipse.org + sisu-dev@eclipse.org + http://dev.eclipse.org/mhonarc/lists/sisu-dev/ + + + Sisu Users List + sisu-users-subscribe@eclipse.org + sisu-users-unsubscribe@eclipse.org + sisu-users@eclipse.org + http://dev.eclipse.org/mhonarc/lists/sisu-users/ + + + + + 3.0.4 + + + + org.eclipse.sisu.inject + org.eclipse.sisu.inject.extender + org.eclipse.sisu.inject.tests + org.eclipse.sisu.inject.site + + + + scm:git:git://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.inject.git + scm:git:ssh://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.inject.git + http://git.eclipse.org/c/sisu/org.eclipse.sisu.inject.git/tree/ + + + bugzilla + https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Sisu&component=Inject&format=guided + + + Hudson + https://hudson.eclipse.org/sisu/job/sisu-inject-nightly/ + + + + 1.6 + 1.6 + scm:git:http://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.inject.git + 0.22.0 + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.11 + + + org.codehaus.mojo.signature + java16 + 1.1 + + + + + check-java6 + package + + check + + + + + + maven-enforcer-plugin + 1.3.1 + + + + 1.6 + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-3 + + + + + org.eclipse.tycho + target-platform-configuration + ${tycho-version} + + JavaSE-1.6 + + + org.eclipse.sisu + org.eclipse.sisu.inject + ${project.version} + build + + + + + win32 + win32 + x86 + + + linux + gtk + x86_64 + + + macosx + cocoa + x86_64 + + + + + + org.eclipse.tycho + tycho-compiler-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-publisher-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-repository-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho-version} + + + false + + + true + + + + + org.eclipse.tycho.extras + tycho-sourceref-jgit + ${tycho-version} + + + + + org.eclipse.tycho + tycho-source-plugin + ${tycho-version} + + + plugin-source + + plugin-source + + + + + + maven-clean-plugin + 2.6 + + + maven-resources-plugin + 2.7 + + + maven-compiler-plugin + 3.1 + + + org.jacoco + jacoco-maven-plugin + 0.7.2.201409121644 + + + maven-surefire-plugin + 2.17 + + + maven-jar-plugin + 2.5 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.4 + + + maven-release-plugin + 2.5.1 + + true + + + + maven-javadoc-plugin + 2.10.1 + + + com.google.doclava + doclava + 1.0.6 + + com.google.doclava.Doclava + + ${sun.boot.class.path}:${basedir}/../doclava/api/nullable.zip + *.internal,*.asm + + -quiet + -federate JDK http://docs.oracle.com/javase/6/docs/api/index.html? + -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml + -federate Guice http://google-guice.googlecode.com/git-history/3.0/javadoc + -federate OSGi http://www.osgi.org/javadoc/r4v42/index.html? + -federationxml OSGi ${basedir}/../doclava/api/osgi.xml + -hdf project.name "${project.name}" + -overview ${basedir}/overview.html + -templatedir ${basedir}/../doclava + -d ${project.build.directory}/apidocs + + false + + -J-Xmx1024m + + + + maven-site-plugin + 3.4 + + + + + + + + m2e + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + [1.0,) + enforce + + + + + + org.codehaus.mojo + build-helper-maven-plugin + [1.0,) + attach-artifact + + + + + + org.jacoco + jacoco-maven-plugin + [0.6,) + prepare-agent + + + + + + + + + + + + + sonatype-oss-release + + + + maven-gpg-plugin + 1.5 + + ${gpg.passphrase} + true + + + + maven-javadoc-plugin + 2.10.1 + + + true + org.sonatype.plugins + nexus-staging-maven-plugin + + https://oss.sonatype.org/ + sonatype-nexus-staging + + + + + + + diff --git a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom.sha1 b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom.sha1 new file mode 100644 index 00000000..a44a538b --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom.sha1 @@ -0,0 +1 @@ +1cfcf623633b3f1d270f38ada2805ec81aec9130 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/_remote.repositories b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/_remote.repositories new file mode 100644 index 00000000..e78fcb6b --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:36 CST 2021 +sisu-plexus-0.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom new file mode 100644 index 00000000..4154c9b8 --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom @@ -0,0 +1,384 @@ + + + + + + 4.0.0 + + + org.sonatype.oss + oss-parent + 9 + + + org.eclipse.sisu + sisu-plexus + 0.3.2 + pom + + Sisu Plexus + Plexus-JSR330 adapter; adds Plexus support to the Sisu-Inject container + http://www.eclipse.org/sisu/ + 2010 + + The Eclipse Foundation + http://www.eclipse.org/ + + + + Eclipse Public License, Version 1.0 + http://www.eclipse.org/legal/epl-v10.html + repo + + + + + + Sisu Developers List + sisu-dev-subscribe@eclipse.org + sisu-dev-unsubscribe@eclipse.org + sisu-dev@eclipse.org + http://dev.eclipse.org/mhonarc/lists/sisu-dev/ + + + Sisu Users List + sisu-users-subscribe@eclipse.org + sisu-users-unsubscribe@eclipse.org + sisu-users@eclipse.org + http://dev.eclipse.org/mhonarc/lists/sisu-users/ + + + + + 3.0.4 + + + + org.eclipse.sisu.plexus + org.eclipse.sisu.plexus.extender + org.eclipse.sisu.plexus.tests + org.eclipse.sisu.plexus.site + + + + scm:git:git://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.plexus.git + scm:git:ssh://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.plexus.git + http://git.eclipse.org/c/sisu/org.eclipse.sisu.plexus.git/tree/ + + + bugzilla + https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Sisu&component=Plexus&format=guided + + + Hudson + https://hudson.eclipse.org/sisu/job/sisu-plexus-nightly/ + + + + 1.6 + 1.6 + scm:git:http://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.plexus.git + 0.22.0 + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.11 + + + org.codehaus.mojo.signature + java16 + 1.1 + + + + + check-java6 + package + + check + + + + + + maven-enforcer-plugin + 1.3.1 + + + + 1.6 + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-3 + + + + + org.eclipse.tycho + target-platform-configuration + ${tycho-version} + + JavaSE-1.6 + + + org.eclipse.sisu + org.eclipse.sisu.plexus + ${project.version} + build + + + + + win32 + win32 + x86 + + + linux + gtk + x86_64 + + + macosx + cocoa + x86_64 + + + + + + org.eclipse.tycho + tycho-compiler-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-publisher-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-p2-repository-plugin + ${tycho-version} + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho-version} + + + false + + + true + + + + + org.eclipse.tycho.extras + tycho-sourceref-jgit + ${tycho-version} + + + + + org.eclipse.tycho + tycho-source-plugin + ${tycho-version} + + + plugin-source + + plugin-source + + + + + + maven-clean-plugin + 2.6 + + + maven-resources-plugin + 2.7 + + + maven-compiler-plugin + 3.1 + + + maven-dependency-plugin + 2.9 + + + maven-surefire-plugin + 2.17 + + + maven-jar-plugin + 2.5 + + + maven-install-plugin + 2.5.2 + + + maven-deploy-plugin + 2.8.2 + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.4 + + + maven-release-plugin + 2.5.1 + + true + + + + maven-javadoc-plugin + 2.10.1 + + + com.google.doclava + doclava + 1.0.6 + + com.google.doclava.Doclava + + ${sun.boot.class.path}:${basedir}/../doclava/api/nullable.zip + *.internal,org.codehaus.* + + -quiet + -federate JDK http://docs.oracle.com/javase/6/docs/api/index.html? + -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml + -federate Guice http://google-guice.googlecode.com/git-history/3.0/javadoc + -hdf project.name "${project.name}" + -overview ${basedir}/overview.html + -templatedir ${basedir}/../doclava + -d ${project.build.directory}/apidocs + + false + + -J-Xmx1024m + + + + maven-site-plugin + 3.4 + + + + + + + + m2e + + + m2e.version + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + [1.0,) + enforce + + + + + + org.codehaus.mojo + build-helper-maven-plugin + [1.0,) + attach-artifact + + + + + + + + + + + + + sonatype-oss-release + + + + maven-gpg-plugin + 1.5 + + ${gpg.passphrase} + true + + + + maven-javadoc-plugin + 2.10.1 + + + true + org.sonatype.plugins + nexus-staging-maven-plugin + + https://oss.sonatype.org/ + sonatype-nexus-staging + + + + + + + diff --git a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom.sha1 b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom.sha1 new file mode 100644 index 00000000..800c8a6f --- /dev/null +++ b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom.sha1 @@ -0,0 +1 @@ +cfcccb1005e63760bb7dac857fcfe2bbe9a55414 \ No newline at end of file diff --git a/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/_remote.repositories b/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/_remote.repositories new file mode 100644 index 00000000..c2e11a14 --- /dev/null +++ b/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:17 CST 2021 +jersey-bom-2.27.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom b/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom new file mode 100644 index 00000000..7df7b5be --- /dev/null +++ b/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom @@ -0,0 +1,482 @@ + + + + + + 4.0.0 + + + net.java + jvnet-parent + 4 + + + + org.glassfish.jersey + jersey-bom + 2.27 + pom + jersey-bom + + Jersey Bill of Materials (BOM) + + + + + org.glassfish.jersey.core + jersey-common + ${project.version} + + + org.glassfish.jersey.core + jersey-client + ${project.version} + + + org.glassfish.jersey.core + jersey-server + ${project.version} + + + org.glassfish.jersey.bundles + jaxrs-ri + ${project.version} + + + org.glassfish.jersey.connectors + jersey-apache-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jetty-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-jdk-connector + ${project.version} + + + org.glassfish.jersey.connectors + jersey-netty-connector + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-jdk-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-netty-http + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-servlet + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-servlet-core + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-simple-http + ${project.version} + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + ${project.version} + + + org.glassfish.jersey.ext + jersey-bean-validation + ${project.version} + + + org.glassfish.jersey.ext + jersey-entity-filtering + ${project.version} + + + org.glassfish.jersey.ext + jersey-metainf-services + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-jsp + ${project.version} + + + org.glassfish.jersey.ext + jersey-mvc-mustache + ${project.version} + + + org.glassfish.jersey.ext + jersey-proxy-client + ${project.version} + + + org.glassfish.jersey.ext + jersey-servlet-portability + ${project.version} + + + org.glassfish.jersey.ext + jersey-spring4 + ${project.version} + + + org.glassfish.jersey.ext + jersey-declarative-linking + ${project.version} + + + org.glassfish.jersey.ext + jersey-wadl-doclet + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + ${project.version} + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + ${project.version} + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + ${project.version} + + + org.glassfish.jersey.media + jersey-media-jaxb + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jackson + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jackson1 + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-jettison + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-processing + ${project.version} + + + org.glassfish.jersey.media + jersey-media-json-binding + ${project.version} + + + org.glassfish.jersey.media + jersey-media-kryo + ${project.version} + + + org.glassfish.jersey.media + jersey-media-moxy + ${project.version} + + + org.glassfish.jersey.media + jersey-media-multipart + ${project.version} + + + org.glassfish.jersey.media + jersey-media-sse + ${project.version} + + + org.glassfish.jersey.security + oauth1-client + ${project.version} + + + org.glassfish.jersey.security + oauth1-server + ${project.version} + + + org.glassfish.jersey.security + oauth1-signature + ${project.version} + + + org.glassfish.jersey.security + oauth2-client + ${project.version} + + + org.glassfish.jersey.inject + jersey-hk2 + ${project.version} + + + org.glassfish.jersey.inject + jersey-cdi2-se + ${project.version} + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + ${project.version} + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + ${project.version} + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + ${project.version} + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + ${project.version} + + + + + + + + + org.glassfish.copyright + glassfish-copyright-maven-plugin + 1.28 + + etc/config/copyright-exclude + + git + + false + + true + + true + + false + + false + etc/config/copyright.txt + + + + + + + + + project-info + + false + + + + + + localhost + http://localhost + + + + + release + + false + + + + + org.apache.maven.plugins + maven-deploy-plugin + + true + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + + + default-deploy + deploy + + deploy + + + + + jvnet-nexus-staging + https://maven.java.net/ + + + + + + + + + 2.27 + + diff --git a/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom.sha1 b/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom.sha1 new file mode 100644 index 00000000..7e65772f --- /dev/null +++ b/artifacts/m2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom.sha1 @@ -0,0 +1 @@ +24e20dce2e506533f1c7449bcb9a64ee615dc4f7 \ No newline at end of file diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/_remote.repositories b/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/_remote.repositories new file mode 100644 index 00000000..cb081067 --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:49 CST 2021 +hibernate-validator-parent-6.0.18.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom b/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom new file mode 100644 index 00000000..20646b4a --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom @@ -0,0 +1,1274 @@ + + + + 4.0.0 + + org.hibernate.validator + hibernate-validator-parent + 6.0.18.Final + pom + + Hibernate Validator Aggregator + http://hibernate.org/validator + Aggregator of the Hibernate Validator modules. + + + + epbernard + Emmanuel Bernard + emmanuel@hibernate.org + Red Hat, Inc. + http://in.relation.to/emmanuel-bernard/ + + + hardy.ferentschik + Hardy Ferentschik + hferents@redhat.com + Red Hat, Inc. + http://in.relation.to/hardy-ferentschik/ + + + gunnar.morling + Gunnar Morling + gunnar@hibernate.org + Red Hat, Inc. + http://in.relation.to/gunnar-morling/ + + + kevinpollet + Kevin Pollet + kevin.pollet@serli.com + SERLI + http://www.serli.com/ + + + davide.dalto + Davide D'Alto + davide@hibernate.org + Red Hat, Inc. + http://in.relation.to/davide-dalto/ + + + guillaume.smet + Guillaume Smet + guillaume.smet@hibernate.org + Red Hat, Inc. + http://in.relation.to/guillaume-smet/ + + + marko.bekhta + Marko Bekhta + marko.prykladna@gmail.com + http://in.relation.to/marko-bekhta/ + + + + + + George Gastaldi + gegastaldi@gmail.com + + + + + + hibernate-dev + hibernate-dev@lists.jboss.org + + + + + test-utils + build-config + engine + tck-runner + annotation-processor + performance + + + + 1.8 + 1.8 + + + org.hibernate.validator + org.hibernate.validator.cdi + + org.hibernate.validator.hibernate-validator + org.hibernate.validator.hibernate-validator-cdi + + + UTF-8 + UTF-8 + + true + + 2.0.1.Final + 2.0.4.Final + + + 6.0.9.Final + + 2.8 + 3.0.1-b09 + 3.3.2.Final + 2.1.0.Final + + + 17.0.1.Final + + 16.0.0.Final + + ${wildfly.version} + + + 1.3.4 + 1.8.3 + 2.9.7 + 1.7.22 + 2.2 + + + 2.0.SP1 + 3.1.1.Final + 2.2.0.Final + 1.0.2.Final + + + 1.0.1 + 1.1 + + 1.2 + + + 2.0.1.Final + 5.0.3 + 1.2.1.Final + 4.0.0.Final + + + 11.0.2 + + + 1.1.11.Final + 6.8 + + 3.8.0 + 4.12 + 3.4 + + + 4.12.0 + 2.5.2 + 4.2.0 + 6.0.0 + 5.181 + 1.0.Beta3 + + 8.1 + + 2.4.12 + + 27.1-jre + 4.3.10.RELEASE + + + 1.0.1.Final + 1.0.3.Final + 1.5.5 + 9.1.8.0 + 1.6.0-alpha.5 + 1.5.0-alpha.16 + + + http://beanvalidation.org/2.0/spec/ + http://docs.oracle.com/javase/8/docs/api + http://docs.oracle.com/javase/8/docs/technotes + http://docs.oracle.com/javaee/7/api + http://docs.oracle.com/javase/8/javase-clienttechnologies.htm + http://docs.jboss.org/hibernate/beanvalidation/spec/2.0/api + http://javamoney.github.io/apidocs + + 2.21.0 + + + + + + + + + ${arquillian.wildfly.jvm.args.add-opens} ${arquillian.wildfly.jvm.args.add-modules} + + + forbidden-junit.txt + 10 + + . + + + + + + ${project.groupId} + hibernate-validator + ${project.version} + + + ${project.groupId} + hibernate-validator-test-utils + ${project.version} + + + ${project.groupId} + hibernate-validator-cdi + ${project.version} + + + ${project.groupId} + hibernate-validator-annotation-processor + ${project.version} + + + ${project.groupId} + hibernate-validator-modules + ${project.version} + wildfly-${wildfly.version}-patch + zip + + + ${project.groupId} + hibernate-validator-modules + ${project.version} + wildfly-${wildfly-secondary.version}-patch + zip + + + javax.validation + validation-api + ${bv.api.version} + + + org.jboss.logging + jboss-logging + ${jboss.logging.version} + + + org.jboss.logging + jboss-logging-processor + ${jboss.logging.processor.version} + + + org.jboss.logging + jboss-logging-annotations + ${jboss.logging.processor.version} + + + org.glassfish + javax.el + ${javax.el.version} + + + com.fasterxml + classmate + ${classmate.version} + + + joda-time + joda-time + ${joda-time.version} + + + javax.money + money-api + ${javax-money.version} + + + org.javamoney + moneta + ${moneta.version} + + + org.osgi + org.osgi.core + ${osgi-core.version} + + + org.jsoup + jsoup + ${jsoup.version} + + + log4j + log4j + 1.2.17 + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-log4j12 + ${slf4j.version} + + + javax.persistence + javax.persistence-api + ${javax.persistence-api.version} + + + junit + junit + ${junit.version} + + + org.testng + testng + ${testng.version} + + + org.codehaus.groovy + groovy-jsr223 + ${groovy.version} + + + org.easymock + easymock + ${easymock.version} + + + org.assertj + assertj-core + ${assertj-core.version} + + + org.jboss.arquillian + arquillian-bom + ${arquillian.version} + pom + import + + + javax.annotation + javax.annotation-api + ${javax-annotation-api.version} + + + org.jboss.spec.javax.interceptor + jboss-interceptors-api_1.2_spec + 1.0.0.Final + + + org.jboss.spec.javax.ejb + jboss-ejb-api_3.2_spec + ${jboss-ejb-api_3.2_spec.version} + + + javax.enterprise + cdi-api + ${cdi-api.version} + + + javax.interceptor + javax.interceptor-api + + + javax.el + javax.el-api + + + + + org.jboss.weld + weld-core-impl + ${weld.version} + + + org.wildfly.arquillian + wildfly-arquillian-container-managed + ${wildfly-arquillian.version} + + + sun.jdk + jconsole + + + + + org.jboss.arquillian.container + arquillian-weld-se-embedded-1.1 + 1.0.0.Final + + + com.thoughtworks.paranamer + paranamer + ${paranamer.version} + + + com.google.guava + guava + ${guava.version} + + + org.springframework + spring-expression + ${spring-expression.version} + + + + + + + + org.apache.maven.wagon + wagon-webdav + 1.0-beta-2 + + + + + maven-enforcer-plugin + 3.0.0-M1 + + + enforce-java + + enforce + + + + + [1.8.0-20,) + + + 3.3.1 + + + + + + + + com.mycila + license-maven-plugin + + + + + + maven-antrun-plugin + 1.8 + + + maven-clean-plugin + 3.0.0 + + + maven-jar-plugin + 3.0.2 + + + + ${project.artifactId} + ${project.version} + ${project.parent.groupId} + ${project.parent.groupId} + http://hibernate.org/validator/ + + + + + + maven-compiler-plugin + 3.7.0 + + + -Aorg.jboss.logging.tools.addGeneratedAnnotation=false + + -parameters + + + + maven-checkstyle-plugin + 2.17 + + + ${project.groupId} + hibernate-validator-build-config + ${project.version} + + + + com.puppycrawl.tools + checkstyle + ${puppycrawl.checkstyle.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + + checkstyle.xml + true + true + error + true + false + true + **/*.xml,**/*.properties + + + **/org/hibernate/validator/internal/xml/binding/*.java, + **/Log_$logger.java, + **/Messages_$bundle.java, + **/ConcurrentReferenceHashMap.java, + **/TypeHelper*.java, + **/TckRunner.java + + + + + check-style + verify + + check + + + + + + de.thetaphi + forbiddenapis + 2.5 + + ${forbiddenapis.jdk.target} + + false + + **.IgnoreForbiddenApisErrors + + + + org.hibernate.validator + hibernate-validator-build-config + ${project.version} + jar + forbidden-common.txt + + + org.hibernate.validator + hibernate-validator-build-config + ${project.version} + jar + ${forbiddenapis-junit.path} + + + + + + check-main + + check + + verify + + + jdk-unsafe + jdk-deprecated + jdk-system-out + jdk-non-portable + jdk-internal + + + + + check-test + + testCheck + + verify + + + jdk-deprecated + + + + + + + com.mycila + license-maven-plugin + 3.0 + +
${hibernate-validator-parent.path}/build-config/src/main/resources/license.header
+ true + + ${hibernate-validator-parent.path}/build-config/src/main/resources/java-header-style.xml + ${hibernate-validator-parent.path}/build-config/src/main/resources/xml-header-style.xml + + + JAVA_CLASS_STYLE + XML_FILE_STYLE + + + + **/org/hibernate/validator/internal/util/TypeHelper.java + **/org/hibernate/validator/test/internal/util/TypeHelperTest.java + **/settings-example.xml + **/src/test/resources/org/hibernate/validator/referenceguide/**/*.* + **/org/hibernate/validator/referenceguide/**/*.* + **/src/test/resources/org/hibernate/validator/test/internal/xml/**/*.xml + .mvn/** + + + **/*.java + **/*.xml + +
+ + + license-headers + + check + + + +
+ + maven-surefire-plugin + ${maven-surefire-plugin.version} + + once + true + + **/*Test.java + + ${maven-surefire-plugin.argLine} + + + + maven-surefire-report-plugin + ${maven-surefire-plugin.version} + + + generate-test-report + test + + report-only + + + + + ${project.build.directory}/surefire-reports + test-report + + + + maven-failsafe-plugin + ${maven-surefire-plugin.version} + + ${maven-surefire-plugin.argLine} ${maven-surefire-plugin.argLine.add-opens} + + + + maven-dependency-plugin + 3.0.2 + + + maven-install-plugin + 2.5.2 + + + maven-assembly-plugin + 3.1.0 + + + + org.codehaus.plexus + plexus-archiver + 3.4 + + + org.codehaus.plexus + plexus-io + 2.7.1 + + + + + maven-release-plugin + 2.5.3 + + clean install + true + true + false + true + @{project.version} + documentation-pdf + + + + org.codehaus.mojo + exec-maven-plugin + + 1.5.0 + + + org.asciidoctor + asciidoctor-maven-plugin + ${asciidoctor-maven-plugin.version} + + + org.jruby + jruby-complete + ${jruby.version} + + + org.asciidoctor + asciidoctorj + ${asciidoctorj.version} + + + org.asciidoctor + asciidoctorj-pdf + ${asciidoctorj-pdf.version} + + + org.hibernate.infra + hibernate-asciidoctor-extensions + ${hibernate-asciidoctor-extensions.version} + + + + + ch.mfrey.maven.plugin + copy-maven-plugin + 0.0.6 + + + maven-project-info-reports-plugin + 2.9 + + + org.apache.felix + maven-bundle-plugin + 3.5.0 + + + maven-source-plugin + 3.0.1 + + + maven-javadoc-plugin + 3.0.0 + + true + true + + Red Hat, Inc. All Rights Reserved]]> + + + + maven-deploy-plugin + 2.8.2 + + + maven-resources-plugin + 3.0.2 + + + false + + ${*} + + + + + org.codehaus.gmavenplus + gmavenplus-plugin + 1.6 + + + org.codehaus.groovy + groovy-all + ${groovy.version} + + + + + org.apache.servicemix.tooling + depends-maven-plugin + 1.4.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + + com.github.siom79.japicmp + japicmp-maven-plugin + 0.11.0 + + + + org.hibernate.validator + ${project.artifactId} + ${previous.stable} + ${project.packaging} + + + true + + + ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} + + + + true + + org.hibernate.validator.internal.* + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.0 + + + + org.jboss.as + patch-gen-maven-plugin + ${wildfly-patch-gen-maven-plugin.version} + + + com.fasterxml.woodstox + woodstox-core + ${wildfly-patch-gen-maven-plugin.woodstox.version} + + + + + org.wildfly.plugins + wildfly-maven-plugin + ${wildfly-maven-plugin.version} + + + + org.wildfly.core + wildfly-patching + ${wildfly-core.version} + + + + org.wildfly.core + wildfly-cli + ${wildfly-core.version} + + + sun.jdk + jconsole + + + + + + + org.netbeans.tools + sigtest-maven-plugin + 1.2 + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.asciidoctor + + + asciidoctor-maven-plugin + + + [0.1.4,) + + + + process-asciidoc + + + + + + + + + + + org.jboss.maven.plugins + + + maven-injection-plugin + + + [1.0.2,) + + + bytecode + + + + + + + + + + org.codehaus.gmavenplus + + + gmavenplus-plugin + + + [1.5,) + + + execute + + + + + + + + + org.apache.servicemix.tooling + depends-maven-plugin + [1.2,) + + generate-depends-file + + + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + [2.0,) + + copy-dependencies + copy + unpack + + + + + + + + + + +
+
+
+ + + Jenkins + http://ci.hibernate.org/view/Validator/ + + + + JIRA + https://hibernate.atlassian.net/projects/HV/summary + + + 2007 + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git://github.com/hibernate/hibernate-validator.git + scm:git:git@github.com:hibernate/hibernate-validator.git + http://github.com/hibernate/hibernate-validator + HEAD + + + + + jboss-releases-repository + JBoss Releases Repository + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + + jboss-snapshots-repository + JBoss Snapshots Repository + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + docs + + + disableDocumentationBuild + !true + + + (,12) + + + documentation + + + + dist + + + disableDistributionBuild + !true + + + (,12) + + + distribution + + + + relocation + + relocation + + + + release + + + + maven-enforcer-plugin + + + enforce-release-rules + + enforce + + + + + + true + + + + + + + + + jdk9+ + + [9,) + + + + + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.lang.reflect=ALL-UNNAMED + --add-opens=java.base/java.security=ALL-UNNAMED + --add-opens=java.base/java.math=ALL-UNNAMED + --add-opens=java.base/java.io=ALL-UNNAMED + --add-opens=java.base/java.net=ALL-UNNAMED + --add-opens=java.base/java.util=ALL-UNNAMED + --add-opens=java.base/java.util.concurrent=ALL-UNNAMED + --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED + --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED + --add-opens=java.base/jdk.internal.reflect=ALL-UNNAMED + --add-opens=java.management/javax.management=ALL-UNNAMED + --add-opens=java.management/javax.management.openmbean=ALL-UNNAMED + --add-opens=java.naming/javax.naming=ALL-UNNAMED + + + + + + + maven-compiler-plugin + + true + + + + maven-surefire-plugin + ${maven-surefire-plugin.version} + + ${maven-surefire-plugin.argLine} ${maven-surefire-plugin.argLine.add-opens} + + + + org.wildfly.plugins + wildfly-maven-plugin + + + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.security=ALL-UNNAMED + --add-opens=java.base/java.io=ALL-UNNAMED + + + + + + + + + + jdk10- + + (,11) + + + osgi + + + + + jdk11- + + (,12) + + + + cdi + modules + integration + + + + jdk11+ + + [11,) + + + + --add-modules=java.se + + + + + + + org.wildfly.plugins + wildfly-maven-plugin + + + --add-opens=java.base/java.lang=ALL-UNNAMED + --add-opens=java.base/java.security=ALL-UNNAMED + --add-opens=java.base/java.io=ALL-UNNAMED + --add-modules=java.se + + + + + org.jboss.as + patch-gen-maven-plugin + + + --add-modules=java.se + + + + + + + + + jqassistant + + + + + com.buschmais.jqassistant + jqassistant-maven-plugin + 1.3.0 + + + + scan + analyze + + + true + + + + + + + + +
diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom.sha1 b/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom.sha1 new file mode 100644 index 00000000..8a087893 --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom.sha1 @@ -0,0 +1 @@ +cd1b3c283b164cd9c8be8bca8785b7e090987db3 \ No newline at end of file diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/_remote.repositories b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/_remote.repositories new file mode 100644 index 00000000..e1c01e3b --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +hibernate-validator-6.0.18.Final.jar>repo.jenkins-ci.org= +hibernate-validator-6.0.18.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar new file mode 100644 index 00000000..347bb421 Binary files /dev/null and b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar differ diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar.sha1 b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar.sha1 new file mode 100644 index 00000000..c120322b --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar.sha1 @@ -0,0 +1 @@ +7fd00bcd87e14b6ba66279282ef15efa30dd2492 \ No newline at end of file diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom new file mode 100644 index 00000000..af99f499 --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom @@ -0,0 +1,300 @@ + + + + 4.0.0 + + + org.hibernate.validator + hibernate-validator-parent + 6.0.18.Final + ../pom.xml + + + hibernate-validator + + Hibernate Validator Engine + Hibernate's Bean Validation (JSR-380) reference implementation. + + + .. + + + + + site + http://hibernate.org/validator + + + + + + + javax.validation + validation-api + + + org.jboss.logging + jboss-logging + + + com.fasterxml + classmate + + + + + org.glassfish + javax.el + provided + + + org.jboss.logging + jboss-logging-processor + + provided + + + org.jboss.logging + jboss-logging-annotations + provided + + + + + javax.persistence + javax.persistence-api + true + + + joda-time + joda-time + true + + + org.jsoup + jsoup + true + + + com.thoughtworks.paranamer + paranamer + true + + + javax.money + money-api + true + + + + + org.testng + testng + test + + + ${project.groupId} + hibernate-validator-test-utils + test + + + log4j + log4j + test + + + org.easymock + easymock + test + + + org.codehaus.groovy + groovy-jsr223 + test + + + org.assertj + assertj-core + test + + + org.jboss.shrinkwrap + shrinkwrap-impl-base + test + + + org.javamoney + moneta + test + + + + + test + + + src/main/resources + + + src/main/xsd + META-INF + + + + + true + src/test/resources + + META-INF/services/* + **/*.properties + **/*.xml + + + + + + maven-checkstyle-plugin + + + de.thetaphi + forbiddenapis + + + maven-jar-plugin + + + default-jar + package + + jar + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + Bean Validation + 2.0 + ${hibernate-validator.module-name} + + + + + + + + org.apache.felix + maven-bundle-plugin + + + ${hibernate-validator.bundle-name} + + javax.persistence.*;version="[2.0.0,3.0.0)";resolution:=optional, + javax.validation.*;version="[2.0.0,3.0.0)", + javax.script.*;version="0", + javax.xml.*;version="0", + javax.el.*;version="[2.0.0,4.0.0)";resolution:=optional, + org.xml.sax.*;version="0", + org.jboss.logging.*;version="[3.1.0,4.0.0)", + com.fasterxml.classmate.*;version="[1.3,2.0.0)", + org.joda.time.*;version="[2.0.0,3.0.0)";resolution:=optional, + org.jsoup.*;version="[1.5.2,2.0.0)";resolution:=optional, + javax.money;version="[1.0.0,2.0.0)";resolution:=optional, + com.thoughtworks.paranamer.*;version="[2.5.5,3.0.0)";resolution:=optional + + + org.hibernate.validator;version="${project.version}", + org.hibernate.validator.cfg.*;version="${project.version}", + org.hibernate.validator.constraints.*;version="${project.version}", + org.hibernate.validator.constraintvalidation.*;version="${project.version}", + org.hibernate.validator.constraintvalidators.*;version="${project.version}", + org.hibernate.validator.engine.*;version="${project.version}", + org.hibernate.validator.group;version="${project.version}", + org.hibernate.validator.messageinterpolation;version="${project.version}", + org.hibernate.validator.parameternameprovider;version="${project.version}", + org.hibernate.validator.path;version="${project.version}", + org.hibernate.validator.resourceloading;version="${project.version}", + org.hibernate.validator.spi.*;version="${project.version}" + + + + + + bundle-manifest + process-classes + + manifest + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + tests + 4 + + + + org.apache.maven.plugins + maven-surefire-report-plugin + + + org.apache.maven.plugins + maven-release-plugin + + + com.github.siom79.japicmp + japicmp-maven-plugin + + false + + + + + + + jdk9+ + + [9,) + + + --illegal-access=deny + + + + jdk11+ + + [11,) + + + + org.openjfx + javafx-base + ${version.org.openjfx} + provided + + + + + diff --git a/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom.sha1 b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom.sha1 new file mode 100644 index 00000000..ae02feaa --- /dev/null +++ b/artifacts/m2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom.sha1 @@ -0,0 +1 @@ +2c12e6432816935e656a206acff0ab4ba33d4e9e \ No newline at end of file diff --git a/artifacts/m2/org/iq80/snappy/snappy/0.4/_remote.repositories b/artifacts/m2/org/iq80/snappy/snappy/0.4/_remote.repositories new file mode 100644 index 00000000..0f34cc5f --- /dev/null +++ b/artifacts/m2/org/iq80/snappy/snappy/0.4/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +snappy-0.4.jar>repo.jenkins-ci.org= +snappy-0.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar new file mode 100644 index 00000000..c653482e Binary files /dev/null and b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar differ diff --git a/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar.sha1 b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar.sha1 new file mode 100644 index 00000000..ae0427d6 --- /dev/null +++ b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar.sha1 @@ -0,0 +1 @@ +a42b2d92a89efd35bb14738000dabcac6bd07a8d \ No newline at end of file diff --git a/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom new file mode 100644 index 00000000..59992fa4 --- /dev/null +++ b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom @@ -0,0 +1,360 @@ + + + + 4.0.0 + + org.iq80.snappy + snappy + 0.4 + jar + + snappy + + Port of Snappy to Java + http://github.com/dain/snappy + + 2011 + + + + Apache License 2.0 + http://www.apache.org/licenses/LICENSE-2.0.html + repo + + + + + + dain + Dain Sundstrom + dain@iq80.com + + + electrum + David Phillips + david@acz.org + + + + + UTF-8 + + + + scm:git:git://github.com/dain/snapy.git + scm:git:git@github.com:dain/snapy.git + http://github.com/dain/snapy/tree/master + + + + 3.0 + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + org.apache.hadoop + hadoop-core + 0.20.2 + true + provided + + + com.google.guava + guava + 13.0.1 + test + + + org.xerial.snappy + snappy-java + 1.0.4.1 + test + + + org.testng + testng + 6.0.1 + test + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.0 + + + enforce-versions + + enforce + + + + + 3.0.0 + + + 1.6 + + + + + + + + org.apache.maven.plugins + maven-source-plugin + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.2 + + + binary + package + + jar + + + bin + + + org.iq80.snappy.Main + + + + + + + + + org.skife.maven + really-executable-jar-maven-plugin + 1.0.3 + + + package + + really-executable-jar + + + bin + + + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.8.1 + + + libsnappyjava.jnilib + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + true + + + + create-source-jar + + jar-no-fork + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + + org.codehaus.mojo + findbugs-maven-plugin + 2.3.2 + + true + true + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.4 + + + xml + + + + + + org.apache.maven.plugins + maven-install-plugin + 2.3.1 + + + + org.apache.maven.plugins + maven-resources-plugin + 2.4.3 + + + + org.apache.maven.plugins + maven-deploy-plugin + 2.5 + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.8 + + + com.google.doclava + doclava + 1.0.2 + + com.google.doclava.Doclava + + ${sun.boot.class.path} + + -quiet + -federate JDK http://download.oracle.com/javase/6/docs/api/index.html? + -federate Guice http://google-guice.googlecode.com/svn/trunk/javadoc/ + -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml + -hdf project.name "${project.name}" + -d ${project.build.directory}/apidocs + + false + + -J-Xmx1024m + + + + attach-javadocs + + jar + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + -Psonatype-oss-release + false + false + true + true + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + 1.9.0 + +
license-header.txt
+ + SLASHSTAR_STYLE + + + **/README.md + **/README.txt + **/config.properties + **/log.properties + testdata/** + snappy-cc/** + .gitignore + notice.md + license.txt + +
+
+
+
+
+ + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.4 + + true + + + + sign-artifacts + verify + + sign + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + + + +
diff --git a/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom.sha1 b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom.sha1 new file mode 100644 index 00000000..47901ed0 --- /dev/null +++ b/artifacts/m2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom.sha1 @@ -0,0 +1 @@ +7d270b984909d7b3f3327055e07e7646ade0c781 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/_remote.repositories b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/_remote.repositories new file mode 100644 index 00000000..720d3867 --- /dev/null +++ b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:49 CST 2021 +arquillian-bom-1.1.11.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom new file mode 100644 index 00000000..11731743 --- /dev/null +++ b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom @@ -0,0 +1,263 @@ + + + + + 4.0.0 + + + org.jboss.arquillian + arquillian-bom + 1.1.11.Final + pom + Arquillian BOM + http://arquillian.org + Arquillian Bill Of Material + + + jira + http://jira.jboss.com/jira/browse/ARQ + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + scm:git:git://git@github.com:arquillian/arquillian-core.git + scm:git:ssh://github.com/arquillian/arquillian-core.git + git://github.com/arquillian/arquillian-core.git + 1.1.11.Final + + + + + arquillian.org + Arquillian Community + arquillian.org + http://arquillian.org + + + + + + 1.2.3 + 2.0.0-alpha-8 + 2.2.0 + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + org.jboss.arquillian.core + arquillian-core-api + ${project.version} + + + org.jboss.arquillian.core + arquillian-core-spi + ${project.version} + + + org.jboss.arquillian.core + arquillian-core-impl-base + ${project.version} + + + + + org.jboss.arquillian.config + arquillian-config-api + ${project.version} + + + org.jboss.arquillian.config + arquillian-config-spi + ${project.version} + + + org.jboss.arquillian.config + arquillian-config-impl-base + ${project.version} + + + + + org.jboss.arquillian.test + arquillian-test-api + ${project.version} + + + org.jboss.arquillian.test + arquillian-test-spi + ${project.version} + + + org.jboss.arquillian.test + arquillian-test-impl-base + ${project.version} + + + + + org.jboss.arquillian.container + arquillian-container-spi + ${project.version} + + + org.jboss.arquillian.container + arquillian-container-impl-base + ${project.version} + + + + + org.jboss.arquillian.container + arquillian-container-test-api + ${project.version} + + + org.jboss.arquillian.container + arquillian-container-test-spi + ${project.version} + + + org.jboss.arquillian.container + arquillian-container-test-impl-base + ${project.version} + + + + + org.jboss.arquillian.junit + arquillian-junit-core + ${project.version} + + + org.jboss.arquillian.junit + arquillian-junit-container + ${project.version} + + + org.jboss.arquillian.junit + arquillian-junit-standalone + ${project.version} + + + + + org.jboss.arquillian.testng + arquillian-testng-core + ${project.version} + + + org.jboss.arquillian.testng + arquillian-testng-container + ${project.version} + + + org.jboss.arquillian.testng + arquillian-testng-standalone + ${project.version} + + + + + org.jboss.arquillian.protocol + arquillian-protocol-servlet + ${project.version} + + + org.jboss.arquillian.protocol + arquillian-protocol-jmx + ${project.version} + + + + + org.jboss.arquillian.testenricher + arquillian-testenricher-cdi + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-ejb + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-resource + ${project.version} + + + org.jboss.arquillian.testenricher + arquillian-testenricher-initialcontext + ${project.version} + + + + + org.jboss.shrinkwrap + shrinkwrap-bom + ${version.shrinkwrap_shrinkwrap} + pom + import + + + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-bom + ${version.shrinkwrap_resolver} + pom + import + + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-bom + ${version.shrinkwrap_descriptors} + pom + import + + + + + + + + + + maven-release-plugin + 2.1 + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom.sha1 b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom.sha1 new file mode 100644 index 00000000..540bcdbd --- /dev/null +++ b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom.sha1 @@ -0,0 +1 @@ +aa3eef774e9edc576231c294400c4d524bf4022f \ No newline at end of file diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/_remote.repositories b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/_remote.repositories new file mode 100644 index 00000000..db1d49d4 --- /dev/null +++ b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jboss-logging-3.3.3.Final.jar>repo.jenkins-ci.org= +jboss-logging-3.3.3.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar new file mode 100644 index 00000000..91db418a Binary files /dev/null and b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar differ diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar.sha1 b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar.sha1 new file mode 100644 index 00000000..062f22a0 --- /dev/null +++ b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.jar.sha1 @@ -0,0 +1 @@ +d3cfa8d3075fd52884fc82ded5c52b1407f18e6e \ No newline at end of file diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.pom b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.pom new file mode 100644 index 00000000..8ea115de --- /dev/null +++ b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.pom @@ -0,0 +1,156 @@ + + + + 4.0.0 + org.jboss.logging + jboss-logging + 3.3.3.Final + jar + JBoss Logging 3 + http://www.jboss.org + The JBoss Logging Framework + + scm:git:git://github.com/jboss-logging/jboss-logging.git + https://github.com/jboss-logging/jboss-logging + + + + org.jboss + jboss-parent + 15 + + + + + Apache License, version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + 1.2.16 + 2.0 + 1.5.2.Final + 1.7.2 + + + 1.3.2.GA + + + 1.6 + 1.6 + + + + + org.jboss.logmanager + jboss-logmanager + ${version.org.jboss.logmanager} + provided + + + log4j + log4j + ${version.org.apache.log4j} + provided + + + com.sun.jdmk + jmxtools + + + com.sun.jmx + jmxri + + + + + org.apache.logging.log4j + log4j-api + ${version.org.apache.logging.log4j} + provided + + + org.slf4j + slf4j-api + ${version.org.sfl4j} + provided + + + + + + + maven-compiler-plugin + + + maven-source-plugin + + + maven-javadoc-plugin + + false + false + net.gleamynode.apiviz.APIviz + + org.jboss.apiviz + apiviz + ${version.org.jboss.apiviz.apiviz} + + ${project.version} +
${project.version}
+
${project.version}
+ Copyright © 2015 Red Hat, Inc.]]> + + http://java.sun.com/javase/6/docs/api/ + +
+
+ + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + org.apache.felix + maven-bundle-plugin + true + + + + false + + + org.jboss.logging + + + + + ${project.groupId}.*;version=${project.version};-split-package:=error + + + org.apache.log4j.config;resolution:=optional, + *;resolution:=optional + + + + + + bundle-manifest + process-classes + + manifest + + + + +
+
+
diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.pom.sha1 b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.pom.sha1 new file mode 100644 index 00000000..c6cd81ab --- /dev/null +++ b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.3.Final/jboss-logging-3.3.3.Final.pom.sha1 @@ -0,0 +1 @@ +d7eb37c2ec7dfd209bbe8d739a1bdf5a6c43bcf9 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/_remote.repositories b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/_remote.repositories new file mode 100644 index 00000000..d1d06e01 --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:51 CST 2021 +shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom new file mode 100644 index 00000000..ab37e2d6 --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom @@ -0,0 +1,135 @@ + + + + + + 4.0.0 + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-bom + 2.0.0-alpha-8 + pom + ShrinkWrap Descriptors Bill of Materials + Centralized dependencyManagement for the ShrinkWrap Descriptors Project + http://www.jboss.org/shrinkwrap + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + scm:git:git://github.com/shrinkwrap/descriptors.git + scm:git:git@github.com:shrinkwrap/descriptors.git + https://github.com/shrinkwrap/descriptors + 2.0.0-alpha-8 + + + + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-api-base + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-api-javaee + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-api-jboss + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-gen + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-impl-base + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-impl-javaee + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-impl-jboss + ${project.version} + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-spi + ${project.version} + + + + org.jboss.shrinkwrap.descriptors + shrinkwrap-descriptors-depchain + ${project.version} + pom + + + + + + + + + + maven-release-plugin + 2.1 + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom.sha1 b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom.sha1 new file mode 100644 index 00000000..5e36ad41 --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom.sha1 @@ -0,0 +1 @@ +406a55c268791650b8b1c031c35d1948bb3167b6 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/_remote.repositories b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/_remote.repositories new file mode 100644 index 00000000..17ca686a --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:50 CST 2021 +shrinkwrap-resolver-bom-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom new file mode 100644 index 00000000..b242b1ed --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom @@ -0,0 +1,152 @@ + + + + + + 4.0.0 + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-bom + 2.2.0 + pom + ShrinkWrap Resolver Bill of Materials + Centralized dependencyManagement for the ShrinkWrap Resolver Project + http://www.jboss.org/shrinkwrap + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + scm:git:git://github.com/shrinkwrap/shrinkwrap.git + scm:git:git@github.com:shrinkwrap/shrinkwrap.git + https://github.com/shrinkwrap/shrinkwrap + 2.2.0 + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-spi + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-maven + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-spi-maven + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-maven + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-maven-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-maven-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-depchain + ${project.version} + pom + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-gradle-depchain + ${project.version} + pom + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-maven-plugin + ${project.version} + runtime + maven-plugin + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-api-gradle-embedded-archive + ${project.version} + + + org.jboss.shrinkwrap.resolver + shrinkwrap-resolver-impl-gradle-embedded-archive + ${project.version} + + + + + + + + + + maven-release-plugin + 2.1 + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom.sha1 b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom.sha1 new file mode 100644 index 00000000..61f1c4ba --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom.sha1 @@ -0,0 +1 @@ +43ec33eac9ca838cb31059b1fe48b1cca80edbe7 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/_remote.repositories b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/_remote.repositories new file mode 100644 index 00000000..25d91b95 --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:50 CST 2021 +shrinkwrap-bom-1.2.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom new file mode 100644 index 00000000..d253c33e --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom @@ -0,0 +1,127 @@ + + + + + + 4.0.0 + + + org.jboss.shrinkwrap + shrinkwrap-bom + 1.2.3 + pom + ShrinkWrap Bill of Materials + Centralized dependencyManagement for the ShrinkWrap Project + http://www.jboss.org/shrinkwrap + + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + + + + + scm:git:git://github.com/shrinkwrap/shrinkwrap.git + scm:git:git@github.com:shrinkwrap/shrinkwrap.git + https://github.com/shrinkwrap/shrinkwrap + 1.2.3 + + + + + jboss.org + JBoss.org Community + JBoss.org + http://www.jboss.org + + + + + + + https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ + https://repository.jboss.org/nexus/content/repositories/snapshots/ + + + + + + + + + org.jboss.shrinkwrap + shrinkwrap-api + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-spi + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-impl-base + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-api-nio2 + ${project.version} + + + org.jboss.shrinkwrap + shrinkwrap-impl-nio2 + ${project.version} + + + + org.jboss.shrinkwrap + shrinkwrap-depchain + ${project.version} + pom + + + + org.jboss.shrinkwrap + shrinkwrap-depchain-java7 + ${project.version} + pom + + + + + + + + + + maven-release-plugin + 2.1 + + false + true + + + + + + + + + jboss-releases-repository + JBoss Releases Repository + ${jboss.releases.repo.url} + + + jboss-snapshots-repository + JBoss Snapshots Repository + ${jboss.snapshots.repo.url} + + + + diff --git a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom.sha1 b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom.sha1 new file mode 100644 index 00000000..f46beb8d --- /dev/null +++ b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom.sha1 @@ -0,0 +1 @@ +a22be58388597414dc0b46beacc81b11d0b6fb43 \ No newline at end of file diff --git a/artifacts/m2/org/jdom/jdom2/2.0.6/_remote.repositories b/artifacts/m2/org/jdom/jdom2/2.0.6/_remote.repositories new file mode 100644 index 00000000..48a66e75 --- /dev/null +++ b/artifacts/m2/org/jdom/jdom2/2.0.6/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +jdom2-2.0.6.jar>repo.jenkins-ci.org= +jdom2-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar new file mode 100644 index 00000000..2850ca10 Binary files /dev/null and b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar differ diff --git a/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar.sha1 b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar.sha1 new file mode 100644 index 00000000..a58e6fa9 --- /dev/null +++ b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar.sha1 @@ -0,0 +1 @@ +6f14738ec2e9dd0011e343717fa624a10f8aab64 \ No newline at end of file diff --git a/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom new file mode 100644 index 00000000..f7cb1ba9 --- /dev/null +++ b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom @@ -0,0 +1,140 @@ + + 4.0.0 + org.jdom + jdom2 + jar + + JDOM + 2.0.6 + + + A complete, Java-based solution for accessing, manipulating, + and outputting XML data + + http://www.jdom.org + + + JDOM + http://www.jdom.org + + + + + JDOM-interest Mailing List + jdom-interest@jdom.org + http://jdom.markmail.org/ + + + + + + Similar to Apache License but with the acknowledgment clause removed + https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt + repo + . + + 4. Products derived from this software may not be called "JDOM", nor + may "JDOM" appear in their name, without prior written permission + from the JDOM Project Management . + + In addition, we request (but do not require) that you include in the + end-user documentation provided with the redistribution and/or in the + software itself an acknowledgement equivalent to the following: + "This product includes software developed by the + JDOM Project (http://www.jdom.org/)." + Alternatively, the acknowledgment may be graphical using the logos + available at http://www.jdom.org/images/logos. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + This software consists of voluntary contributions made by many + individuals on behalf of the JDOM Project and was originally + created by Jason Hunter and + Brett McLaughlin . For more information + on the JDOM Project, please see . + + */ + + + + ]]> + + + + + git@github.com:/hunterhacker/jdom + scm:git:git@github.com:hunterhacker/jdom + scm:git:git@github.com:hunterhacker/jdom + + + + + hunterhacker + Jason Hunter + jhunter@servlets.com + + + rolfl + Rolf Lear + jdom@tuis.net + + + + + + jaxen + jaxen + 1.1.6 + true + + + xerces + xercesImpl + 2.11.0 + true + + + xalan + xalan + 2.7.2 + true + + + + + + 1.5 + + \ No newline at end of file diff --git a/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom.sha1 b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom.sha1 new file mode 100644 index 00000000..1dd2ad47 --- /dev/null +++ b/artifacts/m2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom.sha1 @@ -0,0 +1 @@ +11e250d112bc9f2a0e1a595a5f6ecd2802af2691 \ No newline at end of file diff --git a/artifacts/m2/org/junit/junit-bom/5.3.2/_remote.repositories b/artifacts/m2/org/junit/junit-bom/5.3.2/_remote.repositories new file mode 100644 index 00000000..9bb48c0b --- /dev/null +++ b/artifacts/m2/org/junit/junit-bom/5.3.2/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:18 CST 2021 +junit-bom-5.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom b/artifacts/m2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom new file mode 100644 index 00000000..ca27c941 --- /dev/null +++ b/artifacts/m2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom @@ -0,0 +1,118 @@ + + + 4.0.0 + org.junit + junit-bom + 5.3.2 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + http://junit.org/junit5/ + + + Eclipse Public License v2.0 + http://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + Matthias.Merdes@heidelberg-mobil.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter-api + 5.3.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.3.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.3.2 + + + org.junit.jupiter + junit-jupiter-params + 5.3.2 + + + org.junit.platform + junit-platform-commons + 1.3.2 + + + org.junit.platform + junit-platform-console + 1.3.2 + + + org.junit.platform + junit-platform-engine + 1.3.2 + + + org.junit.platform + junit-platform-launcher + 1.3.2 + + + org.junit.platform + junit-platform-runner + 1.3.2 + + + org.junit.platform + junit-platform-suite-api + 1.3.2 + + + org.junit.platform + junit-platform-surefire-provider + 1.3.2 + + + org.junit.vintage + junit-vintage-engine + 5.3.2 + + + + diff --git a/artifacts/m2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom.sha1 b/artifacts/m2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom.sha1 new file mode 100644 index 00000000..f69d730f --- /dev/null +++ b/artifacts/m2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom.sha1 @@ -0,0 +1 @@ +77a1f81ca52ce0cea00d90375051b9399cd0e0e7 \ No newline at end of file diff --git a/artifacts/m2/org/objenesis/objenesis-parent/2.6/_remote.repositories b/artifacts/m2/org/objenesis/objenesis-parent/2.6/_remote.repositories new file mode 100644 index 00000000..d3ca511b --- /dev/null +++ b/artifacts/m2/org/objenesis/objenesis-parent/2.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:44 CST 2021 +objenesis-parent-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom b/artifacts/m2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom new file mode 100644 index 00000000..f161a0bb --- /dev/null +++ b/artifacts/m2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom @@ -0,0 +1,510 @@ + + + 4.0.0 + org.objenesis + objenesis-parent + 2.6 + pom + + Objenesis parent project + A library for instantiating Java objects + http://objenesis.org + 2006 + + + 3.2.1 + + + + main + tck + + + + + Apache 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + + Joe Walnes, Henri Tremblay, Leonardo Mesquita + + + + https://github.com/easymock/objenesis + scm:git:git@github.com:easymock/objenesis.git + scm:git:https://github.com/easymock/objenesis.git + 2.6 + + + + + joe + Joe Walnes + -5 + + + henri + Henri Tremblay + -5 + + + leonardo + Leonardo Mesquita + -5 + + + + + UTF-8 + + + + + + junit + junit + 4.12 + + + + + + + junit + junit + test + + + + + + + maven-compiler-plugin + + 1.6 + 1.6 + + + + maven-jar-plugin + + + true + false + + true + true + + + + + + maven-release-plugin + + + true + + @{project.version} + + false + + false + + release,full,all + + true + + + + maven-site-plugin + false + + ${project.basedir}/website + + + + com.mycila.maven-license-plugin + maven-license-plugin + false + + + true + + + + + + org.apache.maven.wagon + wagon-ssh-external + 2.10 + + + + + + maven-assembly-plugin + 3.0.0 + + + maven-compiler-plugin + 3.6.1 + + + maven-jar-plugin + 3.0.2 + + + maven-surefire-plugin + 2.19.1 + + + maven-clean-plugin + 3.0.0 + + + maven-deploy-plugin + 2.8.2 + + + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + maven-install-plugin + 2.5.2 + + + maven-release-plugin + 2.5.3 + + + maven-resources-plugin + 3.0.1 + + + maven-shade-plugin + 2.4.3 + + + maven-site-plugin + 3.5.1 + + + maven-source-plugin + 3.0.1 + + + maven-javadoc-plugin + 2.10.4 + + + org.apache.felix + maven-bundle-plugin + 3.2.0 + + + com.keyboardsamurais.maven + maven-timestamp-plugin + 1.0 + + + year + + create + + + year + yyyy + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + 1.10.b1 + +
${project.basedir}/../header.txt
+ true + + + .gitignore + + target/** + + dependency-reduced-pom.xml + + eclipse_config/** + + website/** + + **/*.bat + + project.properties + lint.xml + gen/** + bin/** + + **/*.txt + + **/*.launch + + **/*.md + + + ${project.inceptionYear} + ${year} + +
+
+ + maven-remote-resources-plugin + 1.5 + + + + process + + + + org.apache:apache-jar-resource-bundle:1.3 + + + + + + + org.codehaus.mojo + exec-maven-plugin + 1.5.0 + + + org.codehaus.mojo + versions-maven-plugin + 2.4 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + true + Naming + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + com.keyboardsamurais.maven + maven-timestamp-plugin + [1.0,) + + create + + + + + + + + + maven-remote-resources-plugin + [1.0,) + + process + + + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + [2.5.5,) + + findbugs + + + + + + + + + + +
+
+
+ + + + maven-project-info-reports-plugin + 2.9 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + maven-pmd-plugin + 3.7 + + 1.5 + + + + + + + + bintray + JFrog Bintray + https://api.bintray.com/maven/easymock/maven/objenesis/;publish=1 + + + + + + + full + + + + maven-source-plugin + + + attach-sources + + jar + + + + + + maven-javadoc-plugin + + + attach-javadocs + + jar + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + + findbugs + + findbugs + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + + + check + + check + + + + + + + + + + license + + + + + com.mycila.maven-license-plugin + maven-license-plugin + + + format + generate-sources + + format + + + + + + + + + + + website + + website + + + + + android + + tck-android + + + + + benchmark + + benchmark + + + + + release + + + + maven-gpg-plugin + + + + + + all + + benchmark + tck-android + gae + website + + + +
diff --git a/artifacts/m2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom.sha1 b/artifacts/m2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom.sha1 new file mode 100644 index 00000000..9343f8cc --- /dev/null +++ b/artifacts/m2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom.sha1 @@ -0,0 +1 @@ +cfc0966402e8174fbacd5c5dd355b5815364a4fe \ No newline at end of file diff --git a/artifacts/m2/org/objenesis/objenesis/2.6/_remote.repositories b/artifacts/m2/org/objenesis/objenesis/2.6/_remote.repositories new file mode 100644 index 00000000..7c0cb9e9 --- /dev/null +++ b/artifacts/m2/org/objenesis/objenesis/2.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:44 CST 2021 +objenesis-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/objenesis/objenesis/2.6/objenesis-2.6.pom b/artifacts/m2/org/objenesis/objenesis/2.6/objenesis-2.6.pom new file mode 100644 index 00000000..6a4f5555 --- /dev/null +++ b/artifacts/m2/org/objenesis/objenesis/2.6/objenesis-2.6.pom @@ -0,0 +1,90 @@ + + + 4.0.0 + + org.objenesis + objenesis-parent + 2.6 + + objenesis + + Objenesis + A library for instantiating Java objects + http://objenesis.org + + + + + maven-jar-plugin + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + com.keyboardsamurais.maven + maven-timestamp-plugin + + + com.mycila.maven-license-plugin + maven-license-plugin + + + maven-remote-resources-plugin + + + org.apache.felix + maven-bundle-plugin + true + + + + COM.newmonics.PercClassloader;resolution:=optional, + sun.misc;resolution:=optional, + sun.reflect;resolution:=optional + + + + + + bundle-manifest + process-classes + + manifest + + + + + + + + + + + release + + + + maven-assembly-plugin + + false + + assembly.xml + + + + + make-assembly + package + + single + + + + + + + + + diff --git a/artifacts/m2/org/objenesis/objenesis/2.6/objenesis-2.6.pom.sha1 b/artifacts/m2/org/objenesis/objenesis/2.6/objenesis-2.6.pom.sha1 new file mode 100644 index 00000000..040df43b --- /dev/null +++ b/artifacts/m2/org/objenesis/objenesis/2.6/objenesis-2.6.pom.sha1 @@ -0,0 +1 @@ +b6d1f689e0d2b2d96b0730fad7b5d96902bf64d8 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/_remote.repositories new file mode 100644 index 00000000..ecd258ea --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:48 CST 2021 +asm-analysis-7.0-beta.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom b/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom new file mode 100644 index 00000000..93222f25 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom @@ -0,0 +1,102 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-analysis + 7.0-beta + asm-analysis + Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm-tree + 7.0-beta + compile + + + org.ow2.asm + asm-test + 7.0-beta + test + + + org.junit.jupiter + junit-jupiter-api + 5.3.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.3.0 + test + + + diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom.sha1 new file mode 100644 index 00000000..e1c6e1cd --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom.sha1 @@ -0,0 +1 @@ +e1f7f45f5059156681587feb25ed5a4ef78174d7 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/_remote.repositories new file mode 100644 index 00000000..a967b0a4 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:49 CST 2021 +asm-commons-7.0-beta.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom b/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom new file mode 100644 index 00000000..08c73c89 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-commons + 7.0-beta + asm-commons + Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 7.0-beta + compile + + + org.ow2.asm + asm-tree + 7.0-beta + compile + + + org.ow2.asm + asm-analysis + 7.0-beta + compile + + + org.ow2.asm + asm-util + 7.0-beta + test + + + org.ow2.asm + asm-test + 7.0-beta + test + + + org.junit.jupiter + junit-jupiter-api + 5.3.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.3.0 + test + + + diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom.sha1 new file mode 100644 index 00000000..fe84f689 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom.sha1 @@ -0,0 +1 @@ +71acae290d71afc421dcf4bfa160689c75f9fc58 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/_remote.repositories new file mode 100644 index 00000000..faae0acf --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:49 CST 2021 +asm-tree-7.0-beta.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom b/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom new file mode 100644 index 00000000..d52b7fb1 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom @@ -0,0 +1,102 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-tree + 7.0-beta + asm-tree + Tree API of ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 7.0-beta + compile + + + org.ow2.asm + asm-test + 7.0-beta + test + + + org.junit.jupiter + junit-jupiter-api + 5.3.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.3.0 + test + + + diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom.sha1 new file mode 100644 index 00000000..7ae51587 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom.sha1 @@ -0,0 +1 @@ +47287a3bd4c56026efba02b94d05ad08cd2d44ad \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/_remote.repositories new file mode 100644 index 00000000..f8299498 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +asm-util-7.0-beta.jar>repo.jenkins-ci.org= +asm-util-7.0-beta.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar new file mode 100644 index 00000000..7e4bf5c4 Binary files /dev/null and b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar differ diff --git a/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar.sha1 new file mode 100644 index 00000000..84c3d3b9 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar.sha1 @@ -0,0 +1 @@ +5442cb58d07f1fce43b41db9eeff2273c2b10203 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom new file mode 100644 index 00000000..b80ec147 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom @@ -0,0 +1,120 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm-util + 7.0-beta + asm-util + Utilities for ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm + 7.0-beta + compile + + + org.ow2.asm + asm-tree + 7.0-beta + compile + + + org.ow2.asm + asm-analysis + 7.0-beta + compile + + + org.codehaus.janino + janino + 3.0.7 + test + + + org.ow2.asm + asm-test + 7.0-beta + test + + + org.junit.jupiter + junit-jupiter-api + 5.3.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.3.0 + test + + + diff --git a/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom.sha1 new file mode 100644 index 00000000..57fbdb65 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom.sha1 @@ -0,0 +1 @@ +735806851ffa04953c873c81aef0f31c43e9c9b0 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/6.2/_remote.repositories b/artifacts/m2/org/ow2/asm/asm/6.2/_remote.repositories new file mode 100644 index 00000000..5b8566df --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/6.2/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:16 CST 2021 +asm-6.2.jar>repo.jenkins-ci.org= +asm-6.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.jar b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.jar new file mode 100644 index 00000000..792142a5 Binary files /dev/null and b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.jar differ diff --git a/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.jar.sha1 b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.jar.sha1 new file mode 100644 index 00000000..3448b3a4 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.jar.sha1 @@ -0,0 +1 @@ +1b6c4ff09ce03f3052429139c2a68e295cae6604 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.pom b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.pom new file mode 100644 index 00000000..ec90618d --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.pom @@ -0,0 +1,96 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm + 6.2 + asm + ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm-test + 6.2 + test + + + org.junit.jupiter + junit-jupiter-api + 5.1.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.1.0 + test + + + diff --git a/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.pom.sha1 b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.pom.sha1 new file mode 100644 index 00000000..13b65bc7 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/6.2/asm-6.2.pom.sha1 @@ -0,0 +1 @@ +c995a570b9984647aa8557f26691f694c93f76af \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/7.0-beta/_remote.repositories b/artifacts/m2/org/ow2/asm/asm/7.0-beta/_remote.repositories new file mode 100644 index 00000000..20804299 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/7.0-beta/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:48 CST 2021 +asm-7.0-beta.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom b/artifacts/m2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom new file mode 100644 index 00000000..5859ad4c --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom @@ -0,0 +1,96 @@ + + + 4.0.0 + + org.ow2 + ow2 + 1.5 + + org.ow2.asm + asm + 7.0-beta + asm + ASM, a very small and fast Java bytecode manipulation framework + http://asm.ow2.org/ + 2000 + + OW2 + http://www.ow2.org/ + + + + BSD + http://asm.ow2.org/license.html + + + + + ebruneton + Eric Bruneton + ebruneton@free.fr + + Creator + Java Developer + + + + eu + Eugene Kuleshov + eu@javatx.org + + Java Developer + + + + forax + Remi Forax + forax@univ-mlv.fr + + Java Developer + + + + + + ASM Users List + https://mail.ow2.org/wws/subscribe/asm + asm@objectweb.org + https://mail.ow2.org/wws/arc/asm/ + + + ASM Team List + https://mail.ow2.org/wws/subscribe/asm-team + asm-team@objectweb.org + https://mail.ow2.org/wws/arc/asm-team/ + + + + scm:git:https://gitlab.ow2.org/asm/asm/ + scm:git:https://gitlab.ow2.org/asm/asm/ + https://gitlab.ow2.org/asm/asm/ + + + https://gitlab.ow2.org/asm/asm/issues + + + + org.ow2.asm + asm-test + 7.0-beta + test + + + org.junit.jupiter + junit-jupiter-api + 5.3.0 + test + + + org.junit.jupiter + junit-jupiter-params + 5.3.0 + test + + + diff --git a/artifacts/m2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom.sha1 b/artifacts/m2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom.sha1 new file mode 100644 index 00000000..2cc560f3 --- /dev/null +++ b/artifacts/m2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom.sha1 @@ -0,0 +1 @@ +bfe73e227cd788e55c031ceaf8f59983b81bf20d \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/_remote.repositories b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/_remote.repositories new file mode 100644 index 00000000..109a267b --- /dev/null +++ b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +jul-to-slf4j-1.7.29.pom>repo.jenkins-ci.org= +jul-to-slf4j-1.7.29.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar new file mode 100644 index 00000000..451f94d0 Binary files /dev/null and b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar differ diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar.sha1 b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar.sha1 new file mode 100644 index 00000000..19895dbc --- /dev/null +++ b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar.sha1 @@ -0,0 +1 @@ +f58dd9d8c15a1141a48de53d2d6b723ae6cf18d6 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom new file mode 100644 index 00000000..a1d2ee73 --- /dev/null +++ b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom @@ -0,0 +1,34 @@ + + + + 4.0.0 + + + org.slf4j + slf4j-parent + 1.7.29 + + + jul-to-slf4j + + jar + JUL to SLF4J bridge + JUL to SLF4J bridge + + http://www.slf4j.org + + + + org.slf4j + slf4j-api + + + org.slf4j + slf4j-log4j12 + ${project.version} + test + + + + diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom.sha1 b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom.sha1 new file mode 100644 index 00000000..561fb619 --- /dev/null +++ b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom.sha1 @@ -0,0 +1 @@ +318949abf5b37acc3e1addf029388673f032ad6e \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.29/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/_remote.repositories new file mode 100644 index 00000000..ffaf9cc7 --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +slf4j-api-1.7.29.jar>repo.jenkins-ci.org= +slf4j-api-1.7.29.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar new file mode 100644 index 00000000..81ed475d Binary files /dev/null and b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar differ diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar.sha1 b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar.sha1 new file mode 100644 index 00000000..5dfb266c --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar.sha1 @@ -0,0 +1 @@ +e56bf4473a4c6b71c7dd397a833dce86d1993d9d \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom new file mode 100644 index 00000000..504a813b --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom @@ -0,0 +1,120 @@ + + + + 4.0.0 + + + org.slf4j + slf4j-parent + 1.7.29 + + + slf4j-api + + jar + SLF4J API Module + The slf4j API + + http://www.slf4j.org + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + + + + org.slf4j.impl.StaticMDCBinder + org.slf4j.impl.StaticLoggerBinder + org.slf4j.impl.StaticMarkerBinder + + + + + org.apache.maven.plugins + maven-surefire-plugin + + once + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + bundle-test-jar + package + + jar + test-jar + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + process-classes + + run + + + + + + Removing slf4j-api's dummy StaticLoggerBinder and StaticMarkerBinder + + + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.apache.maven.plugins + + + maven-antrun-plugin + + [1.3,) + + run + + + + + + + + + + + + + + + diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom.sha1 new file mode 100644 index 00000000..674f1a5c --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom.sha1 @@ -0,0 +1 @@ +f6bb48229ddfeb20486473b19b13fd9b72bbdb23 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/_remote.repositories new file mode 100644 index 00000000..bee0d636 --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:38 CST 2021 +slf4j-parent-1.7.29.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom b/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom new file mode 100644 index 00000000..6b3d0523 --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom @@ -0,0 +1,429 @@ + + + + 4.0.0 + + org.slf4j + slf4j-parent + 1.7.29 + + pom + SLF4J + Top SLF4J project pom.xml file + http://www.slf4j.org + + + QOS.ch + http://www.qos.ch + + 2005 + + + + MIT License + http://www.opensource.org/licenses/mit-license.php + repo + + + + + https://github.com/qos-ch/slf4j + git@github.com:qos-ch/slf4j.git + + + + 1.5 + ${required.jdk.version} + ${required.jdk.version} + UTF-8 + UTF-8 + UTF-8 + + 1.6.0 + 0.8.1 + 1.2.17 + 1.0.13 + 4.12 + 3.3 + 3.0.1 + 3.1.0 + none + + + + + ceki + Ceki Gulcu + ceki@qos.ch + + + + + slf4j-api + slf4j-simple + slf4j-nop + slf4j-jdk14 + slf4j-log4j12 + slf4j-jcl + slf4j-android + slf4j-ext + jcl-over-slf4j + log4j-over-slf4j + jul-to-slf4j + osgi-over-slf4j + integration + slf4j-site + slf4j-migrator + + + + + junit + junit + ${junit.version} + test + + + + + + + + org.slf4j + slf4j-api + ${project.version} + + + + org.slf4j + slf4j-jdk14 + ${project.version} + + + + log4j + log4j + ${log4j.version} + + + + ch.qos.cal10n + cal10n-api + ${cal10n.version} + + + + + + + + + org.apache.maven.wagon + wagon-ssh + 2.0 + + + + + + ${project.basedir}/src/main/resources + true + + + + + + + org.codehaus.mojo + animal-sniffer-maven-plugin + 1.14 + + + org.codehaus.mojo.signature + java15 + 1.0 + + + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.3 + + ${required.jdk.version} + ${required.jdk.version} + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.3.1 + + + + ${parsedVersion.osgiVersion} + ${project.description} + ${maven.compiler.source} + ${maven.compiler.target} + ${project.version} + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + true + + + + + org.apache.maven.plugins + maven-source-plugin + ${maven-source-plugin.version} + + + package + + jar + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.19.1 + + 2C + true + plain + false + + **/AllTest.java + **/PackageTest.java + + + + + + org.apache.maven.plugins + maven-assembly-plugin + 2.2 + + + src/main/assembly/source.xml + + slf4j-${project.version} + false + target/site/dist/ + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.7 + + + parse-version + + parse-version + + + + + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.3 + + true + target/site/apidocs/ + true + + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + true + none + + + org.slf4j.migrator:org.slf4j.migrator.* + + + http://java.sun.com/j2se/1.5.0/docs/api + + + + + SLF4J packages + org.slf4j:org.slf4j.* + + + + SLF4J extensions + + org.slf4j.cal10n:org.slf4j.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent + + + + + Jakarta Commons Logging packages + org.apache.commons.* + + + + java.util.logging (JUL) to SLF4J bridge + org.slf4j.bridge + + + + Apache log4j + org.apache.log4j:org.apache.log4j.* + + + + + + + + + + + + + + + skipTests + + true + + + + + javadocjar + + + + org.apache.maven.plugins + maven-javadoc-plugin + ${javadoc.plugin.version} + + none + + + + attach-javadocs + + jar + + + + + + + + + + license + + + + com.google.code.maven-license-plugin + maven-license-plugin + +
src/main/licenseHeader.txt
+ false + true + true + + src/**/*.java + + true + true + + 1999 + + + src/main/javadocHeaders.xml + +
+
+
+
+ + + + mc-release + Local Maven repository of releases + http://mc-repo.googlecode.com/svn/maven2/releases + + false + + + true + + + +
+ + + sign-artifacts + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + +
+ + + + + + qos_ch + scp://te.qos.ch/var/www/www.slf4j.org/htdocs/ + + + + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + +
diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom.sha1 new file mode 100644 index 00000000..f42850f7 --- /dev/null +++ b/artifacts/m2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom.sha1 @@ -0,0 +1 @@ +4acaf12262157ac5eec6eecdb8d3d069e9951d0a \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/oss/oss-parent/9/_remote.repositories b/artifacts/m2/org/sonatype/oss/oss-parent/9/_remote.repositories new file mode 100644 index 00000000..dc68e8ad --- /dev/null +++ b/artifacts/m2/org/sonatype/oss/oss-parent/9/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:13 CST 2021 +oss-parent-9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom b/artifacts/m2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom new file mode 100644 index 00000000..b50a2623 --- /dev/null +++ b/artifacts/m2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom @@ -0,0 +1,143 @@ + + + 4.0.0 + + org.sonatype.oss + oss-parent + 9 + pom + + Sonatype OSS Parent + http://nexus.sonatype.org/oss-repository-hosting.html + Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ + + + scm:svn:http://svn.sonatype.org/spice/trunk/oss/oss-parenti-9 + scm:svn:https://svn.sonatype.org/spice/trunk/oss/oss-parent-9 + http://svn.sonatype.org/spice/trunk/oss/oss-parent-9 + + + + + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + ${sonatypeOssDistMgmtSnapshotsUrl} + + + sonatype-nexus-staging + Nexus Release Repository + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.2 + + + enforce-maven + + enforce + + + + + (,2.1.0),(2.1.0,2.2.0),(2.2.0,) + Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. + + + + + + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.1 + + forked-path + false + ${arguments} -Psonatype-oss-release + + + + + + + + UTF-8 + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + sonatype-oss-release + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.2 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.7 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.1 + + + sign-artifacts + verify + + sign + + + + + + + + + + diff --git a/artifacts/m2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 b/artifacts/m2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 new file mode 100644 index 00000000..95de2d77 --- /dev/null +++ b/artifacts/m2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom.sha1 @@ -0,0 +1 @@ +3f743315d23368f61e564c64a351849cb6394a51 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/_remote.repositories b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/_remote.repositories new file mode 100644 index 00000000..ffc0b2bc --- /dev/null +++ b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:11 CST 2021 +plexus-build-api-0.0.7.jar>repo.jenkins-ci.org= +plexus-build-api-0.0.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar new file mode 100644 index 00000000..3a01264e Binary files /dev/null and b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar differ diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar.sha1 new file mode 100644 index 00000000..daed1eac --- /dev/null +++ b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar.sha1 @@ -0,0 +1 @@ +e6ba5cd4bfd8de00235af936e7f63eb24ed436e6 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom new file mode 100644 index 00000000..e8546b8e --- /dev/null +++ b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom @@ -0,0 +1,94 @@ + + + + 4.0.0 + + org.sonatype.spice + spice-parent + 15 + + org.sonatype.plexus + plexus-build-api + 0.0.7 + + + + org.codehaus.plexus + plexus-utils + 1.5.8 + + + org.codehaus.plexus + plexus-container-default + 1.0-alpha-9 + provided + + + + + + + src/main/resources + true + + + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.4 + + + + descriptor + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.4 + 1.4 + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.4.2 + + true + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + + + scm:svn:http://svn.sonatype.org/spice/tags/plexus-build-api-0.0.7 + scm:svn:https://svn.sonatype.org/spice/tags/plexus-build-api-0.0.7 + http://svn.sonatype.org/spice/tags/plexus-build-api-0.0.7 + + diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom.sha1 new file mode 100644 index 00000000..333559f5 --- /dev/null +++ b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom.sha1 @@ -0,0 +1 @@ +1e4a1b9e61ff446213473bbd1f3d970c0d1c4d62 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/15/_remote.repositories b/artifacts/m2/org/sonatype/spice/spice-parent/15/_remote.repositories new file mode 100644 index 00000000..ac2e24c1 --- /dev/null +++ b/artifacts/m2/org/sonatype/spice/spice-parent/15/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:09 CST 2021 +spice-parent-15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom b/artifacts/m2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom new file mode 100644 index 00000000..3582bc0c --- /dev/null +++ b/artifacts/m2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom @@ -0,0 +1,260 @@ + + 4.0.0 + + org.sonatype.forge + forge-parent + 5 + + org.sonatype.spice + spice-parent + 15 + pom + Sonatype Spice Components + + + scm:svn:http://svn.sonatype.org/spice/tags/spice-parent-15 + http://svn.sonatype.org/spice/tags/spice-parent-15 + scm:svn:https://svn.sonatype.org/spice/tags/spice-parent-15 + + + + + Apache Public License 2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + Hudson + https://grid.sonatype.org/ci/view/Spice/ + + + + JIRA + https://issues.sonatype.org/browse/SPICE + + + + + 6.1.12 + 1.0-beta-3.0.5 + + + + + + org.codehaus.plexus + plexus-container-default + ${plexus.version} + + + commons-logging + commons-logging + + + commons-logging + commons-logging-api + + + log4j + log4j + + + + + org.codehaus.plexus + plexus-component-annotations + ${plexus.version} + + + org.codehaus.plexus + plexus-utils + 1.5.5 + + + org.mortbay.jetty + jetty + ${jetty.version} + + + org.mortbay.jetty + jetty-client + ${jetty.version} + + + org.mortbay.jetty + jetty-util + ${jetty.version} + + + junit + junit + 4.5 + test + + + + + + + m2e + + + m2e.version + + + + + + org.maven.ide.eclipse + lifecycle-mapping + 0.9.9-SNAPSHOT + + customizable + + + + + + + org.apache.maven.plugins:maven-resources-plugin:: + + + + + + + + + + + + + org.codehaus.plexus + plexus-component-metadata + ${plexus.version} + + + process-classes + + generate-metadata + + + + process-test-classes + + generate-test-metadata + + + + + + org.codehaus.plexus + plexus-maven-plugin + 1.3.8 + + + + descriptor + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.4.2 + + + org.codehaus.modello + modello-maven-plugin + 1.0.2 + + true + + + + org.apache.maven.plugins + maven-resources-plugin + 2.4.1 + + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + 2.3 + + + org.codehaus.mojo + findbugs-maven-plugin + 1.2 + + UnreadFields + + + + maven-jxr-plugin + 2.1 + + + maven-pmd-plugin + 2.4 + + 1.5 + + + + org.apache.maven.plugins + maven-plugin-plugin + 2.5 + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.5 + + + + org.apache.maven.plugin-tools + maven-plugin-tools-javadoc + 2.5 + + + org.codehaus.plexus + plexus-javadoc + 1.0 + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.1.1 + + + + + dependencies + project-team + mailing-list + cim + issue-tracking + license + scm + + + + + + + \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom.sha1 b/artifacts/m2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom.sha1 new file mode 100644 index 00000000..4a2c5c8c --- /dev/null +++ b/artifacts/m2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom.sha1 @@ -0,0 +1 @@ +3cfa1d1f3113a8137fdc7b7a67f310abbed4a22d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..948cf39b --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-autoconfigure-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-autoconfigure-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.jar new file mode 100644 index 00000000..bdfcc2b7 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..bc5b031a --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +e02c91e83f3edd178abeeac9f02ee7f120a86aab \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.pom new file mode 100644 index 00000000..25f5465d --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.pom @@ -0,0 +1,1038 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-parent + 2.1.11.RELEASE + ../spring-boot-parent + + org.springframework.boot + spring-boot-autoconfigure + 2.1.11.RELEASE + Spring Boot AutoConfigure + Spring Boot AutoConfigure + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-autoconfigure + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot + 2.1.11.RELEASE + compile + + + com.atomikos + transactions-jdbc + 4.0.6 + compile + true + + + com.atomikos + transactions-jta + 4.0.6 + compile + true + + + com.couchbase.client + couchbase-spring-cache + 2.1.0 + compile + true + + + com.fasterxml.jackson.core + jackson-databind + 2.9.10.1 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.9.10 + compile + true + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.9.10 + compile + true + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.9.10 + compile + true + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.9.10 + compile + true + + + com.google.code.gson + gson + 2.8.6 + compile + true + + + com.hazelcast + hazelcast + 3.11.5 + compile + true + + + com.hazelcast + hazelcast-client + 3.11.5 + compile + true + + + com.hazelcast + hazelcast-spring + 3.11.5 + compile + true + + + com.h2database + h2 + 1.4.200 + compile + true + + + com.samskivert + jmustache + 1.14 + compile + true + + + com.sun.mail + javax.mail + 1.6.2 + compile + true + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 2.1.2 + compile + true + + + io.lettuce + lettuce-core + 5.1.8.RELEASE + compile + true + + + io.projectreactor.netty + reactor-netty + 0.8.14.RELEASE + compile + true + + + javax.cache + cache-api + 1.1.1 + compile + true + + + javax.json.bind + javax.json.bind-api + 1.0 + compile + true + + + javax.money + money-api + 1.0.3 + compile + true + + + io.searchbox + jest + 6.3.1 + compile + true + + + org.apache.kafka + kafka-streams + 2.0.1 + compile + true + + + org.flywaydb + flyway-core + 5.2.4 + compile + true + + + org.glassfish.jersey.core + jersey-server + 2.27 + compile + true + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 2.27 + compile + true + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.27 + compile + true + + + org.glassfish.jersey.ext + jersey-spring4 + 2.27 + compile + + + bean-validator + org.glassfish.hk2.external + + + hibernate-validator + org.hibernate + + + true + + + org.glassfish.jersey.media + jersey-media-json-jackson + 2.27 + compile + true + + + org.apache.activemq + activemq-broker + 5.15.11 + compile + + + geronimo-jms_1.1_spec + org.apache.geronimo.specs + + + true + + + org.apache.activemq + artemis-jms-client + 2.6.4 + compile + + + geronimo-jms_2.0_spec + org.apache.geronimo.specs + + + true + + + org.apache.activemq + artemis-jms-server + 2.6.4 + compile + + + geronimo-jms_2.0_spec + org.apache.geronimo.specs + + + true + + + org.apache.commons + commons-dbcp2 + 2.5.0 + compile + + + commons-logging + commons-logging + + + true + + + org.apache.solr + solr-solrj + 7.7.2 + compile + + + wstx-asl + org.codehaus.woodstox + + + log4j + log4j + + + true + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.29 + compile + true + + + org.apache.tomcat.embed + tomcat-embed-el + 9.0.29 + compile + true + + + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.29 + compile + true + + + org.apache.tomcat + tomcat-jdbc + 9.0.29 + compile + true + + + org.codehaus.btm + btm + 2.1.4 + compile + true + + + org.codehaus.groovy + groovy-templates + 2.5.8 + compile + true + + + com.sendgrid + sendgrid-java + 4.3.0 + compile + true + + + com.unboundid + unboundid-ldapsdk + 4.0.13 + compile + true + + + com.zaxxer + HikariCP + 3.2.0 + compile + true + + + org.eclipse.jetty + jetty-webapp + 9.4.24.v20191120 + compile + true + + + org.eclipse.jetty + jetty-reactive-httpclient + 1.0.3 + compile + true + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.24.v20191120 + compile + true + + + io.undertow + undertow-servlet + 2.0.28.Final + compile + true + + + io.undertow + undertow-websockets-jsr + 2.0.28.Final + compile + true + + + org.ehcache + ehcache + 3.6.3 + compile + true + + + org.elasticsearch.client + elasticsearch-rest-client + 6.4.3 + compile + + + commons-logging + commons-logging + + + true + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + 6.4.3 + compile + true + + + org.freemarker + freemarker + 2.3.29 + compile + true + + + org.hibernate + hibernate-core + 5.3.14.Final + compile + + + xml-apis + xml-apis + + + true + + + org.hibernate + hibernate-jcache + 5.3.14.Final + compile + true + + + org.hibernate.validator + hibernate-validator + 6.0.18.Final + compile + true + + + org.infinispan + infinispan-jcache + 9.4.16.Final + compile + true + + + org.infinispan + infinispan-spring4-embedded + 9.4.16.Final + compile + true + + + org.jboss + jboss-transaction-spi + 7.6.0.Final + compile + true + + + org.messaginghub + pooled-jms + 1.0.6 + compile + + + geronimo-jms_2.0_spec + org.apache.geronimo.specs + + + true + + + org.mongodb + mongodb-driver-async + 3.8.2 + compile + true + + + org.mongodb + mongodb-driver-reactivestreams + 1.9.2 + compile + true + + + org.springframework + spring-jdbc + 5.1.12.RELEASE + compile + true + + + org.springframework.integration + spring-integration-core + 5.1.9.RELEASE + compile + true + + + org.springframework.integration + spring-integration-jdbc + 5.1.9.RELEASE + compile + true + + + org.springframework.integration + spring-integration-jmx + 5.1.9.RELEASE + compile + true + + + org.springframework + spring-jms + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-orm + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-tx + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-web + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-websocket + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-webflux + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-webmvc + 5.1.12.RELEASE + compile + true + + + org.springframework.batch + spring-batch-core + 4.1.3.RELEASE + compile + true + + + org.springframework.data + spring-data-couchbase + 3.1.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.data + spring-data-jpa + 2.1.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.data + spring-data-rest-webmvc + 3.1.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.data + spring-data-cassandra + 2.1.14.RELEASE + compile + true + + + org.springframework.data + spring-data-jdbc + 1.0.14.RELEASE + compile + true + + + org.springframework.data + spring-data-ldap + 2.1.14.RELEASE + compile + true + + + org.springframework.data + spring-data-mongodb + 2.1.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.data + spring-data-neo4j + 5.1.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.data + spring-data-redis + 2.1.14.RELEASE + compile + true + + + org.springframework.data + spring-data-elasticsearch + 3.1.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.data + spring-data-solr + 4.0.14.RELEASE + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.springframework.hateoas + spring-hateoas + 0.25.2.RELEASE + compile + true + + + redis.clients + jedis + 2.9.3 + compile + true + + + org.liquibase + liquibase-core + 3.6.3 + compile + + + logback-classic + ch.qos.logback + + + true + + + org.springframework.security + spring-security-acl + 5.1.7.RELEASE + compile + true + + + org.springframework.security + spring-security-config + 5.1.7.RELEASE + compile + true + + + org.springframework.security + spring-security-data + 5.1.7.RELEASE + compile + true + + + org.springframework.security + spring-security-oauth2-client + 5.1.7.RELEASE + compile + true + + + org.springframework.security + spring-security-oauth2-jose + 5.1.7.RELEASE + compile + true + + + org.springframework.security + spring-security-oauth2-resource-server + 5.1.7.RELEASE + compile + true + + + org.springframework.security + spring-security-web + 5.1.7.RELEASE + compile + true + + + org.springframework.session + spring-session-core + 2.1.9.RELEASE + compile + true + + + org.springframework.session + spring-session-data-mongodb + 2.1.4.RELEASE + compile + true + + + org.springframework.session + spring-session-data-redis + 2.1.9.RELEASE + compile + true + + + org.springframework.session + spring-session-hazelcast + 2.1.9.RELEASE + compile + true + + + org.springframework.session + spring-session-jdbc + 2.1.9.RELEASE + compile + true + + + org.springframework.amqp + spring-rabbit + 2.1.12.RELEASE + compile + + + http-client + com.rabbitmq + + + true + + + org.springframework.kafka + spring-kafka + 2.2.11.RELEASE + compile + true + + + org.springframework.cloud + spring-cloud-spring-service-connector + 2.0.7.RELEASE + compile + + + log4j + log4j + + + true + + + org.springframework.ws + spring-ws-core + 3.0.8.RELEASE + compile + + + commons-logging + commons-logging + + + true + + + org.thymeleaf + thymeleaf + 3.0.11.RELEASE + compile + true + + + org.thymeleaf + thymeleaf-spring5 + 3.0.11.RELEASE + compile + true + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 2.3.0 + compile + true + + + com.github.ben-manes.caffeine + caffeine + 2.6.2 + compile + true + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + compile + true + + + org.thymeleaf.extras + thymeleaf-extras-java8time + 3.0.4.RELEASE + compile + true + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + 3.0.4.RELEASE + compile + true + + + javax.jms + javax.jms-api + 2.0.1 + compile + true + + + javax.mail + javax.mail-api + 1.6.2 + compile + true + + + net.sf.ehcache + ehcache + 2.10.6 + compile + true + + + org.aspectj + aspectjweaver + 1.9.5 + compile + true + + + org.influxdb + influxdb-java + 2.14 + compile + true + + + org.jooq + jooq + 3.11.12 + compile + true + + + org.quartz-scheduler + quartz + 2.3.2 + compile + + + c3p0 + com.mchange + + + * + com.zaxxer + + + true + + + org.springframework.boot + spring-boot-autoconfigure-processor + 2.1.11.RELEASE + compile + true + + + org.springframework.boot + spring-boot-configuration-processor + 2.1.11.RELEASE + compile + true + + + + + java9+ + + [9,) + + + + org.glassfish.jaxb + jaxb-runtime + true + + + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..d0b8723c --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/2.1.11.RELEASE/spring-boot-autoconfigure-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +0569d1afc3bdf328a5d1685b06573a078da3d4b5 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..c04029a6 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:12 CST 2021 +spring-boot-dependencies-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/spring-boot-dependencies-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/spring-boot-dependencies-2.1.11.RELEASE.pom new file mode 100644 index 00000000..8528f1ee --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/spring-boot-dependencies-2.1.11.RELEASE.pom @@ -0,0 +1,3250 @@ + + 4.0.0 + org.springframework.boot + spring-boot-dependencies + 2.1.11.RELEASE + pom + Spring Boot Dependencies + Spring Boot Dependencies + https://projects.spring.io/spring-boot/# + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + https://github.com/spring-projects/spring-boot + + + 5.15.11 + 2.7.7 + 1.9.77 + 2.6.4 + 1.9.5 + 3.11.1 + 4.0.6 + 2.1.4 + 3.0.0 + 1.9.16 + 2.6.2 + 3.6.0 + 1.4.0 + 1.11 + 2.5.0 + 3.8.1 + 1.6 + 2.6.2 + 2.1.0 + 2.7.11 + 1.0.8.RELEASE + 10.14.2.0 + 1.6.1 + 4.0.7 + 2.10.6 + 3.6.3 + 6.4.3 + 2.1.2 + 1.6.0 + 1.0.1 + 5.2.4 + 2.3.29 + 2.2.6 + 3.0.0 + 2.3.1 + 2.5.8 + 2.8.6 + 1.4.200 + 1.3 + 3.11.5 + 1.2.3 + 5.3.14.Final + 6.0.18.Final + 3.2.0 + 2.4.1 + 2.33 + 4.1.4 + 4.5.10 + 4.4.12 + 9.4.16.Final + 2.14 + 2.9.10.20191020 + ${jackson.version} + 3.0.15 + 1.2.0 + 1.3.2 + 1.1.1 + 2.3.1 + 2.3.1 + 2.0.1 + 1.1.4 + 1.0 + 1.6.2 + 1.0.3 + 2.2 + 1.3 + 2.0.1.Final + 1.1 + 1.1.6 + 3.0.8 + 3.3.3.Final + 7.6.0.Final + 2.0.6 + 2.9.3 + 2.27 + 6.3.1 + 9.4.24.v20191120 + 8.5.49 + 2.2.0.v201112011158 + 1.0.3 + 1.14 + 4.5.2 + 2.10.5 + ${johnzon-jsonb.version} + 1.1.13 + 1.6.2 + 3.11.12 + 1.5.0 + 2.4.0 + 1.2 + 1.3.1 + 4.12 + 5.3.2 + 2.0.1 + 1.2.71 + 5.1.8.RELEASE + 3.6.3 + 2.11.2 + 1.2.3 + 1.18.10 + 2.3.0 + 1.8 + 3.1.1 + 3.1.0 + 3.8.1 + 3.1.1 + 2.8.2 + 3.0.0-M3 + 2.22.2 + 3.1.1 + 2.5.2 + 3.1.0 + 3.1.2 + 3.0.1 + 3.1.0 + 3.2.1 + 3.7.1 + 3.0.1 + 2.22.2 + 3.2.3 + 1.1.9 + 1.9.12 + 2.23.4 + 3.8.2 + 1.9.2 + 6.4.0.jre8 + 8.0.18 + 1.9.22 + 3.1.15 + 4.1.43.Final + 2.0.28.Final + 1.1.0 + 1.0.6 + 42.2.8 + 0.5.0 + 2.3.2 + 4.2.2 + 5.4.3 + 1.0.3 + Californium-SR14 + 3.1.1 + 1.3.8 + 2.2.15 + 1.2.1 + 1.5.0 + 3.14.0 + 2.33.0 + 4.3.0 + 4.0.1 + 1.7.29 + 1.23 + 7.7.2 + 5.1.12.RELEASE + 2.1.12.RELEASE + 4.1.3.RELEASE + 2.0.7.RELEASE + Lovelace-SR14 + ${spring.version} + 0.25.2.RELEASE + 5.1.9.RELEASE + 2.2.11.RELEASE + 2.3.2.RELEASE + 1.2.0.RELEASE + 2.0.4.RELEASE + 1.2.4.RELEASE + 5.1.7.RELEASE + Bean-SR8 + 3.0.8.RELEASE + 3.25.2 + 3.1.0 + ${javax-mail.version} + 3.0.11.RELEASE + 2.0.1 + 3.0.4.RELEASE + 3.0.4.RELEASE + 2.3.0 + 9.0.29 + 4.0.13 + 2.0.28.Final + 2.7 + 3325375 + 0.35 + 5.0.3 + 1.6.3 + 1.4.01 + 1.0.2 + 2.6.3 + + + + + org.springframework.boot + spring-boot + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-test + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-test-autoconfigure + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-actuator + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-autoconfigure + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-autoconfigure-processor + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-configuration-metadata + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-configuration-processor + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-devtools + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-loader + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-loader-tools + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-properties-migrator + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-activemq + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-actuator + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-amqp + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-aop + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-artemis + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-batch + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-cache + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-cloud-connectors + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-cassandra + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-couchbase + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-jdbc + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-jpa + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-ldap + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-mongodb + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-redis + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-neo4j + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-rest + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-data-solr + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-freemarker + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-groovy-templates + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-hateoas + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-integration + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-jdbc + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-jersey + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-jetty + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-jooq + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-json + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-jta-atomikos + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-jta-bitronix + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-log4j2 + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-logging + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-mail + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-mustache + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-oauth2-client + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-reactor-netty + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-quartz + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-security + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-test + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-thymeleaf + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-tomcat + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-undertow + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-validation + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-web + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-webflux + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-websocket + 2.1.11.RELEASE + + + org.springframework.boot + spring-boot-starter-web-services + 2.1.11.RELEASE + + + antlr + antlr + ${antlr2.version} + + + ch.qos.logback + logback-access + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + + + ch.qos.logback + logback-core + ${logback.version} + + + com.atomikos + transactions-jdbc + ${atomikos.version} + + + com.atomikos + transactions-jms + ${atomikos.version} + + + com.atomikos + transactions-jta + ${atomikos.version} + + + com.couchbase.client + java-client + ${couchbase-client.version} + + + com.couchbase.client + couchbase-spring-cache + ${couchbase-cache-client.version} + + + com.datastax.cassandra + cassandra-driver-core + ${cassandra-driver.version} + + + com.datastax.cassandra + cassandra-driver-mapping + ${cassandra-driver.version} + + + com.fasterxml + classmate + ${classmate.version} + + + com.fasterxml.jackson + jackson-bom + ${jackson-bom.version} + pom + import + + + com.fasterxml.woodstox + woodstox-core + ${woodstox.version} + + + com.github.ben-manes.caffeine + caffeine + ${caffeine.version} + + + com.github.ben-manes.caffeine + guava + ${caffeine.version} + + + com.github.ben-manes.caffeine + jcache + ${caffeine.version} + + + com.github.ben-manes.caffeine + simulator + ${caffeine.version} + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + ${thymeleaf-extras-data-attribute.version} + + + com.google.appengine + appengine-api-1.0-sdk + ${appengine-sdk.version} + + + com.google.code.gson + gson + ${gson.version} + + + com.h2database + h2 + ${h2.version} + + + com.hazelcast + hazelcast + ${hazelcast.version} + + + com.hazelcast + hazelcast-client + ${hazelcast.version} + + + com.hazelcast + hazelcast-hibernate52 + ${hazelcast-hibernate5.version} + + + com.hazelcast + hazelcast-spring + ${hazelcast.version} + + + com.jayway.jsonpath + json-path + ${json-path.version} + + + com.jayway.jsonpath + json-path-assert + ${json-path.version} + + + com.microsoft.sqlserver + mssql-jdbc + ${mssql-jdbc.version} + + + com.querydsl + querydsl-apt + ${querydsl.version} + + + com.querydsl + querydsl-collections + ${querydsl.version} + + + com.querydsl + querydsl-core + ${querydsl.version} + + + com.querydsl + querydsl-jpa + ${querydsl.version} + + + com.querydsl + querydsl-mongodb + ${querydsl.version} + + + mongo-java-driver + org.mongodb + + + + + com.rabbitmq + amqp-client + ${rabbit-amqp-client.version} + + + com.samskivert + jmustache + ${jmustache.version} + + + com.sendgrid + sendgrid-java + ${sendgrid.version} + + + com.sun.activation + javax.activation + ${javax-activation.version} + + + com.sun.mail + javax.mail + ${sun-mail.version} + + + com.sun.xml.messaging.saaj + saaj-impl + ${saaj-impl.version} + + + com.timgroup + java-statsd-client + ${statsd-client.version} + + + com.unboundid + unboundid-ldapsdk + ${unboundid-ldapsdk.version} + + + com.zaxxer + HikariCP + ${hikaricp.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + commons-pool + commons-pool + ${commons-pool.version} + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + ${embedded-mongo.version} + + + dom4j + dom4j + ${dom4j.version} + + + io.dropwizard.metrics + metrics-annotation + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-core + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-ehcache + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-graphite + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-healthchecks + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-httpasyncclient + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-jdbi + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-jersey2 + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-jetty9 + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-jmx + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-json + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-jvm + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-log4j2 + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-logback + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-servlet + ${dropwizard-metrics.version} + + + io.dropwizard.metrics + metrics-servlets + ${dropwizard-metrics.version} + + + io.lettuce + lettuce-core + ${lettuce.version} + + + io.micrometer + micrometer-core + ${micrometer.version} + + + io.micrometer + micrometer-jersey2 + ${micrometer.version} + + + io.micrometer + micrometer-registry-appoptics + ${micrometer.version} + + + io.micrometer + micrometer-registry-atlas + ${micrometer.version} + + + io.micrometer + micrometer-registry-azure-monitor + ${micrometer.version} + + + io.micrometer + micrometer-registry-cloudwatch + ${micrometer.version} + + + io.micrometer + micrometer-registry-datadog + ${micrometer.version} + + + io.micrometer + micrometer-registry-dynatrace + ${micrometer.version} + + + io.micrometer + micrometer-registry-elastic + ${micrometer.version} + + + io.micrometer + micrometer-registry-ganglia + ${micrometer.version} + + + io.micrometer + micrometer-registry-graphite + ${micrometer.version} + + + io.micrometer + micrometer-registry-humio + ${micrometer.version} + + + io.micrometer + micrometer-registry-influx + ${micrometer.version} + + + io.micrometer + micrometer-registry-jmx + ${micrometer.version} + + + io.micrometer + micrometer-registry-kairos + ${micrometer.version} + + + io.micrometer + micrometer-registry-new-relic + ${micrometer.version} + + + io.micrometer + micrometer-registry-prometheus + ${micrometer.version} + + + io.micrometer + micrometer-registry-signalfx + ${micrometer.version} + + + io.micrometer + micrometer-registry-stackdriver + ${micrometer.version} + + + io.micrometer + micrometer-registry-statsd + ${micrometer.version} + + + io.micrometer + micrometer-registry-wavefront + ${micrometer.version} + + + io.micrometer + micrometer-test + ${micrometer.version} + + + io.netty + netty-bom + ${netty.version} + pom + import + + + io.netty + netty-tcnative-boringssl-static + ${netty-tcnative.version} + + + io.projectreactor + reactor-bom + ${reactor-bom.version} + pom + import + + + io.prometheus + simpleclient_pushgateway + ${prometheus-pushgateway.version} + + + io.reactivex + rxjava + ${rxjava.version} + + + io.reactivex + rxjava-reactive-streams + ${rxjava-adapter.version} + + + io.reactivex.rxjava2 + rxjava + ${rxjava2.version} + + + io.rest-assured + json-path + ${rest-assured.version} + + + io.rest-assured + json-schema-validator + ${rest-assured.version} + + + io.rest-assured + rest-assured + ${rest-assured.version} + + + io.rest-assured + scala-support + ${rest-assured.version} + + + io.rest-assured + spring-mock-mvc + ${rest-assured.version} + + + io.rest-assured + xml-path + ${rest-assured.version} + + + io.searchbox + jest + ${jest.version} + + + io.spring.gradle + dependency-management-plugin + ${dependency-management-plugin.version} + + + io.undertow + undertow-core + ${undertow.version} + + + io.undertow + undertow-servlet + ${undertow.version} + + + io.undertow + undertow-websockets-jsr + ${undertow.version} + + + javax.activation + javax.activation-api + ${javax-activation.version} + + + javax.annotation + javax.annotation-api + ${javax-annotation.version} + + + javax.cache + cache-api + ${javax-cache.version} + + + javax.jms + javax.jms-api + ${javax-jms.version} + + + javax.json + javax.json-api + ${javax-json.version} + + + javax.json.bind + javax.json.bind-api + ${javax-jsonb.version} + + + javax.mail + javax.mail-api + ${javax-mail.version} + + + javax.money + money-api + ${javax-money.version} + + + javax.persistence + javax.persistence-api + ${javax-persistence.version} + + + javax.servlet + javax.servlet-api + ${servlet-api.version} + + + javax.servlet + jstl + ${jstl.version} + + + javax.transaction + javax.transaction-api + ${javax-transaction.version} + + + javax.validation + validation-api + ${javax-validation.version} + + + javax.websocket + javax.websocket-api + ${javax-websocket.version} + + + javax.xml.bind + jaxb-api + ${javax-jaxb.version} + + + javax.xml.ws + jaxws-api + ${javax-jaxws.version} + + + jaxen + jaxen + ${jaxen.version} + + + joda-time + joda-time + ${joda-time.version} + + + junit + junit + ${junit.version} + + + mysql + mysql-connector-java + ${mysql.version} + + + protobuf-java + com.google.protobuf + + + + + net.bytebuddy + byte-buddy + ${byte-buddy.version} + + + net.bytebuddy + byte-buddy-agent + ${byte-buddy.version} + + + net.java.dev.jna + jna + ${jna.version} + + + net.java.dev.jna + jna-platform + ${jna.version} + + + net.sf.ehcache + ehcache + ${ehcache.version} + + + net.sourceforge.htmlunit + htmlunit + ${htmlunit.version} + + + commons-logging + commons-logging + + + + + net.sourceforge.jtds + jtds + ${jtds.version} + + + net.sourceforge.nekohtml + nekohtml + ${nekohtml.version} + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + ${thymeleaf-layout-dialect.version} + + + org.apache.activemq + activemq-amqp + ${activemq.version} + + + org.apache.activemq + activemq-blueprint + ${activemq.version} + + + org.apache.activemq + activemq-broker + ${activemq.version} + + + org.apache.activemq + activemq-camel + ${activemq.version} + + + org.apache.activemq + activemq-client + ${activemq.version} + + + org.apache.activemq + activemq-console + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + ${activemq.version} + + + org.apache.activemq + activemq-jaas + ${activemq.version} + + + org.apache.activemq + activemq-jdbc-store + ${activemq.version} + + + org.apache.activemq + activemq-jms-pool + ${activemq.version} + + + org.apache.activemq + activemq-kahadb-store + ${activemq.version} + + + org.apache.activemq + activemq-karaf + ${activemq.version} + + + org.apache.activemq + activemq-leveldb-store + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-log4j-appender + ${activemq.version} + + + org.apache.activemq + activemq-mqtt + ${activemq.version} + + + org.apache.activemq + activemq-openwire-generator + ${activemq.version} + + + org.apache.activemq + activemq-openwire-legacy + ${activemq.version} + + + org.apache.activemq + activemq-osgi + ${activemq.version} + + + org.apache.activemq + activemq-partition + ${activemq.version} + + + org.apache.activemq + activemq-pool + ${activemq.version} + + + org.apache.activemq + activemq-ra + ${activemq.version} + + + org.apache.activemq + activemq-run + ${activemq.version} + + + org.apache.activemq + activemq-runtime-config + ${activemq.version} + + + org.apache.activemq + activemq-shiro + ${activemq.version} + + + org.apache.activemq + activemq-spring + ${activemq.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + ${activemq.version} + + + org.apache.activemq + activemq-web + ${activemq.version} + + + org.apache.activemq + artemis-amqp-protocol + ${artemis.version} + + + org.apache.activemq + artemis-commons + ${artemis.version} + + + commons-logging + commons-logging + + + + + org.apache.activemq + artemis-core-client + ${artemis.version} + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-client + ${artemis.version} + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-server + ${artemis.version} + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-journal + ${artemis.version} + + + org.apache.activemq + artemis-native + ${artemis.version} + + + org.apache.activemq + artemis-selector + ${artemis.version} + + + org.apache.activemq + artemis-server + ${artemis.version} + + + commons-logging + commons-logging + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-service-extensions + ${artemis.version} + + + org.apache.commons + commons-dbcp2 + ${commons-dbcp2.version} + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + ${commons-lang3.version} + + + org.apache.commons + commons-pool2 + ${commons-pool2.version} + + + org.apache.derby + derby + ${derby.version} + + + org.apache.httpcomponents + httpasyncclient + ${httpasyncclient.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + fluent-hc + ${httpclient.version} + + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpclient-cache + ${httpclient.version} + + + org.apache.httpcomponents + httpclient-osgi + ${httpclient.version} + + + org.apache.httpcomponents + httpclient-win + ${httpclient.version} + + + org.apache.httpcomponents + httpcore + ${httpcore.version} + + + org.apache.httpcomponents + httpcore-nio + ${httpcore.version} + + + org.apache.httpcomponents + httpmime + ${httpclient.version} + + + org.apache.johnzon + johnzon-core + ${johnzon.version} + + + org.apache.johnzon + johnzon-jaxrs + ${johnzon.version} + + + org.apache.johnzon + johnzon-jsonb + ${johnzon.version} + + + org.apache.johnzon + johnzon-jsonb-extras + ${johnzon.version} + + + org.apache.johnzon + johnzon-jsonschema + ${johnzon.version} + + + org.apache.johnzon + johnzon-mapper + ${johnzon.version} + + + org.apache.johnzon + johnzon-websocket + ${johnzon.version} + + + org.apache.kafka + connect-api + ${kafka.version} + + + org.apache.kafka + connect-basic-auth-extension + ${kafka.version} + + + org.apache.kafka + connect-file + ${kafka.version} + + + org.apache.kafka + connect-json + ${kafka.version} + + + org.apache.kafka + connect-runtime + ${kafka.version} + + + org.apache.kafka + connect-transforms + ${kafka.version} + + + org.apache.kafka + kafka-clients + ${kafka.version} + + + org.apache.kafka + kafka-log4j-appender + ${kafka.version} + + + org.apache.kafka + kafka-streams + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.11 + ${kafka.version} + + + org.apache.kafka + kafka-streams-scala_2.12 + ${kafka.version} + + + org.apache.kafka + kafka-streams-test-utils + ${kafka.version} + + + org.apache.kafka + kafka-tools + ${kafka.version} + + + org.apache.kafka + kafka_2.11 + ${kafka.version} + + + org.apache.kafka + kafka_2.12 + ${kafka.version} + + + org.apache.logging.log4j + log4j-bom + ${log4j2.version} + pom + import + + + org.apache.logging.log4j + log4j-to-slf4j + ${log4j2.version} + + + org.apache.solr + solr-analysis-extras + ${solr.version} + + + org.apache.solr + solr-analytics + ${solr.version} + + + org.apache.solr + solr-cell + ${solr.version} + + + org.apache.solr + solr-clustering + ${solr.version} + + + org.apache.solr + solr-core + ${solr.version} + + + org.apache.solr + solr-dataimporthandler + ${solr.version} + + + org.apache.solr + solr-dataimporthandler-extras + ${solr.version} + + + org.apache.solr + solr-langid + ${solr.version} + + + org.apache.solr + solr-ltr + ${solr.version} + + + org.apache.solr + solr-solrj + ${solr.version} + + + org.apache.solr + solr-test-framework + ${solr.version} + + + org.apache.solr + solr-velocity + ${solr.version} + + + org.apache.tomcat + tomcat-annotations-api + ${tomcat.version} + + + org.apache.tomcat + tomcat-jdbc + ${tomcat.version} + + + org.apache.tomcat + tomcat-jsp-api + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-core + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-el + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-jasper + ${tomcat.version} + + + org.apache.tomcat.embed + tomcat-embed-websocket + ${tomcat.version} + + + org.aspectj + aspectjrt + ${aspectj.version} + + + org.aspectj + aspectjtools + ${aspectj.version} + + + org.aspectj + aspectjweaver + ${aspectj.version} + + + org.assertj + assertj-core + ${assertj.version} + + + org.codehaus.btm + btm + ${bitronix.version} + + + org.codehaus.groovy + groovy + ${groovy.version} + + + org.codehaus.groovy + groovy-ant + ${groovy.version} + + + org.codehaus.groovy + groovy-backports-compat23 + ${groovy.version} + + + org.codehaus.groovy + groovy-bsf + ${groovy.version} + + + org.codehaus.groovy + groovy-cli-commons + ${groovy.version} + + + org.codehaus.groovy + groovy-cli-picocli + ${groovy.version} + + + org.codehaus.groovy + groovy-console + ${groovy.version} + + + org.codehaus.groovy + groovy-datetime + ${groovy.version} + + + org.codehaus.groovy + groovy-dateutil + ${groovy.version} + + + org.codehaus.groovy + groovy-docgenerator + ${groovy.version} + + + org.codehaus.groovy + groovy-groovydoc + ${groovy.version} + + + org.codehaus.groovy + groovy-groovysh + ${groovy.version} + + + org.codehaus.groovy + groovy-jaxb + ${groovy.version} + + + org.codehaus.groovy + groovy-jmx + ${groovy.version} + + + org.codehaus.groovy + groovy-json + ${groovy.version} + + + org.codehaus.groovy + groovy-json-direct + ${groovy.version} + + + org.codehaus.groovy + groovy-jsr223 + ${groovy.version} + + + org.codehaus.groovy + groovy-macro + ${groovy.version} + + + org.codehaus.groovy + groovy-nio + ${groovy.version} + + + org.codehaus.groovy + groovy-servlet + ${groovy.version} + + + org.codehaus.groovy + groovy-sql + ${groovy.version} + + + org.codehaus.groovy + groovy-swing + ${groovy.version} + + + org.codehaus.groovy + groovy-templates + ${groovy.version} + + + org.codehaus.groovy + groovy-test + ${groovy.version} + + + org.codehaus.groovy + groovy-test-junit5 + ${groovy.version} + + + org.codehaus.groovy + groovy-testng + ${groovy.version} + + + org.codehaus.groovy + groovy-xml + ${groovy.version} + + + org.codehaus.janino + commons-compiler + ${janino.version} + + + org.codehaus.janino + commons-compiler-jdk + ${janino.version} + + + org.codehaus.janino + janino + ${janino.version} + + + org.eclipse.jetty + jetty-bom + ${jetty.version} + pom + import + + + org.eclipse.jetty + jetty-reactive-httpclient + ${jetty-reactive-httpclient.version} + + + org.eclipse.jetty.orbit + javax.servlet.jsp + ${jetty-jsp.version} + + + org.ehcache + ehcache + ${ehcache3.version} + + + org.ehcache + ehcache-clustered + ${ehcache3.version} + + + org.ehcache + ehcache-transactions + ${ehcache3.version} + + + org.elasticsearch + elasticsearch + ${elasticsearch.version} + + + org.elasticsearch.client + transport + ${elasticsearch.version} + + + org.elasticsearch.distribution.integ-test-zip + elasticsearch + ${elasticsearch.version} + zip + + + org.elasticsearch.plugin + transport-netty4-client + ${elasticsearch.version} + + + org.elasticsearch.client + elasticsearch-rest-client + ${elasticsearch.version} + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + ${elasticsearch.version} + + + org.firebirdsql.jdbc + jaybird-jdk17 + ${jaybird.version} + + + org.firebirdsql.jdbc + jaybird-jdk18 + ${jaybird.version} + + + org.flywaydb + flyway-core + ${flyway.version} + + + org.freemarker + freemarker + ${freemarker.version} + + + org.glassfish + javax.el + ${glassfish-el.version} + + + org.glassfish.jaxb + codemodel + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + codemodel-annotation-compiler + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + jaxb-jxc + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + jaxb-runtime + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + jaxb-xjc + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + txw2 + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + txwc2 + ${glassfish-jaxb.version} + + + org.glassfish.jaxb + xsom + ${glassfish-jaxb.version} + + + org.glassfish.jersey + jersey-bom + ${jersey.version} + pom + import + + + org.hamcrest + hamcrest-core + ${hamcrest.version} + + + org.hamcrest + hamcrest-library + ${hamcrest.version} + + + org.hibernate + hibernate-c3p0 + ${hibernate.version} + + + org.hibernate + hibernate-core + ${hibernate.version} + + + xml-apis + xml-apis + + + + + org.hibernate + hibernate-ehcache + ${hibernate.version} + + + org.hibernate + hibernate-entitymanager + ${hibernate.version} + + + xml-apis + xml-apis + + + + + org.hibernate + hibernate-envers + ${hibernate.version} + + + org.hibernate + hibernate-hikaricp + ${hibernate.version} + + + org.hibernate + hibernate-java8 + ${hibernate.version} + + + org.hibernate + hibernate-jcache + ${hibernate.version} + + + org.hibernate + hibernate-jpamodelgen + ${hibernate.version} + + + org.hibernate + hibernate-proxool + ${hibernate.version} + + + org.hibernate + hibernate-spatial + ${hibernate.version} + + + org.hibernate + hibernate-testing + ${hibernate.version} + + + org.hibernate + hibernate-vibur + ${hibernate.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + + + org.hibernate.validator + hibernate-validator-annotation-processor + ${hibernate-validator.version} + + + org.hsqldb + hsqldb + ${hsqldb.version} + + + org.infinispan + infinispan-cachestore-jdbc + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-jpa + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-leveldb + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-remote + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-rest + ${infinispan.version} + + + org.infinispan + infinispan-cachestore-rocksdb + ${infinispan.version} + + + org.infinispan + infinispan-cdi-common + ${infinispan.version} + + + org.infinispan + infinispan-cdi-embedded + ${infinispan.version} + + + org.infinispan + infinispan-cdi-remote + ${infinispan.version} + + + org.infinispan + infinispan-client-hotrod + ${infinispan.version} + + + org.infinispan + infinispan-cloud + ${infinispan.version} + + + org.infinispan + infinispan-clustered-counter + ${infinispan.version} + + + org.infinispan + infinispan-clustered-lock + ${infinispan.version} + + + org.infinispan + infinispan-commons + ${infinispan.version} + + + org.infinispan + infinispan-core + ${infinispan.version} + + + org.infinispan + infinispan-directory-provider + ${infinispan.version} + + + org.infinispan + infinispan-hibernate-cache-v53 + ${infinispan.version} + + + org.infinispan + infinispan-jcache + ${infinispan.version} + + + org.infinispan + infinispan-jcache-commons + ${infinispan.version} + + + org.infinispan + infinispan-jcache-remote + ${infinispan.version} + + + org.infinispan + infinispan-lucene-directory + ${infinispan.version} + + + org.infinispan + infinispan-objectfilter + ${infinispan.version} + + + org.infinispan + infinispan-osgi + ${infinispan.version} + + + org.infinispan + infinispan-persistence-cli + ${infinispan.version} + + + org.infinispan + infinispan-persistence-soft-index + ${infinispan.version} + + + org.infinispan + infinispan-query + ${infinispan.version} + + + org.infinispan + infinispan-query-dsl + ${infinispan.version} + + + org.infinispan + infinispan-remote-query-client + ${infinispan.version} + + + org.infinispan + infinispan-remote-query-server + ${infinispan.version} + + + org.infinispan + infinispan-scripting + ${infinispan.version} + + + org.infinispan + infinispan-server-core + ${infinispan.version} + + + org.infinispan + infinispan-server-hotrod + ${infinispan.version} + + + org.infinispan + infinispan-server-memcached + ${infinispan.version} + + + org.infinispan + infinispan-server-router + ${infinispan.version} + + + org.infinispan + infinispan-spring4-common + ${infinispan.version} + + + org.infinispan + infinispan-spring4-embedded + ${infinispan.version} + + + org.infinispan + infinispan-spring4-remote + ${infinispan.version} + + + org.infinispan + infinispan-spring5-common + ${infinispan.version} + + + org.infinispan + infinispan-spring5-embedded + ${infinispan.version} + + + org.infinispan + infinispan-spring5-remote + ${infinispan.version} + + + org.infinispan + infinispan-tasks + ${infinispan.version} + + + org.infinispan + infinispan-tasks-api + ${infinispan.version} + + + org.infinispan + infinispan-tools + ${infinispan.version} + + + org.infinispan + infinispan-tree + ${infinispan.version} + + + org.influxdb + influxdb-java + ${influxdb-java.version} + + + org.jboss + jboss-transaction-spi + ${jboss-transaction-spi.version} + + + org.jboss.logging + jboss-logging + ${jboss-logging.version} + + + org.jdom + jdom2 + ${jdom2.version} + + + org.jetbrains.kotlin + kotlin-reflect + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-runtime + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-stdlib + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-stdlib-jre7 + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-stdlib-jre8 + ${kotlin.version} + + + org.jolokia + jolokia-core + ${jolokia.version} + + + org.jooq + jooq + ${jooq.version} + + + org.jooq + jooq-meta + ${jooq.version} + + + org.jooq + jooq-codegen + ${jooq.version} + + + org.junit + junit-bom + ${junit-jupiter.version} + pom + import + + + org.jvnet.mimepull + mimepull + ${mimepull.version} + + + org.liquibase + liquibase-core + ${liquibase.version} + + + logback-classic + ch.qos.logback + + + + + org.mariadb.jdbc + mariadb-java-client + ${mariadb.version} + + + org.messaginghub + pooled-jms + ${pooled-jms.version} + + + org.mockito + mockito-core + ${mockito.version} + + + org.mockito + mockito-inline + ${mockito.version} + + + org.mockito + mockito-junit-jupiter + ${mockito.version} + + + org.mongodb + bson + ${mongodb.version} + + + org.mongodb + mongodb-driver + ${mongodb.version} + + + org.mongodb + mongodb-driver-async + ${mongodb.version} + + + org.mongodb + mongodb-driver-core + ${mongodb.version} + + + org.mongodb + mongodb-driver-reactivestreams + ${mongo-driver-reactivestreams.version} + + + org.mongodb + mongo-java-driver + ${mongodb.version} + + + org.mortbay.jasper + apache-el + ${jetty-el.version} + + + org.neo4j + neo4j-ogm-api + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-bolt-driver + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-core + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-embedded-driver + ${neo4j-ogm.version} + + + org.neo4j + neo4j-ogm-http-driver + ${neo4j-ogm.version} + + + org.postgresql + postgresql + ${postgresql.version} + + + org.projectlombok + lombok + ${lombok.version} + + + org.quartz-scheduler + quartz + ${quartz.version} + + + c3p0 + com.mchange + + + * + com.zaxxer + + + + + org.quartz-scheduler + quartz-jobs + ${quartz.version} + + + org.reactivestreams + reactive-streams + ${reactive-streams.version} + + + org.seleniumhq.selenium + htmlunit-driver + ${selenium-htmlunit.version} + + + org.seleniumhq.selenium + selenium-api + ${selenium.version} + + + org.seleniumhq.selenium + selenium-chrome-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-edge-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-firefox-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-ie-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-java + ${selenium.version} + + + org.seleniumhq.selenium + selenium-opera-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-remote-driver + ${selenium.version} + + + commons-logging + commons-logging + + + + + org.seleniumhq.selenium + selenium-safari-driver + ${selenium.version} + + + org.seleniumhq.selenium + selenium-support + ${selenium.version} + + + commons-logging + commons-logging + + + + + org.skyscreamer + jsonassert + ${jsonassert.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + + + org.slf4j + jul-to-slf4j + ${slf4j.version} + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + slf4j-ext + ${slf4j.version} + + + org.slf4j + slf4j-jcl + ${slf4j.version} + + + org.slf4j + slf4j-jdk14 + ${slf4j.version} + + + org.slf4j + slf4j-log4j12 + ${slf4j.version} + + + org.slf4j + slf4j-nop + ${slf4j.version} + + + org.slf4j + slf4j-simple + ${slf4j.version} + + + org.springframework + spring-core + ${spring-framework.version} + + + org.springframework + spring-framework-bom + ${spring-framework.version} + pom + import + + + org.springframework.amqp + spring-amqp + ${spring-amqp.version} + + + org.springframework.amqp + spring-rabbit + ${spring-amqp.version} + + + http-client + com.rabbitmq + + + + + org.springframework.amqp + spring-rabbit-junit + ${spring-amqp.version} + + + org.springframework.amqp + spring-rabbit-test + ${spring-amqp.version} + + + org.springframework.batch + spring-batch-core + ${spring-batch.version} + + + org.springframework.batch + spring-batch-infrastructure + ${spring-batch.version} + + + org.springframework.batch + spring-batch-integration + ${spring-batch.version} + + + org.springframework.batch + spring-batch-test + ${spring-batch.version} + + + org.springframework.cloud + spring-cloud-cloudfoundry-connector + ${spring-cloud-connectors.version} + + + org.springframework.cloud + spring-cloud-connectors-core + ${spring-cloud-connectors.version} + + + org.springframework.cloud + spring-cloud-heroku-connector + ${spring-cloud-connectors.version} + + + org.springframework.cloud + spring-cloud-localconfig-connector + ${spring-cloud-connectors.version} + + + org.springframework.cloud + spring-cloud-spring-service-connector + ${spring-cloud-connectors.version} + + + log4j + log4j + + + + + org.springframework.data + spring-data-releasetrain + ${spring-data-releasetrain.version} + pom + import + + + org.springframework.hateoas + spring-hateoas + ${spring-hateoas.version} + + + org.springframework.integration + spring-integration-bom + ${spring-integration.version} + pom + import + + + org.springframework.integration + spring-integration-http + ${spring-integration.version} + + + commons-logging + commons-logging + + + commons-logging-api + commons-logging + + + + + org.springframework.kafka + spring-kafka + ${spring-kafka.version} + + + org.springframework.kafka + spring-kafka-test + ${spring-kafka.version} + + + org.springframework.ldap + spring-ldap-core + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-core-tiger + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-ldif-batch + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-ldif-core + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-odm + ${spring-ldap.version} + + + org.springframework.ldap + spring-ldap-test + ${spring-ldap.version} + + + org.springframework.plugin + spring-plugin-core + ${spring-plugin.version} + + + org.springframework.plugin + spring-plugin-metadata + ${spring-plugin.version} + + + org.springframework.restdocs + spring-restdocs-asciidoctor + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-core + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-mockmvc + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-restassured + ${spring-restdocs.version} + + + org.springframework.restdocs + spring-restdocs-webtestclient + ${spring-restdocs.version} + + + org.springframework.retry + spring-retry + ${spring-retry.version} + + + org.springframework.security + spring-security-bom + ${spring-security.version} + pom + import + + + org.springframework.session + spring-session-bom + ${spring-session-bom.version} + pom + import + + + org.springframework.ws + spring-ws-core + ${spring-ws.version} + + + commons-logging + commons-logging + + + + + org.springframework.ws + spring-ws-security + ${spring-ws.version} + + + commons-logging + commons-logging + + + + + org.springframework.ws + spring-ws-support + ${spring-ws.version} + + + commons-logging + commons-logging + + + + + org.springframework.ws + spring-ws-test + ${spring-ws.version} + + + commons-logging + commons-logging + + + + + org.springframework.ws + spring-xml + ${spring-ws.version} + + + org.synchronoss.cloud + nio-multipart-parser + ${nio-multipart-parser.version} + + + org.thymeleaf + thymeleaf + ${thymeleaf.version} + + + org.thymeleaf + thymeleaf-spring5 + ${thymeleaf.version} + + + org.thymeleaf.extras + thymeleaf-extras-java8time + ${thymeleaf-extras-java8time.version} + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + ${thymeleaf-extras-springsecurity.version} + + + org.webjars + hal-browser + ${webjars-hal-browser.version} + + + org.webjars + webjars-locator-core + ${webjars-locator-core.version} + + + org.xerial + sqlite-jdbc + ${sqlite-jdbc.version} + + + org.xmlunit + xmlunit-assertj + ${xmlunit2.version} + + + org.xmlunit + xmlunit-core + ${xmlunit2.version} + + + org.xmlunit + xmlunit-legacy + ${xmlunit2.version} + + + org.xmlunit + xmlunit-matchers + ${xmlunit2.version} + + + org.xmlunit + xmlunit-placeholders + ${xmlunit2.version} + + + org.yaml + snakeyaml + ${snakeyaml.version} + + + redis.clients + jedis + ${jedis.version} + + + wsdl4j + wsdl4j + ${wsdl4j.version} + + + xml-apis + xml-apis + ${xml-apis.version} + + + + + + + + org.apache.johnzon + johnzon-maven-plugin + ${johnzon.version} + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + org.jooq + jooq-codegen-maven + ${jooq.version} + + + org.springframework.boot + spring-boot-maven-plugin + 2.1.11.RELEASE + + + maven-antrun-plugin + ${maven-antrun-plugin.version} + + + maven-assembly-plugin + ${maven-assembly-plugin.version} + + false + + + + maven-clean-plugin + ${maven-clean-plugin.version} + + + maven-compiler-plugin + ${maven-compiler-plugin.version} + + + maven-deploy-plugin + ${maven-deploy-plugin.version} + + + maven-dependency-plugin + ${maven-dependency-plugin.version} + + + maven-enforcer-plugin + ${maven-enforcer-plugin.version} + + + maven-failsafe-plugin + ${maven-failsafe-plugin.version} + + + maven-install-plugin + ${maven-install-plugin.version} + + + maven-invoker-plugin + ${maven-invoker-plugin.version} + + + maven-help-plugin + ${maven-help-plugin.version} + + + maven-jar-plugin + ${maven-jar-plugin.version} + + + maven-javadoc-plugin + ${maven-javadoc-plugin.version} + + + maven-resources-plugin + ${maven-resources-plugin.version} + + + maven-shade-plugin + ${maven-shade-plugin.version} + + + maven-site-plugin + ${maven-site-plugin.version} + + + maven-source-plugin + ${maven-source-plugin.version} + + + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + maven-war-plugin + ${maven-war-plugin.version} + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + org.codehaus.mojo + exec-maven-plugin + ${exec-maven-plugin.version} + + + org.codehaus.mojo + versions-maven-plugin + ${versions-maven-plugin.version} + + + org.codehaus.mojo + xml-maven-plugin + ${xml-maven-plugin.version} + + + org.codehaus.mojo + flatten-maven-plugin + ${flatten-maven-plugin.version} + + + org.flywaydb + flyway-maven-plugin + ${flyway.version} + + + org.infinispan + infinispan-protocol-parser-generator-maven-plugin + ${infinispan.version} + + + pl.project13.maven + git-commit-id-plugin + ${git-commit-id-plugin.version} + + + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/spring-boot-dependencies-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/spring-boot-dependencies-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..502d43c7 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/2.1.11.RELEASE/spring-boot-dependencies-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +bdfef96d85a0ea845a1812da1d8b4c5875b35f69 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..38ee5184 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +spring-boot-loader-tools-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-loader-tools-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.jar new file mode 100644 index 00000000..7e59ca6f Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..82a29314 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +a7879014bb2e9fcdd5f075b86569bd78f624de5d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.pom new file mode 100644 index 00000000..bf02b1d2 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.pom @@ -0,0 +1,69 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-tools + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-loader-tools + 2.1.11.RELEASE + Spring Boot Loader Tools + Spring Boot Loader Tools + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-tools/spring-boot-loader-tools + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + org.apache.commons + commons-compress + 1.18 + compile + + + org.springframework.boot + spring-boot-loader + 2.1.11.RELEASE + provided + + + ch.qos.logback + logback-classic + 1.2.3 + provided + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..65da5ad0 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/2.1.11.RELEASE/spring-boot-loader-tools-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +4a4b4ea22008938ea1fa812ccfcdac0ce7653200 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..62043f0e --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:23 CST 2021 +spring-boot-maven-plugin-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-maven-plugin-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.jar new file mode 100644 index 00000000..8f60e7ae Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..3f5359c4 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +a4670dddaee8ffc00ad69c00786348d38c2b97b8 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.pom new file mode 100644 index 00000000..bb8caa94 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.pom @@ -0,0 +1,135 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-tools + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-maven-plugin + 2.1.11.RELEASE + maven-plugin + Spring Boot Maven Plugin + Spring Boot Maven Plugin + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-tools/spring-boot-maven-plugin + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-loader-tools + 2.1.11.RELEASE + compile + + + org.apache.maven + maven-archiver + 3.2.0 + compile + + + org.apache.maven + maven-artifact + 3.3.9 + compile + + + org.apache.maven + maven-core + 3.3.9 + compile + + + org.apache.maven + maven-model + 3.3.9 + compile + + + org.apache.maven + maven-plugin-api + 3.3.9 + compile + + + org.apache.maven + maven-settings + 3.3.9 + compile + + + org.apache.maven.shared + maven-common-artifact-filters + 3.0.1 + compile + + + org.codehaus.plexus + plexus-archiver + 3.6.0 + compile + + + plexus-container-default + org.codehaus.plexus + + + plexus-component-api + org.codehaus.plexus + + + + + org.codehaus.plexus + plexus-utils + 3.1.0 + compile + + + org.sonatype.plexus + plexus-build-api + 0.0.7 + compile + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.1 + compile + true + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.5.2 + provided + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..c627ff12 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/2.1.11.RELEASE/spring-boot-maven-plugin-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +64aea95b81e7ab59137fd4973de5691734c0e4b6 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..335147f3 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:22 CST 2021 +spring-boot-parent-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/spring-boot-parent-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/spring-boot-parent-2.1.11.RELEASE.pom new file mode 100644 index 00000000..29178e81 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/spring-boot-parent-2.1.11.RELEASE.pom @@ -0,0 +1,45 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-dependencies + 2.1.11.RELEASE + ../spring-boot-dependencies + + org.springframework.boot + spring-boot-parent + 2.1.11.RELEASE + pom + Spring Boot Parent + Spring Boot Parent + https://projects.spring.io/spring-boot/#/spring-boot-parent + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/spring-boot-parent-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/spring-boot-parent-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..d94a9759 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-parent/2.1.11.RELEASE/spring-boot-parent-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +042572932b0c359c4835852463c9679790e1004d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..0f055923 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-starter-json-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-starter-json-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.jar new file mode 100644 index 00000000..26b6efc6 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..e4e59c49 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +94381e4c943593ef952014592585f864780a4f71 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.pom new file mode 100644 index 00000000..0d9bfe17 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.pom @@ -0,0 +1,81 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-starter-json + 2.1.11.RELEASE + Spring Boot Json Starter + Starter for reading and writing json + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-json + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 2.1.11.RELEASE + compile + + + org.springframework + spring-web + 5.1.12.RELEASE + compile + + + com.fasterxml.jackson.core + jackson-databind + 2.9.10.1 + compile + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.9.10 + compile + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.9.10 + compile + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.9.10 + compile + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..6e74a64f --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-json/2.1.11.RELEASE/spring-boot-starter-json-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +24f582bff5d291cbf9b1b2efecc7fda535e4a016 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..c607f8dc --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-starter-logging-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-starter-logging-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.jar new file mode 100644 index 00000000..6a3208a0 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..487bda77 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +24c1480ee5f35bec25c8ca023d0fb8280f59dd58 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.pom new file mode 100644 index 00000000..b0ad8e92 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.pom @@ -0,0 +1,63 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-starter-logging + 2.1.11.RELEASE + Spring Boot Logging Starter + Starter for logging using Logback. Default logging starter + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-logging + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + ch.qos.logback + logback-classic + 1.2.3 + compile + + + org.apache.logging.log4j + log4j-to-slf4j + 2.11.2 + compile + + + org.slf4j + jul-to-slf4j + 1.7.29 + compile + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..30ff42af --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/2.1.11.RELEASE/spring-boot-starter-logging-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +3d26e13fddb1e80836ba8c5800433c81bf32364f \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..2b03e39b --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:11 CST 2021 +spring-boot-starter-parent-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/spring-boot-starter-parent-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/spring-boot-starter-parent-2.1.11.RELEASE.pom new file mode 100644 index 00000000..f8d93cfe --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/spring-boot-starter-parent-2.1.11.RELEASE.pom @@ -0,0 +1,249 @@ + + 4.0.0 + + org.springframework.boot + spring-boot-dependencies + 2.1.11.RELEASE + ../../spring-boot-dependencies + + spring-boot-starter-parent + pom + Spring Boot Starter Parent + Parent pom providing dependency and plugin management for applications + built with Maven + https://projects.spring.io/spring-boot/#/spring-boot-starter-parent + + UTF-8 + 1.8 + @ + ${java.version} + UTF-8 + ${java.version} + + + + + true + ${basedir}/src/main/resources + + **/application*.yml + **/application*.yaml + **/application*.properties + + + + ${basedir}/src/main/resources + + **/application*.yml + **/application*.yaml + **/application*.properties + + + + + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + compile + compile + + compile + + + + test-compile + test-compile + + test-compile + + + + + ${java.version} + true + + + + maven-compiler-plugin + + true + + + + maven-failsafe-plugin + + + + integration-test + verify + + + + + ${project.build.outputDirectory} + + + + maven-jar-plugin + + + + ${start-class} + true + + + + + + maven-war-plugin + + + + ${start-class} + true + + + + + + org.codehaus.mojo + exec-maven-plugin + + ${start-class} + + + + maven-resources-plugin + + + ${resource.delimiter} + + false + + + + pl.project13.maven + git-commit-id-plugin + + + + revision + + + + + true + yyyy-MM-dd'T'HH:mm:ssZ + true + ${project.build.outputDirectory}/git.properties + + + + org.springframework.boot + spring-boot-maven-plugin + + + repackage + + repackage + + + + + ${start-class} + + + + maven-shade-plugin + + + package + + shade + + + + + META-INF/spring.handlers + + + META-INF/spring.factories + + + META-INF/spring.schemas + + + + ${start-class} + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + 2.1.11.RELEASE + + + + true + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.codehaus.mojo + flatten-maven-plugin + [1.0.0,) + + flatten + + + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + [3.0.0,) + + check + + + + + + + + + + + + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/spring-boot-starter-parent-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/spring-boot-starter-parent-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..b1497b8e --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/2.1.11.RELEASE/spring-boot-starter-parent-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +ad968506324bfa06e816a7b2943c134265256e6d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..c05b3483 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-starter-tomcat-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-starter-tomcat-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.jar new file mode 100644 index 00000000..0f289573 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..3fc88aca --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +88a19488f985eb6f2fbc49ab8b68b5b73d1d381a \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.pom new file mode 100644 index 00000000..131f9a84 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.pom @@ -0,0 +1,76 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-starter-tomcat + 2.1.11.RELEASE + Spring Boot Tomcat Starter + Starter for using Tomcat as the embedded servlet container. Default + servlet container starter used by spring-boot-starter-web + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-tomcat + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + javax.annotation + javax.annotation-api + 1.3.2 + compile + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.29 + compile + + + tomcat-annotations-api + org.apache.tomcat + + + + + org.apache.tomcat.embed + tomcat-embed-el + 9.0.29 + compile + + + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.29 + compile + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..5ca94dd7 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/2.1.11.RELEASE/spring-boot-starter-tomcat-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +e03298c75c0769d51518fe3ae6f7c5ecdb67f353 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..124d2313 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-starter-web-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-starter-web-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.jar new file mode 100644 index 00000000..58c26ce6 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..beba28e6 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +2a1acc52e654cf273552d551b26b3c4f28a42e7e \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.pom new file mode 100644 index 00000000..122467cb --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.pom @@ -0,0 +1,82 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-starter-web + 2.1.11.RELEASE + Spring Boot Web Starter + Starter for building web, including RESTful, applications using Spring + MVC. Uses Tomcat as the default embedded container + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter-web + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot-starter + 2.1.11.RELEASE + compile + + + org.springframework.boot + spring-boot-starter-json + 2.1.11.RELEASE + compile + + + org.springframework.boot + spring-boot-starter-tomcat + 2.1.11.RELEASE + compile + + + org.hibernate.validator + hibernate-validator + 6.0.18.Final + compile + + + org.springframework + spring-web + 5.1.12.RELEASE + compile + + + org.springframework + spring-webmvc + 5.1.12.RELEASE + compile + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..5521fd49 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/2.1.11.RELEASE/spring-boot-starter-web-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +fb408287a32aef8ef05510e89e8b7367d9870104 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..ac805400 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-starter-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-starter-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.jar new file mode 100644 index 00000000..9aad66b4 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..d1b9646a --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +b8e1c042f5b4044c01da4c50ddf543c7fd6d1e6d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.pom new file mode 100644 index 00000000..88f2aa8e --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.pom @@ -0,0 +1,81 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starters + 2.1.11.RELEASE + + org.springframework.boot + spring-boot-starter + 2.1.11.RELEASE + Spring Boot Starter + Core starter, including auto-configuration support, logging and YAML + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters/spring-boot-starter + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework.boot + spring-boot + 2.1.11.RELEASE + compile + + + org.springframework.boot + spring-boot-autoconfigure + 2.1.11.RELEASE + compile + + + org.springframework.boot + spring-boot-starter-logging + 2.1.11.RELEASE + compile + + + javax.annotation + javax.annotation-api + 1.3.2 + compile + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + org.yaml + snakeyaml + 1.23 + runtime + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..1e0df2b1 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starter/2.1.11.RELEASE/spring-boot-starter-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +1d66deb77ba9ce9428c88564c7947c8b1bfd4e7e \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..55fe752a --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:31 CST 2021 +spring-boot-starters-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/spring-boot-starters-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/spring-boot-starters-2.1.11.RELEASE.pom new file mode 100644 index 00000000..4a5f1540 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/spring-boot-starters-2.1.11.RELEASE.pom @@ -0,0 +1,45 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-parent + 2.1.11.RELEASE + ../spring-boot-parent + + org.springframework.boot + spring-boot-starters + 2.1.11.RELEASE + pom + Spring Boot Starters + Spring Boot Starters + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-starters + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/spring-boot-starters-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/spring-boot-starters-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..a1adc15f --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-starters/2.1.11.RELEASE/spring-boot-starters-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +5b51ba89ac3354ec53501d2e382f2700db6aea6c \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..583d9d67 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:21 CST 2021 +spring-boot-tools-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/spring-boot-tools-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/spring-boot-tools-2.1.11.RELEASE.pom new file mode 100644 index 00000000..227a43ff --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/spring-boot-tools-2.1.11.RELEASE.pom @@ -0,0 +1,45 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-parent + 2.1.11.RELEASE + ../spring-boot-parent + + org.springframework.boot + spring-boot-tools + 2.1.11.RELEASE + pom + Spring Boot Tools + Spring Boot Tools + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot-tools + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/spring-boot-tools-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/spring-boot-tools-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..9b2c60d9 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot-tools/2.1.11.RELEASE/spring-boot-tools-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +e6958fd8de011061155162872895e8e1a755086a \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/_remote.repositories new file mode 100644 index 00000000..21ea37fa --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-boot-2.1.11.RELEASE.jar>repo.jenkins-ci.org= +spring-boot-2.1.11.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.jar b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.jar new file mode 100644 index 00000000..d4a1a0c1 Binary files /dev/null and b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.jar.sha1 new file mode 100644 index 00000000..b1f021f0 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.jar.sha1 @@ -0,0 +1 @@ +54278c590ca7e373ccf3fe5d6f5d09192baab75d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.pom b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.pom new file mode 100644 index 00000000..c5e247d2 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.pom @@ -0,0 +1,445 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-parent + 2.1.11.RELEASE + ../spring-boot-parent + + org.springframework.boot + spring-boot + 2.1.11.RELEASE + Spring Boot + Spring Boot + https://projects.spring.io/spring-boot/#/spring-boot-parent/spring-boot + + Pivotal Software, Inc. + https://spring.io + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + scm:git:git://github.com/spring-projects/spring-boot.git + scm:git:ssh://git@github.com/spring-projects/spring-boot.git + https://github.com/spring-projects/spring-boot + + + Github + https://github.com/spring-projects/spring-boot/issues + + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + org.springframework + spring-context + 5.1.12.RELEASE + compile + + + ch.qos.logback + logback-classic + 1.2.3 + compile + true + + + com.atomikos + transactions-jdbc + 4.0.6 + compile + true + + + com.atomikos + transactions-jms + 4.0.6 + compile + true + + + com.atomikos + transactions-jta + 4.0.6 + compile + true + + + com.fasterxml.jackson.core + jackson-databind + 2.9.10.1 + compile + true + + + com.google.code.gson + gson + 2.8.6 + compile + true + + + com.samskivert + jmustache + 1.14 + compile + true + + + com.sendgrid + sendgrid-java + 4.3.0 + compile + true + + + com.zaxxer + HikariCP + 3.2.0 + compile + true + + + io.projectreactor.netty + reactor-netty + 0.8.14.RELEASE + compile + true + + + io.netty + netty-tcnative-boringssl-static + 2.0.28.Final + compile + true + + + io.undertow + undertow-servlet + 2.0.28.Final + compile + true + + + javax.jms + javax.jms-api + 2.0.1 + compile + true + + + javax.servlet + javax.servlet-api + 4.0.1 + compile + true + + + junit + junit + 4.12 + compile + true + + + org.apache.commons + commons-dbcp2 + 2.5.0 + compile + + + commons-logging + commons-logging + + + true + + + org.apache.httpcomponents + httpclient + 4.5.10 + compile + + + commons-logging + commons-logging + + + true + + + org.apache.logging.log4j + log4j-api + 2.11.2 + compile + true + + + org.apache.logging.log4j + log4j-core + 2.11.2 + compile + true + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.29 + compile + true + + + org.apache.tomcat.embed + tomcat-embed-jasper + 9.0.29 + compile + true + + + org.apache.tomcat + tomcat-jdbc + 9.0.29 + compile + true + + + org.assertj + assertj-core + 3.11.1 + compile + true + + + org.codehaus.btm + btm + 2.1.4 + compile + true + + + org.codehaus.groovy + groovy + 2.5.8 + compile + true + + + org.codehaus.groovy + groovy-xml + 2.5.8 + compile + true + + + org.eclipse.jetty + jetty-servlets + 9.4.24.v20191120 + compile + true + + + org.eclipse.jetty + jetty-util + 9.4.24.v20191120 + compile + true + + + org.eclipse.jetty + jetty-webapp + 9.4.24.v20191120 + compile + true + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.24.v20191120 + compile + true + + + org.eclipse.jetty.http2 + http2-server + 9.4.24.v20191120 + compile + true + + + org.hamcrest + hamcrest-library + 1.3 + compile + true + + + org.hibernate + hibernate-core + 5.3.14.Final + compile + + + xml-apis + xml-apis + + + true + + + org.hibernate.validator + hibernate-validator + 6.0.18.Final + compile + true + + + org.jboss + jboss-transaction-spi + 7.6.0.Final + compile + true + + + org.liquibase + liquibase-core + 3.6.3 + compile + + + logback-classic + ch.qos.logback + + + true + + + org.neo4j + neo4j-ogm-core + 3.1.15 + compile + true + + + org.slf4j + jul-to-slf4j + 1.7.29 + compile + true + + + org.slf4j + slf4j-api + 1.7.29 + compile + true + + + org.springframework + spring-orm + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-oxm + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-test + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-web + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-webflux + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-webmvc + 5.1.12.RELEASE + compile + true + + + org.springframework.security + spring-security-web + 5.1.7.RELEASE + compile + true + + + org.springframework.ws + spring-ws-core + 3.0.8.RELEASE + compile + + + commons-logging + commons-logging + + + true + + + org.yaml + snakeyaml + 1.23 + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.2.71 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib + 1.2.71 + compile + true + + + org.springframework.boot + spring-boot-configuration-processor + 2.1.11.RELEASE + compile + true + + + diff --git a/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.pom.sha1 new file mode 100644 index 00000000..066f2672 --- /dev/null +++ b/artifacts/m2/org/springframework/boot/spring-boot/2.1.11.RELEASE/spring-boot-2.1.11.RELEASE.pom.sha1 @@ -0,0 +1 @@ +559bb080009f5e0e6066ec8cf05f750a03d1be86 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/_remote.repositories new file mode 100644 index 00000000..3e46bd6e --- /dev/null +++ b/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:19 CST 2021 +spring-data-build-2.1.14.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/spring-data-build-2.1.14.RELEASE.pom b/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/spring-data-build-2.1.14.RELEASE.pom new file mode 100644 index 00000000..bda9568f --- /dev/null +++ b/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/spring-data-build-2.1.14.RELEASE.pom @@ -0,0 +1,254 @@ + + + + 4.0.0 + org.springframework.data.build + spring-data-build + 2.1.14.RELEASE + pom + + Spring Data Build + Modules to centralize common resources and configuration for Spring Data Maven builds. + https://github.com/spring-projects/spring-data-build + + + Pivotal Software, Inc. + https://www.spring.io + + + + resources + parent + bom + + + + + ogierke + Oliver Gierke + ogierke at gopivotal.com + Pivotal Software, Inc. + https://www.spring.io + + Project lead + + +1 + + + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + Copyright 2010 the original author or authors. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied. + See the License for the specific language governing permissions and + limitations under the License. + + + + + + + + + + release + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + enforce-release-rules + + enforce + + + + + [1.8,1.9) + + + + + + + + + + + + + + + bom-verify + + bom-client + + + + + + + artifactory + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + 2.6.1 + + + build-info + + publish + + + + false + + + {{artifactory.server}} + {{artifactory.username}} + {{artifactory.password}} + {{artifactory.staging-repository}} + {{artifactory.staging-repository}} + + + {{artifactory.build-name}} + {{artifactory.build-number}} + {{BUILD_URL}} + + + + + + + + + + + + + org.jfrog.buildinfo + artifactory-maven-plugin + + + + + + + + + with-bom-client + + + bom-client + + + + + + + central + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + sonatype + https://oss.sonatype.org/ + false + true + + + + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + + + + + + + + sonatype + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + + + + + + https://github.com/spring-projects/spring-data-build + scm:git:git://github.com/spring-projects/spring-data-build.git + scm:git:ssh://git@github.com:spring-projects/spring-data-build.git + + + + GitHub + https://github.com/spring-projects/spring-data-build/issues + + + + + diff --git a/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/spring-data-build-2.1.14.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/spring-data-build-2.1.14.RELEASE.pom.sha1 new file mode 100644 index 00000000..5a2743e8 --- /dev/null +++ b/artifacts/m2/org/springframework/data/build/spring-data-build/2.1.14.RELEASE/spring-data-build-2.1.14.RELEASE.pom.sha1 @@ -0,0 +1 @@ +6e17790906980db326a5fb6ca1d4649124489186 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/_remote.repositories b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/_remote.repositories new file mode 100644 index 00000000..fb79e8a6 --- /dev/null +++ b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:19 CST 2021 +spring-data-releasetrain-Lovelace-SR14.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/spring-data-releasetrain-Lovelace-SR14.pom b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/spring-data-releasetrain-Lovelace-SR14.pom new file mode 100644 index 00000000..c4adfcbf --- /dev/null +++ b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/spring-data-releasetrain-Lovelace-SR14.pom @@ -0,0 +1,153 @@ + + + + 4.0.0 + org.springframework.data + spring-data-releasetrain + Lovelace-SR14 + pom + + + org.springframework.data.build + spring-data-build + 2.1.14.RELEASE + + + Spring Data Release Train - BOM + Bill of materials to make sure a consistent set of versions is used for Spring Data modules. + https://github.com/spring-projects/spring-data-build + + + + + + + org.springframework.data + spring-data-cassandra + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-commons + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-couchbase + 3.1.14.RELEASE + + + + + org.springframework.data + spring-data-elasticsearch + 3.1.14.RELEASE + + + + + org.springframework.data + spring-data-gemfire + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-geode + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-jdbc + 1.0.14.RELEASE + + + + + org.springframework.data + spring-data-jpa + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-mongodb + 2.1.14.RELEASE + + + org.springframework.data + spring-data-mongodb-cross-store + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-neo4j + 5.1.14.RELEASE + + + + + org.springframework.data + spring-data-redis + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-rest-webmvc + 3.1.14.RELEASE + + + org.springframework.data + spring-data-rest-core + 3.1.14.RELEASE + + + org.springframework.data + spring-data-rest-hal-browser + 3.1.14.RELEASE + + + + + org.springframework.data + spring-data-solr + 4.0.14.RELEASE + + + + + org.springframework.data + spring-data-keyvalue + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-envers + 2.1.14.RELEASE + + + + + org.springframework.data + spring-data-ldap + 2.1.14.RELEASE + + + + + + diff --git a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/spring-data-releasetrain-Lovelace-SR14.pom.sha1 b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/spring-data-releasetrain-Lovelace-SR14.pom.sha1 new file mode 100644 index 00000000..c252ff11 --- /dev/null +++ b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Lovelace-SR14/spring-data-releasetrain-Lovelace-SR14.pom.sha1 @@ -0,0 +1 @@ +49c324221112e9a86a7bdd8cb1de9741aea9c6d3 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/_remote.repositories new file mode 100644 index 00000000..ba679d47 --- /dev/null +++ b/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:19 CST 2021 +spring-integration-bom-5.1.9.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/spring-integration-bom-5.1.9.RELEASE.pom b/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/spring-integration-bom-5.1.9.RELEASE.pom new file mode 100644 index 00000000..dd6a92e3 --- /dev/null +++ b/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/spring-integration-bom-5.1.9.RELEASE.pom @@ -0,0 +1,228 @@ + + + 4.0.0 + org.springframework.integration + spring-integration-bom + 5.1.9.RELEASE + pom + Spring Integration (Bill of Materials) + Spring Integration (Bill of Materials) + https://projects.spring.io/spring-integration + + SpringIO + https://spring.io + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + garyrussell + Gary Russell + grussell@pivotal.io + + project lead + + + + markfisher + Mark Fisher + mfisher@pivotal.io + + project founder and lead emeritus + + + + ghillert + Gunnar Hillert + ghillert@pivotal.io + + + abilan + Artem Bilan + abilan@pivotal.io + + + + scm:git:scm:git:git://github.com/spring-projects/spring-integration.git + scm:git:scm:git:ssh://git@github.com:spring-projects/spring-integration.git + https://github.com/spring-projects/spring-integration + + + Jira + https://jira.spring.io/browse/INT + + + + + org.springframework.integration + spring-integration-amqp + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-core + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-event + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-feed + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-file + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-ftp + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-gemfire + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-groovy + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-http + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-ip + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-jdbc + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-jms + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-jmx + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-jpa + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-mail + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-mongodb + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-mqtt + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-redis + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-rmi + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-scripting + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-security + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-sftp + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-stomp + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-stream + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-syslog + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-test + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-test-support + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-webflux + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-websocket + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-ws + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-xml + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-xmpp + 5.1.9.RELEASE + + + org.springframework.integration + spring-integration-zookeeper + 5.1.9.RELEASE + + + + diff --git a/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/spring-integration-bom-5.1.9.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/spring-integration-bom-5.1.9.RELEASE.pom.sha1 new file mode 100644 index 00000000..0f6a579e --- /dev/null +++ b/artifacts/m2/org/springframework/integration/spring-integration-bom/5.1.9.RELEASE/spring-integration-bom-5.1.9.RELEASE.pom.sha1 @@ -0,0 +1 @@ +b3e923f96a0ffaa23276018da28d2d685e1a9431 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/_remote.repositories new file mode 100644 index 00000000..9a661dfe --- /dev/null +++ b/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:20 CST 2021 +spring-security-bom-5.1.7.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/spring-security-bom-5.1.7.RELEASE.pom b/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/spring-security-bom-5.1.7.RELEASE.pom new file mode 100644 index 00000000..cb37019a --- /dev/null +++ b/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/spring-security-bom-5.1.7.RELEASE.pom @@ -0,0 +1,133 @@ + + + 4.0.0 + org.springframework.security + spring-security-bom + 5.1.7.RELEASE + pom + spring-security-bom + spring-security-bom + https://spring.io/spring-security + + spring.io + https://spring.io/ + + + + The Apache Software License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + rwinch + Rob Winch + rwinch@pivotal.io + + + jgrandja + Joe Grandja + jgrandja@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-security + scm:git:git://github.com/spring-projects/spring-security + https://github.com/spring-projects/spring-security + + + + + org.springframework.security + spring-security-acl + 5.1.7.RELEASE + + + org.springframework.security + spring-security-aspects + 5.1.7.RELEASE + + + org.springframework.security + spring-security-cas + 5.1.7.RELEASE + + + org.springframework.security + spring-security-config + 5.1.7.RELEASE + + + org.springframework.security + spring-security-core + 5.1.7.RELEASE + + + org.springframework.security + spring-security-crypto + 5.1.7.RELEASE + + + org.springframework.security + spring-security-data + 5.1.7.RELEASE + + + org.springframework.security + spring-security-ldap + 5.1.7.RELEASE + + + org.springframework.security + spring-security-messaging + 5.1.7.RELEASE + + + org.springframework.security + spring-security-oauth2-client + 5.1.7.RELEASE + + + org.springframework.security + spring-security-oauth2-core + 5.1.7.RELEASE + + + org.springframework.security + spring-security-oauth2-jose + 5.1.7.RELEASE + + + org.springframework.security + spring-security-oauth2-resource-server + 5.1.7.RELEASE + + + org.springframework.security + spring-security-openid + 5.1.7.RELEASE + + + org.springframework.security + spring-security-remoting + 5.1.7.RELEASE + + + org.springframework.security + spring-security-taglibs + 5.1.7.RELEASE + + + org.springframework.security + spring-security-test + 5.1.7.RELEASE + + + org.springframework.security + spring-security-web + 5.1.7.RELEASE + + + + diff --git a/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/spring-security-bom-5.1.7.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/spring-security-bom-5.1.7.RELEASE.pom.sha1 new file mode 100644 index 00000000..81d570f5 --- /dev/null +++ b/artifacts/m2/org/springframework/security/spring-security-bom/5.1.7.RELEASE/spring-security-bom-5.1.7.RELEASE.pom.sha1 @@ -0,0 +1 @@ +313a8856e5dbdf4f9784cb79e4be0d4e78ec612e \ No newline at end of file diff --git a/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/_remote.repositories b/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/_remote.repositories new file mode 100644 index 00000000..2879cfd9 --- /dev/null +++ b/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:20 CST 2021 +spring-session-bom-Bean-SR8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/spring-session-bom-Bean-SR8.pom b/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/spring-session-bom-Bean-SR8.pom new file mode 100644 index 00000000..d9761f55 --- /dev/null +++ b/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/spring-session-bom-Bean-SR8.pom @@ -0,0 +1,77 @@ + + + 4.0.0 + org.springframework.session + spring-session-bom + Bean-SR8 + pom + Spring Session Maven Bill of Materials (BOM) + Spring Session Maven Bill of Materials (BOM) + https://projects.spring.io/spring-session/ + + Pivotal Software, Inc. + https://spring.io/ + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + rwinch + Rob Winch + rwinch@pivotal.io + + + + scm:git:git@github.com/spring-projects/spring-session-bom.git + scm:git:git@github.com/spring-projects/spring-session-bom.git + https://github.com/spring-projects/spring-session-bom + + + GitHub + https://github.com/spring-projects/spring-session/issues + + + + + org.springframework.session + spring-session-data-gemfire + 2.1.5.RELEASE + + + org.springframework.session + spring-session-jdbc + 2.1.9.RELEASE + + + org.springframework.session + spring-session-data-geode + 2.1.5.RELEASE + + + org.springframework.session + spring-session-hazelcast + 2.1.9.RELEASE + + + org.springframework.session + spring-session-data-mongodb + 2.1.4.RELEASE + + + org.springframework.session + spring-session-core + 2.1.9.RELEASE + + + org.springframework.session + spring-session-data-redis + 2.1.9.RELEASE + + + + diff --git a/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/spring-session-bom-Bean-SR8.pom.sha1 b/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/spring-session-bom-Bean-SR8.pom.sha1 new file mode 100644 index 00000000..61655071 --- /dev/null +++ b/artifacts/m2/org/springframework/session/spring-session-bom/Bean-SR8/spring-session-bom-Bean-SR8.pom.sha1 @@ -0,0 +1 @@ +6beb893ff37090b3ec7db32be5cd603e5e6f683b \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..4ab73349 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-aop-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-aop-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.jar new file mode 100644 index 00000000..b4a9d193 Binary files /dev/null and b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..f44d29e6 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +9c569c3481609b71e2fe1a53093b235d95b6a77e \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.pom new file mode 100644 index 00000000..09b5e532 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.pom @@ -0,0 +1,72 @@ + + + 4.0.0 + org.springframework + spring-aop + 5.1.12.RELEASE + Spring AOP + Spring AOP + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 5.1.12.RELEASE + compile + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + com.jamonapi + jamon + 2.81 + compile + true + + + org.apache.commons + commons-pool2 + 2.6.0 + compile + true + + + org.aspectj + aspectjweaver + 1.9.5 + compile + true + + + diff --git a/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..63aa9e0d --- /dev/null +++ b/artifacts/m2/org/springframework/spring-aop/5.1.12.RELEASE/spring-aop-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +2b9e1fad27be949c5bcdb1230555453aa0a902f5 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..95670644 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-beans-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-beans-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.jar new file mode 100644 index 00000000..186399cb Binary files /dev/null and b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..ec86f4a4 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +e653a9892589fa757f8454af9ee9e82acf8e250e \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.pom new file mode 100644 index 00000000..9042354d --- /dev/null +++ b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.pom @@ -0,0 +1,80 @@ + + + 4.0.0 + org.springframework + spring-beans + 5.1.12.RELEASE + Spring Beans + Spring Beans + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + javax.inject + javax.inject + 1 + compile + true + + + org.codehaus.groovy + groovy-xml + 2.5.8 + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.2.71 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib + 1.2.71 + compile + true + + + org.yaml + snakeyaml + 1.23 + compile + true + + + diff --git a/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..6718324a --- /dev/null +++ b/artifacts/m2/org/springframework/spring-beans/5.1.12.RELEASE/spring-beans-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +bd24e8ba23a6730ac7d3fd04cc60a029b2d77cce \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..9581673d --- /dev/null +++ b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-context-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-context-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.jar new file mode 100644 index 00000000..194d40dd Binary files /dev/null and b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..d7e12a36 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +fc4df1fa5f7597341f690b1a39387c4c09d18396 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.pom new file mode 100644 index 00000000..6081904c --- /dev/null +++ b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.pom @@ -0,0 +1,175 @@ + + + 4.0.0 + org.springframework + spring-context + 5.1.12.RELEASE + Spring Context + Spring Context + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-aop + 5.1.12.RELEASE + compile + + + org.springframework + spring-beans + 5.1.12.RELEASE + compile + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + org.springframework + spring-expression + 5.1.12.RELEASE + compile + + + javax.annotation + javax.annotation-api + 1.3.2 + compile + true + + + javax.ejb + javax.ejb-api + 3.2 + compile + true + + + javax.enterprise.concurrent + javax.enterprise.concurrent-api + 1.0 + compile + true + + + javax.inject + javax.inject + 1 + compile + true + + + javax.interceptor + javax.interceptor-api + 1.2.2 + compile + true + + + javax.money + money-api + 1.0.3 + compile + true + + + javax.validation + validation-api + 1.1.0.Final + compile + true + + + javax.xml.ws + jaxws-api + 2.3.1 + compile + true + + + joda-time + joda-time + 2.10.4 + compile + true + + + org.aspectj + aspectjweaver + 1.9.5 + compile + true + + + org.beanshell + bsh + 2.0b5 + compile + true + + + org.codehaus.groovy + groovy + 2.5.8 + compile + true + + + org.hibernate + hibernate-validator + 5.4.3.Final + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.2.71 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib + 1.2.71 + compile + true + + + org.springframework + spring-instrument + 5.1.12.RELEASE + compile + true + + + diff --git a/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..48827bd6 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-context/5.1.12.RELEASE/spring-context-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +9cefd486c1b9ead4aa1f866976433aa570ed86f9 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..a6d45db9 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-core-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-core-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.jar new file mode 100644 index 00000000..7ce503c7 Binary files /dev/null and b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..1052149a --- /dev/null +++ b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +0b416b652d216d8b99f7f68d1b79e857cf935eaa \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.pom new file mode 100644 index 00000000..c01b5ce1 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.pom @@ -0,0 +1,108 @@ + + + 4.0.0 + org.springframework + spring-core + 5.1.12.RELEASE + Spring Core + Spring Core + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-jcl + 5.1.12.RELEASE + compile + + + io.netty + netty-buffer + 4.1.43.Final + compile + true + + + io.projectreactor + reactor-core + 3.2.13.RELEASE + compile + true + + + io.reactivex.rxjava2 + rxjava + 2.2.15 + compile + true + + + io.reactivex + rxjava + 1.3.8 + compile + true + + + io.reactivex + rxjava-reactive-streams + 1.2.1 + compile + true + + + net.sf.jopt-simple + jopt-simple + 5.0.4 + compile + true + + + org.aspectj + aspectjweaver + 1.9.5 + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.2.71 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib + 1.2.71 + compile + true + + + diff --git a/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..9060a6c4 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-core/5.1.12.RELEASE/spring-core-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +4183f61083766555a7acc932f3be6a9c9c4a8cda \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..5a6e6950 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-expression-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-expression-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.jar new file mode 100644 index 00000000..144c62d8 Binary files /dev/null and b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..50645c6c --- /dev/null +++ b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +789db315684fa28b06e84b04c0054ec59bf9c0c1 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.pom new file mode 100644 index 00000000..7d3dc092 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.pom @@ -0,0 +1,45 @@ + + + 4.0.0 + org.springframework + spring-expression + 5.1.12.RELEASE + Spring Expression Language (SpEL) + Spring Expression Language (SpEL) + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + diff --git a/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..3511a980 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-expression/5.1.12.RELEASE/spring-expression-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +eec16f5aebb2b176e614e3ff3ab680c13bfdda09 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..9fd2102f --- /dev/null +++ b/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:51:18 CST 2021 +spring-framework-bom-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/spring-framework-bom-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/spring-framework-bom-5.1.12.RELEASE.pom new file mode 100644 index 00000000..a4049ccb --- /dev/null +++ b/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/spring-framework-bom-5.1.12.RELEASE.pom @@ -0,0 +1,147 @@ + + + 4.0.0 + org.springframework + spring-framework-bom + 5.1.12.RELEASE + pom + Spring Framework (Bill of Materials) + Spring Framework (Bill of Materials) + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + + org.springframework + spring-aop + 5.1.12.RELEASE + + + org.springframework + spring-aspects + 5.1.12.RELEASE + + + org.springframework + spring-beans + 5.1.12.RELEASE + + + org.springframework + spring-context + 5.1.12.RELEASE + + + org.springframework + spring-context-indexer + 5.1.12.RELEASE + + + org.springframework + spring-context-support + 5.1.12.RELEASE + + + org.springframework + spring-core + 5.1.12.RELEASE + + + org.springframework + spring-expression + 5.1.12.RELEASE + + + org.springframework + spring-instrument + 5.1.12.RELEASE + + + org.springframework + spring-jcl + 5.1.12.RELEASE + + + org.springframework + spring-jdbc + 5.1.12.RELEASE + + + org.springframework + spring-jms + 5.1.12.RELEASE + + + org.springframework + spring-messaging + 5.1.12.RELEASE + + + org.springframework + spring-orm + 5.1.12.RELEASE + + + org.springframework + spring-oxm + 5.1.12.RELEASE + + + org.springframework + spring-test + 5.1.12.RELEASE + + + org.springframework + spring-tx + 5.1.12.RELEASE + + + org.springframework + spring-web + 5.1.12.RELEASE + + + org.springframework + spring-webflux + 5.1.12.RELEASE + + + org.springframework + spring-webmvc + 5.1.12.RELEASE + + + org.springframework + spring-websocket + 5.1.12.RELEASE + + + + diff --git a/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/spring-framework-bom-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/spring-framework-bom-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..4f22fc73 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-framework-bom/5.1.12.RELEASE/spring-framework-bom-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +af7ebaeba35ac23d1dbf174705bb4e0ec9fc1d6f \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..ef7ed647 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-jcl-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-jcl-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.jar new file mode 100644 index 00000000..dcf929ac Binary files /dev/null and b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..3c78a568 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +0ca14bf5d9af347de62af34c61d0ddd2c4413999 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.pom new file mode 100644 index 00000000..26cc1080 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.pom @@ -0,0 +1,53 @@ + + + 4.0.0 + org.springframework + spring-jcl + 5.1.12.RELEASE + Spring Commons Logging Bridge + Spring Commons Logging Bridge + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.apache.logging.log4j + log4j-api + 2.11.2 + compile + true + + + org.slf4j + slf4j-api + 1.7.28 + compile + true + + + diff --git a/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..7f7e5f67 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-jcl/5.1.12.RELEASE/spring-jcl-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +e701743e8ffd62beeed3e202561bfc197a31aa93 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..669c32c9 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-web-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-web-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.jar new file mode 100644 index 00000000..83a7db3a Binary files /dev/null and b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..070ca86b --- /dev/null +++ b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +7c3ef7feec13ed0499306e0228b96e6868db0dca \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.pom new file mode 100644 index 00000000..8cd826a3 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.pom @@ -0,0 +1,375 @@ + + + 4.0.0 + org.springframework + spring-web + 5.1.12.RELEASE + Spring Web + Spring Web + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-beans + 5.1.12.RELEASE + compile + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + com.caucho + hessian + 4.0.51 + compile + true + + + com.fasterxml.jackson.core + jackson-databind + 2.9.9 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.9.9 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.9.9 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.9.9 + compile + true + + + com.fasterxml.woodstox + woodstox-core + 5.3.0 + compile + + + stax-api + stax + + + true + + + com.fasterxml + aalto-xml + 1.1.1 + compile + true + + + com.google.code.gson + gson + 2.8.5 + compile + true + + + com.google.protobuf + protobuf-java-util + 3.6.1 + compile + true + + + com.googlecode.protobuf-java-format + protobuf-java-format + 1.4 + compile + true + + + com.rometools + rome + 1.12.2 + compile + true + + + com.squareup.okhttp3 + okhttp + 3.14.4 + compile + true + + + commons-fileupload + commons-fileupload + 1.4 + compile + true + + + io.netty + netty-all + 4.1.43.Final + compile + true + + + io.projectreactor.netty + reactor-netty + 0.8.14.RELEASE + compile + true + + + io.reactivex.rxjava2 + rxjava + 2.2.15 + compile + true + + + io.reactivex + rxjava + 1.3.8 + compile + true + + + io.reactivex + rxjava-reactive-streams + 1.2.1 + compile + true + + + io.undertow + undertow-core + 2.0.28.Final + compile + true + + + javax.el + javax.el-api + 3.0.1-b04 + compile + true + + + javax.faces + javax.faces-api + 2.2 + compile + true + + + javax.json.bind + javax.json.bind-api + 1.0 + compile + true + + + javax.mail + javax.mail-api + 1.6.2 + compile + true + + + javax.servlet.jsp + javax.servlet.jsp-api + 2.3.2-b02 + compile + true + + + javax.servlet + javax.servlet-api + 3.1.0 + compile + true + + + javax.validation + validation-api + 1.1.0.Final + compile + true + + + javax.xml.bind + jaxb-api + 2.3.1 + compile + true + + + javax.xml.ws + jaxws-api + 2.3.1 + compile + true + + + org.apache.httpcomponents + httpasyncclient + 4.1.4 + compile + + + commons-logging + commons-logging + + + true + + + org.apache.httpcomponents + httpclient + 4.5.10 + compile + + + commons-logging + commons-logging + + + true + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.29 + compile + true + + + org.codehaus.groovy + groovy + 2.5.8 + compile + true + + + org.eclipse.jetty + jetty-reactive-httpclient + 1.0.3 + compile + true + + + org.eclipse.jetty + jetty-server + 9.4.24.v20191120 + compile + + + javax.servlet-api + javax.servlet + + + true + + + org.eclipse.jetty + jetty-servlet + 9.4.24.v20191120 + compile + + + javax.servlet-api + javax.servlet + + + true + + + org.glassfish.main + javax.jws + 4.0-b33 + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.2.71 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib + 1.2.71 + compile + true + + + org.springframework + spring-aop + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-context + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-oxm + 5.1.12.RELEASE + compile + true + + + org.synchronoss.cloud + nio-multipart-parser + 1.1.0 + compile + true + + + diff --git a/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..d08a73d8 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-web/5.1.12.RELEASE/spring-web-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +4b5b37314f8ae2c07bf1439762ebaef36e4a1508 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/_remote.repositories new file mode 100644 index 00000000..58ce5a80 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +spring-webmvc-5.1.12.RELEASE.jar>repo.jenkins-ci.org= +spring-webmvc-5.1.12.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.jar b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.jar new file mode 100644 index 00000000..71aefa0f Binary files /dev/null and b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.jar.sha1 new file mode 100644 index 00000000..09dd0c23 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.jar.sha1 @@ -0,0 +1 @@ +e5cf986607a703bec0d615a32f9ac8ad079ec0c8 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.pom b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.pom new file mode 100644 index 00000000..f24be3b2 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.pom @@ -0,0 +1,296 @@ + + + 4.0.0 + org.springframework + spring-webmvc + 5.1.12.RELEASE + Spring Web MVC + Spring Web MVC + https://github.com/spring-projects/spring-framework + + Spring IO + https://projects.spring.io/spring-framework + + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + repo + + + + + jhoeller + Juergen Hoeller + jhoeller@pivotal.io + + + + scm:git:git://github.com/spring-projects/spring-framework + scm:git:git://github.com/spring-projects/spring-framework + https://github.com/spring-projects/spring-framework + + + GitHub + https://github.com/spring-projects/spring-framework/issues + + + + org.springframework + spring-aop + 5.1.12.RELEASE + compile + + + org.springframework + spring-beans + 5.1.12.RELEASE + compile + + + org.springframework + spring-context + 5.1.12.RELEASE + compile + + + org.springframework + spring-core + 5.1.12.RELEASE + compile + + + org.springframework + spring-expression + 5.1.12.RELEASE + compile + + + org.springframework + spring-web + 5.1.12.RELEASE + compile + + + com.fasterxml.jackson.core + jackson-databind + 2.9.9 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.9.9 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.9.9 + compile + true + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.9.9 + compile + true + + + com.github.librepdf + openpdf + 1.2.21 + compile + true + + + com.rometools + rome + 1.12.2 + compile + true + + + javax.el + javax.el-api + 3.0.1-b04 + compile + true + + + javax.servlet.jsp.jstl + javax.servlet.jsp.jstl-api + 1.2.1 + compile + true + + + javax.servlet.jsp + javax.servlet.jsp-api + 2.3.2-b02 + compile + true + + + javax.xml.bind + jaxb-api + 2.3.1 + compile + true + + + org.apache.poi + poi-ooxml + 4.1.1 + compile + true + + + org.apache.tiles + tiles-api + 3.0.8 + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.apache.tiles + tiles-core + 3.0.8 + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.apache.tiles + tiles-el + 3.0.8 + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.apache.tiles + tiles-extras + 3.0.8 + compile + + + spring-web + org.springframework + + + jcl-over-slf4j + org.slf4j + + + true + + + org.apache.tiles + tiles-jsp + 3.0.8 + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.apache.tiles + tiles-servlet + 3.0.8 + compile + + + jcl-over-slf4j + org.slf4j + + + true + + + org.codehaus.groovy + groovy-templates + 2.5.8 + compile + true + + + org.freemarker + freemarker + 2.3.28 + compile + true + + + org.jetbrains.kotlin + kotlin-reflect + 1.2.71 + compile + true + + + org.jetbrains.kotlin + kotlin-stdlib + 1.2.71 + compile + true + + + org.reactivestreams + reactive-streams + 1.0.2 + compile + true + + + org.springframework + spring-context-support + 5.1.12.RELEASE + compile + true + + + org.springframework + spring-oxm + 5.1.12.RELEASE + compile + true + + + org.webjars + webjars-locator-core + 0.37 + compile + true + + + javax.servlet + javax.servlet-api + 4.0.1 + provided + + + diff --git a/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.pom.sha1 new file mode 100644 index 00000000..dee0f2a5 --- /dev/null +++ b/artifacts/m2/org/springframework/spring-webmvc/5.1.12.RELEASE/spring-webmvc-5.1.12.RELEASE.pom.sha1 @@ -0,0 +1 @@ +54c9c949a70678eeed7424e4045ce125b9ff690d \ No newline at end of file diff --git a/artifacts/m2/org/tukaani/xz/1.6/_remote.repositories b/artifacts/m2/org/tukaani/xz/1.6/_remote.repositories new file mode 100644 index 00000000..dc57e32c --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.6/_remote.repositories @@ -0,0 +1,3 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:29 CST 2021 +xz-1.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/tukaani/xz/1.6/xz-1.6.pom b/artifacts/m2/org/tukaani/xz/1.6/xz-1.6.pom new file mode 100644 index 00000000..6365ce02 --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.6/xz-1.6.pom @@ -0,0 +1,58 @@ + + + + + + + 4.0.0 + + org.tukaani + xz + 1.6 + jar + + XZ for Java + XZ data compression + http://tukaani.org/xz/java.html + + + + Public Domain + You can do whatever you want with this package. + repo + + + + + http://git.tukaani.org/?p=xz-java.git + scm:git:http://git.tukaani.org/xz-java.git + + + + + Lasse Collin + lasse.collin@tukaani.org + + + + + + + Igor Pavlov + http://7-zip.org/ + + + + diff --git a/artifacts/m2/org/tukaani/xz/1.6/xz-1.6.pom.sha1 b/artifacts/m2/org/tukaani/xz/1.6/xz-1.6.pom.sha1 new file mode 100644 index 00000000..53333fa1 --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.6/xz-1.6.pom.sha1 @@ -0,0 +1 @@ +8d12538bda19e08933e64fdd6f3ff85d871468dc \ No newline at end of file diff --git a/artifacts/m2/org/tukaani/xz/1.8/_remote.repositories b/artifacts/m2/org/tukaani/xz/1.8/_remote.repositories new file mode 100644 index 00000000..159c305a --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.8/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:25 CST 2021 +xz-1.8.jar>repo.jenkins-ci.org= +xz-1.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.jar b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.jar new file mode 100644 index 00000000..9931efa3 Binary files /dev/null and b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.jar differ diff --git a/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.jar.sha1 b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.jar.sha1 new file mode 100644 index 00000000..7455feac --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.jar.sha1 @@ -0,0 +1 @@ +c4f7d054303948eb6a4066194253886c8af07128 \ No newline at end of file diff --git a/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.pom b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.pom new file mode 100644 index 00000000..c4a3cd01 --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.pom @@ -0,0 +1,58 @@ + + + + + + + 4.0.0 + + org.tukaani + xz + 1.8 + jar + + XZ for Java + XZ data compression + https://tukaani.org/xz/java.html + + + + Public Domain + You can do whatever you want with this package. + repo + + + + + https://git.tukaani.org/?p=xz-java.git + scm:git:https://git.tukaani.org/xz-java.git + + + + + Lasse Collin + lasse.collin@tukaani.org + + + + + + + Igor Pavlov + http://7-zip.org/ + + + + diff --git a/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.pom.sha1 b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.pom.sha1 new file mode 100644 index 00000000..388daf3d --- /dev/null +++ b/artifacts/m2/org/tukaani/xz/1.8/xz-1.8.pom.sha1 @@ -0,0 +1 @@ +83c041bde1965b281cf4e6b31ab11bcf4b68a649 \ No newline at end of file diff --git a/artifacts/m2/org/vafer/jdependency/2.1.1/_remote.repositories b/artifacts/m2/org/vafer/jdependency/2.1.1/_remote.repositories new file mode 100644 index 00000000..9f8355b6 --- /dev/null +++ b/artifacts/m2/org/vafer/jdependency/2.1.1/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:53:57 CST 2021 +jdependency-2.1.1.jar>repo.jenkins-ci.org= +jdependency-2.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar new file mode 100644 index 00000000..c1dc8cbd Binary files /dev/null and b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar differ diff --git a/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar.sha1 b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar.sha1 new file mode 100644 index 00000000..3419a89c --- /dev/null +++ b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar.sha1 @@ -0,0 +1 @@ +5f8306ae6f0466f8a53e1f199ce156794414436f \ No newline at end of file diff --git a/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom new file mode 100644 index 00000000..98967ce1 --- /dev/null +++ b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom @@ -0,0 +1,340 @@ + + + 4.0.0 + + 3.0 + + org.vafer + jdependency + jdependency + 2.1.1 + This project provides an API to analyse class dependencies + http://github.com/tcurdt/jdependency + + + tcurdt + Torsten Curdt + tcurdt@apache.org + + Lead Developer + + +1 + + + krosenvold + Kristian Rosenvold + krosenvold@apache.org + + + + + Apache License 2 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + scm:git:git@github.com:tcurdt/jdependency.git + scm:git:git@github.com:tcurdt/jdependency.git + http://github.com/tcurdt/jdependency + jdependency-2.1.1 + + + ${project.build.directory}/test-working-directory + 7.0-beta + -Xdoclint:none + UTF-8 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.2 + + 1.8 + 1.8 + UTF-8 + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.1 + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + prepare-fs-test-input + process-test-resources + + run + + + + + + + + + + + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.18.1 + + + **/*TestCase.java + + + **/Abstract* + + false + ${test.workingDirectory} + + + + + org.jacoco + jacoco-maven-plugin + 0.8.2 + + + + prepare-agent + + agent + + + + report + + report + + + + + + org.eluder.coveralls + coveralls-maven-plugin + 4.3.0 + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.0 + + + package + + shade + + + true + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + commons-io:commons-io + org.ow2.asm:asm + org.ow2.asm:asm-analysis + org.ow2.asm:asm-commons + org.ow2.asm:asm-util + org.ow2.asm:asm-tree + + + + + org.apache.commons + org.vafer.jdeb.shaded.commons + + + org.ow2.asm + org.vafer.jdeb.shaded.asm + + + + + + + + + + + junit + junit + 4.12 + test + + + commons-io + commons-io + 2.6 + + + org.ow2.asm + asm + ${asm.version} + + + org.ow2.asm + asm-analysis + ${asm.version} + + + org.ow2.asm + asm-commons + ${asm.version} + + + org.ow2.asm + asm-util + ${asm.version} + + + org.ow2.asm + asm-tree + ${asm.version} + + + + + sonatype-nexus-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-staging + https://oss.sonatype.org/service/local/staging/deploy/maven2 + + + + true + ${project.build.directory}/site + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.1 + + true + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.8 + + + + project-team + dependencies + license + scm + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + 2.18.1 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.4 + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.codehaus.mojo + taglist-maven-plugin + 2.4 + + + FIXME + TODO + @todo + @deprecated + + true + + + + org.jacoco + jacoco-maven-plugin + + + + report + + + + + + + diff --git a/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom.sha1 b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom.sha1 new file mode 100644 index 00000000..9e707493 --- /dev/null +++ b/artifacts/m2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom.sha1 @@ -0,0 +1 @@ +4fe3cb78bbf85a065851f334bdd00ff28d737d47 \ No newline at end of file diff --git a/artifacts/m2/org/yaml/snakeyaml/1.23/_remote.repositories b/artifacts/m2/org/yaml/snakeyaml/1.23/_remote.repositories new file mode 100644 index 00000000..b6674c3a --- /dev/null +++ b/artifacts/m2/org/yaml/snakeyaml/1.23/_remote.repositories @@ -0,0 +1,4 @@ +#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. +#Fri Jan 29 08:52:01 CST 2021 +snakeyaml-1.23.jar>repo.jenkins-ci.org= +snakeyaml-1.23.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar new file mode 100644 index 00000000..adcef4f7 Binary files /dev/null and b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar differ diff --git a/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar.sha1 b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar.sha1 new file mode 100644 index 00000000..97c72db1 --- /dev/null +++ b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar.sha1 @@ -0,0 +1 @@ +ec62d74fe50689c28c0ff5b35d3aebcaa8b5be68 \ No newline at end of file diff --git a/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom new file mode 100644 index 00000000..4b00f877 --- /dev/null +++ b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom @@ -0,0 +1,833 @@ + + + 4.0.0 + org.yaml + snakeyaml + 1.23 + bundle + + UTF-8 + bitbucket + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + https://oss.sonatype.org/content/repositories/snapshots/ + 1.6 + 1.6 + false + 3.2.17.RELEASE + 3.5.0 + 2.7 + 3.6 + 2.19.1 + deny + + SnakeYAML + YAML 1.1 parser and emitter for Java + 2008 + http://www.snakeyaml.org + + Bitbucket + https://bitbucket.org/asomov/snakeyaml/issues + + + + + SnakeYAML developers and users List + snakeyaml-core@googlegroups.com + + + + scm:hg:http://bitbucket.org/asomov/snakeyaml + scm:hg:ssh://hg@bitbucket.org/asomov/snakeyaml + https://bitbucket.org/asomov/snakeyaml/src + snakeyaml-1.23 + + + + Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + repo + + + + + asomov + Andrey Somov + public.somov@gmail.com + + + maslovalex + Alexander Maslov + alexander.maslov@gmail.com + + + Jordan + Jordan Angold + jordanangold@gmail.com + + + + + junit + junit + 4.12 + test + + + org.apache.commons + commons-lang3 + 3.4 + test + + + commons-io + commons-io + 2.5 + test + + + org.springframework + spring-core + ${spring.version} + test + + + org.springframework + spring-beans + ${spring.version} + test + + + org.springframework + spring-context-support + ${spring.version} + test + + + org.apache.velocity + velocity + 1.6.2 + test + + + joda-time + joda-time + 1.6 + test + + + + + sonatype-nexus-staging + Nexus Release Repository + ${release.repo.url} + + + sonatype-nexus-staging + Sonatype Nexus Snapshots + ${snapshot.repo.url} + false + + + + + + ${basedir}/src/test/resources + true + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + org.yaml.snakeyaml.external.* + + + + org.apache.maven.plugins + maven-site-plugin + ${maven-site-plugin.version} + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + org.codehaus.mojo + cobertura-maven-plugin + ${cobertura-maven-plugin.version} + + + org.apache.maven.plugins + maven-compiler-plugin + 3.6.0 + + + org.codehaus.mojo + build-helper-maven-plugin + 1.12 + + + org.apache.maven.plugins + maven-surefire-plugin + ${maven-surefire-plugin.version} + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce-maven + + enforce + + + + + 3.0.5 + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${maven.compiler.source} + ${maven.compiler.target} + ${project.build.sourceEncoding} + + + + org.apache.maven.plugins + maven-surefire-plugin + + -Xmx512m + + **/*Test.java + + + **/StressTest.java + **/ParallelTest.java + + + + + org.apache.maven.plugins + maven-eclipse-plugin + 2.10 + + bin + + + + org.apache.maven.plugins + maven-changes-plugin + 2.12.1 + + + validate-changes + pre-site + + changes-validate + + + true + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + https://docs.oracle.com/javase/6/docs/api/ + + + + + attach-javadocs + + jar + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + 1.10.b1 + +
src/etc/header.txt
+ false + true + false + + src/**/*.java + + + src/main/java/org/yaml/snakeyaml/external/** + + true + true + true + UTF-8 +
+ + + site + + format + + + +
+ + org.apache.felix + maven-bundle-plugin + ${maven-bundle-plugin.version} + true + + + <_nouses>true + + !org.yaml.snakeyaml.external*, + org.yaml.snakeyaml.*;version=${project.version} + + + + + + maven-site-plugin + ${maven-site-plugin.version} + + + attach-descriptor + + attach-descriptor + + + + + + org.apache.maven.plugins + maven-release-plugin + 2.5.3 + + true + false + android,release + deploy nexus-staging:release + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + sonatype-nexus-staging + https://oss.sonatype.org/ + false + + +
+
+ + + + org.apache.maven.plugins + maven-changes-plugin + 2.11 + + https://bitbucket.org/asomov/snakeyaml/issues/%ISSUE% + + + + + changes-report + + + + + + org.apache.maven.plugins + maven-surefire-report-plugin + ${maven-surefire-plugin.version} + + true + + + + org.apache.maven.plugins + maven-javadoc-plugin + + + html + + API for ${project.name} ${project.version} + API for ${project.name} ${project.version} + Test API for ${project.name} ${project.version} + Test API for ${project.name} ${project.version} + + + javadoc + + + + + + + + + toolchain + + + ${user.home}/.m2/toolchains.xml + + + + + + org.apache.maven.plugins + maven-toolchains-plugin + 1.1 + + + validate + + toolchain + + + + + + + ${maven.compiler.target} + + + + + + + + + build-is-under-jdk6 + + 1.6 + + + 2.5.4 + + + + with-coverage + + + + org.codehaus.mojo + cobertura-maven-plugin + + + 80 + 95 + + + html + xml + + + + org/yaml/snakeyaml/external/** + + + + + + + clean + check + + + + + + + + + + org.codehaus.mojo + cobertura-maven-plugin + + + 85 + 85 + true + + + html + xml + + + + + + cobertura + + + + + + + + + with-java8-tests + + 1.8 + 1.8 + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-java8-test-source + generate-test-sources + + add-test-source + + + + ${basedir}/src/test/java7/ + ${basedir}/src/test/java8/ + + + + + + + + + + with-java11-tests + + 11 + 11 + + + + + org.apache.maven.plugins + maven-surefire-plugin + + --illegal-access=${jdk9-illegal-access-level} -Xmx512m + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + -Xlint:deprecation + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-java11-test-source + generate-test-sources + + add-test-source + + + + ${basedir}/src/test/java7/ + ${basedir}/src/test/java8/ + ${basedir}/src/test/java11/ + + + + + + + + + + release + + + performRelease + true + + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + findbugs + + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.7 + + + + + + + org.apache.maven.plugins + maven-jxr-plugin + 2.5 + + + org.codehaus.mojo + findbugs-maven-plugin + 3.0.4 + + + org.apache.maven.plugins + maven-pmd-plugin + 3.6 + + true + utf-8 + 100 + 1.5 + + **/external/*.java + + + + + + + + android + + ${project.build.directory}/android/src + ${android.src}/main/java + ${android.src}/test/java + ${project.build.directory}/android/classes/ + ${project.build.directory}/android/test-classes/ + + + + + maven-resources-plugin + 3.0.2 + + + copy-src-for-android + generate-sources + + copy-resources + + + ${android.src.main} + + + ${basedir}/src/main/java + false + + org/yaml/snakeyaml/introspector/MethodProperty.java + + + + + + + copy-test-src-for-android + generate-sources + + copy-resources + + + ${android.src.test} + + + ${basedir}/src/test/java + false + + org/yaml/snakeyaml/introspector/MethodProperty.java + + + + + + + copy-test-resources-for-android + process-test-resources + + copy-resources + + + ${android.test.classes} + + + ${basedir}/src/test/resources + true + + + + + + + + + org.apache.maven.plugins + maven-patch-plugin + 1.2 + + ${basedir}/src/patches/android/ + ${android.src} + false + 2 + + + + android-patches + process-sources + + apply + + + ${project.build.directory}/android/patches-applied.txt + true + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.8 + + + build-for-android + compile + + run + + + + + + + + + + + + + + + + + + + + + + + + + + + maven-surefire-plugin + + + test-android + test + + test + + + ${android.classes} + ${project.build.directory}/android/surefire-reports + + ${android.test.classes} + + true + + + + + + maven-jar-plugin + + + package-android-jar + package + + jar + + + ${android.classes} + android + + + + + + + + +
diff --git a/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom.sha1 b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom.sha1 new file mode 100644 index 00000000..505a9895 --- /dev/null +++ b/artifacts/m2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom.sha1 @@ -0,0 +1 @@ +0542a3f938aebd15b1ae655c89344835e502a87d \ No newline at end of file diff --git a/artifacts/m2/slf4j-api-1.7.29.jar b/artifacts/m2/slf4j-api-1.7.29.jar new file mode 100644 index 00000000..81ed475d Binary files /dev/null and b/artifacts/m2/slf4j-api-1.7.29.jar differ diff --git a/artifacts/m2/snakeyaml-1.23.jar b/artifacts/m2/snakeyaml-1.23.jar new file mode 100644 index 00000000..adcef4f7 Binary files /dev/null and b/artifacts/m2/snakeyaml-1.23.jar differ diff --git a/artifacts/m2/spring-aop-5.1.12.RELEASE.jar b/artifacts/m2/spring-aop-5.1.12.RELEASE.jar new file mode 100644 index 00000000..b4a9d193 Binary files /dev/null and b/artifacts/m2/spring-aop-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-beans-5.1.12.RELEASE.jar b/artifacts/m2/spring-beans-5.1.12.RELEASE.jar new file mode 100644 index 00000000..186399cb Binary files /dev/null and b/artifacts/m2/spring-beans-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-2.1.11.RELEASE.jar new file mode 100644 index 00000000..d4a1a0c1 Binary files /dev/null and b/artifacts/m2/spring-boot-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-autoconfigure-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-autoconfigure-2.1.11.RELEASE.jar new file mode 100644 index 00000000..bdfcc2b7 Binary files /dev/null and b/artifacts/m2/spring-boot-autoconfigure-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-starter-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-starter-2.1.11.RELEASE.jar new file mode 100644 index 00000000..9aad66b4 Binary files /dev/null and b/artifacts/m2/spring-boot-starter-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-starter-json-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-starter-json-2.1.11.RELEASE.jar new file mode 100644 index 00000000..26b6efc6 Binary files /dev/null and b/artifacts/m2/spring-boot-starter-json-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-starter-logging-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-starter-logging-2.1.11.RELEASE.jar new file mode 100644 index 00000000..6a3208a0 Binary files /dev/null and b/artifacts/m2/spring-boot-starter-logging-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-starter-tomcat-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-starter-tomcat-2.1.11.RELEASE.jar new file mode 100644 index 00000000..0f289573 Binary files /dev/null and b/artifacts/m2/spring-boot-starter-tomcat-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-boot-starter-web-2.1.11.RELEASE.jar b/artifacts/m2/spring-boot-starter-web-2.1.11.RELEASE.jar new file mode 100644 index 00000000..58c26ce6 Binary files /dev/null and b/artifacts/m2/spring-boot-starter-web-2.1.11.RELEASE.jar differ diff --git a/artifacts/m2/spring-context-5.1.12.RELEASE.jar b/artifacts/m2/spring-context-5.1.12.RELEASE.jar new file mode 100644 index 00000000..194d40dd Binary files /dev/null and b/artifacts/m2/spring-context-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-core-5.1.12.RELEASE.jar b/artifacts/m2/spring-core-5.1.12.RELEASE.jar new file mode 100644 index 00000000..7ce503c7 Binary files /dev/null and b/artifacts/m2/spring-core-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-expression-5.1.12.RELEASE.jar b/artifacts/m2/spring-expression-5.1.12.RELEASE.jar new file mode 100644 index 00000000..144c62d8 Binary files /dev/null and b/artifacts/m2/spring-expression-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-jcl-5.1.12.RELEASE.jar b/artifacts/m2/spring-jcl-5.1.12.RELEASE.jar new file mode 100644 index 00000000..dcf929ac Binary files /dev/null and b/artifacts/m2/spring-jcl-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-web-5.1.12.RELEASE.jar b/artifacts/m2/spring-web-5.1.12.RELEASE.jar new file mode 100644 index 00000000..83a7db3a Binary files /dev/null and b/artifacts/m2/spring-web-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/spring-webmvc-5.1.12.RELEASE.jar b/artifacts/m2/spring-webmvc-5.1.12.RELEASE.jar new file mode 100644 index 00000000..71aefa0f Binary files /dev/null and b/artifacts/m2/spring-webmvc-5.1.12.RELEASE.jar differ diff --git a/artifacts/m2/tomcat-embed-core-9.0.29.jar b/artifacts/m2/tomcat-embed-core-9.0.29.jar new file mode 100644 index 00000000..6e9b4c78 Binary files /dev/null and b/artifacts/m2/tomcat-embed-core-9.0.29.jar differ diff --git a/artifacts/m2/tomcat-embed-el-9.0.29.jar b/artifacts/m2/tomcat-embed-el-9.0.29.jar new file mode 100644 index 00000000..944c15a2 Binary files /dev/null and b/artifacts/m2/tomcat-embed-el-9.0.29.jar differ diff --git a/artifacts/m2/tomcat-embed-websocket-9.0.29.jar b/artifacts/m2/tomcat-embed-websocket-9.0.29.jar new file mode 100644 index 00000000..fc8d9272 Binary files /dev/null and b/artifacts/m2/tomcat-embed-websocket-9.0.29.jar differ diff --git a/artifacts/m2/validation-api-2.0.1.Final.jar b/artifacts/m2/validation-api-2.0.1.Final.jar new file mode 100644 index 00000000..2368e10a Binary files /dev/null and b/artifacts/m2/validation-api-2.0.1.Final.jar differ