diff --git a/.s2i/environment b/.s2i/environment index 492874096981d6d7ba79ded24d0a00fbf582f230..2d1091912f99bbabc445e91eb0533d4f8e024150 100644 --- a/.s2i/environment +++ b/.s2i/environment @@ -1,3 +1 @@ -S2I_DESTINATION=/tmp -MAVEN_ARGS_APPEND=-Dmaven.repo.local=/tmp/src/artifacts/m2 -o -DISABLE_ARTIFACTS=true +S2I_DESTINATION=/tmp \ No newline at end of file diff --git a/Dockerfile-on-prem b/Dockerfile-on-prem deleted file mode 100644 index 69dc369d78762e92c0d81328cf912140324b93c6..0000000000000000000000000000000000000000 --- a/Dockerfile-on-prem +++ /dev/null @@ -1,9 +0,0 @@ -FROM harbor.devops.kubesphere.local:30280/library/java:openjdk-8-jre-alpine - -WORKDIR /home - -COPY target/*.jar /home - -ENTRYPOINT java -jar *.jar - - diff --git a/Jenkinsfile-on-prem b/Jenkinsfile-on-prem deleted file mode 100644 index 1a47ed52fb77e1f7ee25f90fd1693d1292df3647..0000000000000000000000000000000000000000 --- a/Jenkinsfile-on-prem +++ /dev/null @@ -1,119 +0,0 @@ -pipeline { - agent { - node { - label 'maven' - } - } - - parameters { - string(name:'TAG_NAME',defaultValue: '',description:'') - } - - environment { - HARBOR_CREDENTIAL_ID = 'harbor-id' - GITLAB_CREDENTIAL_ID = 'gitlab-id' - KUBECONFIG_CREDENTIAL_ID = 'demo-kubeconfig' - REGISTRY = 'harbor.devops.kubesphere.local:30280' - HARBOR_NAMESPACE = 'library' - GITLAB_ACCOUNT = 'admin1' - APP_NAME = 'devops-java-sample' - SONAR_CREDENTIAL_ID= 'sonar-token' - } - - stages { - stage ('checkout scm') { - steps { - checkout(scm) - } - } - - stage ('unit test') { - steps { - container ('maven') { - sh 'mvn clean -o -gs `pwd`/configuration/settings.xml test' - } - } - } - - stage('sonarqube analysis') { - steps { - container ('maven') { - withCredentials([string(credentialsId: "$SONAR_CREDENTIAL_ID", variable: 'SONAR_TOKEN')]) { - withSonarQubeEnv('sonar') { - sh "mvn sonar:sonar -o -gs `pwd`/configuration/settings.xml -Dsonar.branch=$BRANCH_NAME -Dsonar.login=$SONAR_TOKEN" - } - } - timeout(time: 1, unit: 'HOURS') { - waitForQualityGate abortPipeline: true - } - } - } - } - - stage ('build & push') { - steps { - container ('maven') { - sh 'mvn -o -Dmaven.test.skip=true -gs `pwd`/configuration/settings.xml clean package' - sh 'docker build -f Dockerfile-on-prem -t $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER .' - withCredentials([usernamePassword(passwordVariable : 'DOCKER_PASSWORD' ,usernameVariable : 'DOCKER_USERNAME' ,credentialsId : "$HARBOR_CREDENTIAL_ID" ,)]) { - sh 'echo "$DOCKER_PASSWORD" | docker login $REGISTRY -u "$DOCKER_USERNAME" --password-stdin' - sh 'docker push $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER' - } - } - } - } - - stage('push latest'){ - when{ - branch 'master' - } - steps{ - container ('maven') { - sh 'docker tag $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:latest ' - sh 'docker push $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:latest ' - } - } - } - - stage('deploy to dev') { - when{ - branch 'master' - } - steps { - input(id: 'deploy-to-dev', message: 'deploy to dev?') - kubernetesDeploy(configs: 'deploy/dev/**', 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: "$GITLAB_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@gitlab.devops.kubesphere.local:30080/$GITLAB_ACCOUNT/devops-java-sample.git --tags --ipv4' - } - sh 'docker tag $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:$TAG_NAME ' - sh 'docker push $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:$TAG_NAME ' - } - } - } - 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/**', enableConfigSubstitution: true, kubeconfigId: "$KUBECONFIG_CREDENTIAL_ID") - } - } - } -} diff --git a/Jenkinsfile-online b/Jenkinsfile-online index 67c8a7f209a8971ae1d1500dbbaeda2f333bffe2..5b54bc57349835becd26a5c767e2953fe961c933 100644 --- a/Jenkinsfile-online +++ b/Jenkinsfile-online @@ -11,13 +11,10 @@ pipeline { 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' - SONAR_CREDENTIAL_ID= 'sonar-token' } stages { @@ -30,90 +27,32 @@ pipeline { stage ('unit test') { steps { container ('maven') { - sh 'mvn clean -o -gs `pwd`/configuration/settings.xml test' + sh 'mvn clean test' } } } - stage('sonarqube analysis') { - steps { - container ('maven') { - withCredentials([string(credentialsId: "$SONAR_CREDENTIAL_ID", variable: 'SONAR_TOKEN')]) { - withSonarQubeEnv('sonar') { - sh "mvn sonar:sonar -o -gs `pwd`/configuration/settings.xml -Dsonar.branch=$BRANCH_NAME -Dsonar.login=$SONAR_TOKEN" - } - } - timeout(time: 1, unit: 'HOURS') { - waitForQualityGate abortPipeline: true - } - } - } - } - stage ('build & push') { steps { container ('maven') { - sh 'mvn -o -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 .' + sh 'mvn -Dmaven.test.skip=true clean package' + archiveArtifacts 'target/*.jar' + sh 'docker build -f Dockerfile-online -t $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$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' + sh 'docker push $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BUILD_NUMBER' } } } } 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 ' + sh 'docker tag $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:SNAPSHOT-$BUILD_NUMBER $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:cache ' + sh 'docker push $REGISTRY/$DOCKERHUB_NAMESPACE/$APP_NAME:cache ' } } } - - 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 ' - } - } - } - 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/artifacts/m2/antlr/antlr/2.7.2/_remote.repositories b/artifacts/m2/antlr/antlr/2.7.2/_remote.repositories deleted file mode 100644 index bcd42cd19ea4a38096c53b278e90fb9e45c39805..0000000000000000000000000000000000000000 --- a/artifacts/m2/antlr/antlr/2.7.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -antlr-2.7.2.pom>repo.jenkins-ci.org= -antlr-2.7.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.jar b/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.jar deleted file mode 100644 index 8850fc6e6a9a005b106e9c4dc83e41a542476f75..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.jar and /dev/null differ diff --git a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 b/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 deleted file mode 100644 index 4ce66c518aa30b640a693238147f43da5797c572..0000000000000000000000000000000000000000 --- a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -546b5220622c4d9b2da45ad1899224b6ce1c8830 \ No newline at end of file diff --git a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.pom b/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.pom deleted file mode 100644 index 3384eee98ed012f1897a7b84a3f8832f6320bd73..0000000000000000000000000000000000000000 --- a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - antlr - antlr - 2.7.2 - diff --git a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 b/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 deleted file mode 100644 index 2fe52643725b5df043886e1a90ad082033dc6929..0000000000000000000000000000000000000000 --- a/artifacts/m2/antlr/antlr/2.7.2/antlr-2.7.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60b2b206af3df735765e8e284396bcfdbced5665 \ No newline at end of file diff --git a/artifacts/m2/aopalliance/aopalliance/1.0/_remote.repositories b/artifacts/m2/aopalliance/aopalliance/1.0/_remote.repositories deleted file mode 100644 index 8eccd3964c9170e991122212f67205044b463088..0000000000000000000000000000000000000000 --- a/artifacts/m2/aopalliance/aopalliance/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -aopalliance-1.0.jar>repo.jenkins-ci.org= -aopalliance-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar b/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar deleted file mode 100644 index 578b1a0c359ef88a84461bdb91d9d0041afd54de..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar and /dev/null differ diff --git a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar.sha1 b/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar.sha1 deleted file mode 100644 index ffbdac8fa6675578cba1abfec1d0b03ed6635192..0000000000000000000000000000000000000000 --- a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0235ba8b489512805ac13a8f9ea77a1ca5ebe3e8 \ No newline at end of file diff --git a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom b/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom deleted file mode 100644 index af3323fdcb434223e1c6f8ebb3b4c7eda4ca3ba0..0000000000000000000000000000000000000000 --- a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +++ /dev/null @@ -1,15 +0,0 @@ - - 4.0.0 - aopalliance - aopalliance - AOP alliance - 1.0 - AOP Alliance - http://aopalliance.sourceforge.net - - - - Public Domain - - - \ No newline at end of file diff --git a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.sha1 b/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.sha1 deleted file mode 100644 index 9f91035c88e097f89a97c0f11c605badf45339cb..0000000000000000000000000000000000000000 --- a/artifacts/m2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5128a2b0efbba460a1178d07773618e0986ea152 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-analysis/3.2/_remote.repositories b/artifacts/m2/asm/asm-analysis/3.2/_remote.repositories deleted file mode 100644 index d8f5bad437e1364b5d503377038550cae5bcd1ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-analysis/3.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -asm-analysis-3.2.jar>repo.jenkins-ci.org= -asm-analysis-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.jar b/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.jar deleted file mode 100644 index 282242bb2e6deb2b26c4d07cb4c6c87754afa3d0..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.jar and /dev/null differ diff --git a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 b/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 deleted file mode 100644 index 2c4ccc56ce4581adc36b17fcd118a15cc935cba8..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c624956db93975b7197699dcd7de6145ca7cf2c8 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.pom b/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.pom deleted file mode 100644 index b3933387af7c127e7143b7c43ea9daa26764a706..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.pom +++ /dev/null @@ -1,21 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.2 - - - ASM Analysis - asm-analysis - jar - - - - asm-tree - asm - - - - diff --git a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 b/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 deleted file mode 100644 index dfdb9f6292b6337735ba82f01dfc0b54e52a0096..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-analysis/3.2/asm-analysis-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00d76aa4e2124531798a09a691a75b6fefcb2780 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-commons/3.2/_remote.repositories b/artifacts/m2/asm/asm-commons/3.2/_remote.repositories deleted file mode 100644 index 9ee751b082a1e80ad96799ab48cd7b1de3d4cbcb..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:54 CST 2019 -asm-commons-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-commons/3.2/asm-commons-3.2.pom b/artifacts/m2/asm/asm-commons/3.2/asm-commons-3.2.pom deleted file mode 100644 index 8517715b4a1a196b1b9bc12215293ad8181cf6f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.2/asm-commons-3.2.pom +++ /dev/null @@ -1,21 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.2 - - - ASM Commons - asm-commons - jar - - - - asm-tree - asm - - - - diff --git a/artifacts/m2/asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 b/artifacts/m2/asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 deleted file mode 100644 index bcfbc0e7103d9a9f019a62cb7e7106ab40d1a032..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.2/asm-commons-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a7cfc3449f0f8ab4a791be1aca5c66aef163ed3 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-commons/3.3.1/_remote.repositories b/artifacts/m2/asm/asm-commons/3.3.1/_remote.repositories deleted file mode 100644 index 04989aed2df0d717e21c4cd6e1564ed1da7cde38..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -asm-commons-3.3.1.pom>repo.jenkins-ci.org= -asm-commons-3.3.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar b/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar deleted file mode 100644 index 07cc204e457e925042dcc0310b15d1cd6f3202db..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar and /dev/null differ diff --git a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 b/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 deleted file mode 100644 index a2bd1611af0e7d545ed4999c0c62b511d98adfb8..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fae85e673c73f6f45386dbbcc2ae3aa6398a773f \ No newline at end of file diff --git a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom b/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom deleted file mode 100644 index d0ffe75c34ba7ccbd222ca238e2f6eadb4c3fb4c..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom +++ /dev/null @@ -1,21 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.3.1 - - - ASM Commons - asm-commons - jar - - - - asm-tree - asm - - - - diff --git a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 b/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 deleted file mode 100644 index 7d53cf196010f1006a2d896ead7b805455885576..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -532f312cebaa6fecb9b971e557103bf1ae37fa57 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-parent/3.2/_remote.repositories b/artifacts/m2/asm/asm-parent/3.2/_remote.repositories deleted file mode 100644 index 08e12d8929ddee9c727b4ef2b8bfc18dc32862b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-parent/3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:51 CST 2019 -asm-parent-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-parent/3.2/asm-parent-3.2.pom b/artifacts/m2/asm/asm-parent/3.2/asm-parent-3.2.pom deleted file mode 100644 index 740b1d858bfcaff05887350956ef45e4523a4b31..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-parent/3.2/asm-parent-3.2.pom +++ /dev/null @@ -1,144 +0,0 @@ - - 4.0.0 - - asm-parent - asm - 3.2 - pom - - ASM - A very small and fast Java bytecode manipulation framework - http://asm.objectweb.org/ - - - ObjectWeb - http://www.objectweb.org/ - - 2000 - - - - BSD - http://asm.objectweb.org/license.html - - - - - - Eric Bruneton - ebruneton - ebruneton@free.fr - - Creator - Java Developer - - - - Eugene Kuleshov - eu - eu@javatx.org - - Java Developer - - - - Remi Forax - forax - forax@univ-mlv.fr - - Java Developer - - - - - - scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/tags/ASM_3_2 - scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/tags/ASM_3_2 - http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/tags/ASM_3_2/ - - - - http://forge.objectweb.org/tracker/?group_id=23 - - - - - - - asm - ${project.groupId} - ${project.version} - - - - asm-tree - ${project.groupId} - ${project.version} - - - - asm-analysis - ${project.groupId} - ${project.version} - - - - asm-commons - ${project.groupId} - ${project.version} - - - - asm-util - ${project.groupId} - ${project.version} - - - - asm-xml - ${project.groupId} - ${project.version} - - - - - - - - ASM Users List - sympa@ow2.org?subject=subscribe%20asm - sympa@ow2.org?subject=unsubscribe%20asm - asm@ow2.org - http://www.ow2.org/wws/arc/asm - - - ASM Team List - sympa@ow2.org?subject=subscribe%20asm-team - sympa@ow2.org?subject=unsubscribe%20asm-team - asm-team@ow2.org - http://www.ow2.org/wws/arc/asm-team - - - - - http://mojo.codehaus.org/my-project - - objectweb - false - ObjectWeb Maven 2.0 Repository - dav:https://maven.forge.objectweb.org:8002/maven2/ - default - - - objectweb.snapshots - false - ObjectWeb Maven 2.0 Snapshot Repository - dav:https://maven.forge.objectweb.org:8002/maven2-snapshot/ - default - - - - diff --git a/artifacts/m2/asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 b/artifacts/m2/asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 deleted file mode 100644 index 7c5145506cad729c02a73230463f911517419b28..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-parent/3.2/asm-parent-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7397a51cf41c0ca224eb73355bcbde1d51d0092b \ No newline at end of file diff --git a/artifacts/m2/asm/asm-parent/3.3.1/_remote.repositories b/artifacts/m2/asm/asm-parent/3.3.1/_remote.repositories deleted file mode 100644 index 46b3c51dcf68bf535cccc0a7f416b503dc407228..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-parent/3.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:36 CST 2019 -asm-parent-3.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom b/artifacts/m2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom deleted file mode 100644 index 0b6914ca670b7e37333a95ec865db2e6da6712a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom +++ /dev/null @@ -1,144 +0,0 @@ - - 4.0.0 - - asm-parent - asm - 3.3.1 - pom - - ASM - A very small and fast Java bytecode manipulation framework - http://asm.objectweb.org/ - - - ObjectWeb - http://www.objectweb.org/ - - 2000 - - - - BSD - http://asm.objectweb.org/license.html - - - - - - Eric Bruneton - ebruneton - ebruneton@free.fr - - Creator - Java Developer - - - - Eugene Kuleshov - eu - eu@javatx.org - - Java Developer - - - - Remi Forax - forax - forax@univ-mlv.fr - - Java Developer - - - - - - scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/trunk - scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/trunk - http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/trunk/ - - - - http://forge.objectweb.org/tracker/?group_id=23 - - - - - - - asm - ${project.groupId} - ${project.version} - - - - asm-tree - ${project.groupId} - ${project.version} - - - - asm-analysis - ${project.groupId} - ${project.version} - - - - asm-commons - ${project.groupId} - ${project.version} - - - - asm-util - ${project.groupId} - ${project.version} - - - - asm-xml - ${project.groupId} - ${project.version} - - - - - - - - ASM Users List - sympa@ow2.org?subject=subscribe%20asm - sympa@ow2.org?subject=unsubscribe%20asm - asm@ow2.org - http://www.ow2.org/wws/arc/asm - - - ASM Team List - sympa@ow2.org?subject=subscribe%20asm-team - sympa@ow2.org?subject=unsubscribe%20asm-team - asm-team@ow2.org - http://www.ow2.org/wws/arc/asm-team - - - - - http://mojo.codehaus.org/my-project - - objectweb - false - ObjectWeb Maven 2.0 Repository - dav:https://maven.forge.objectweb.org:8002/maven2/ - default - - - objectweb.snapshots - false - ObjectWeb Maven 2.0 Snapshot Repository - dav:https://maven.forge.objectweb.org:8002/maven2-snapshot/ - default - - - - diff --git a/artifacts/m2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 b/artifacts/m2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 deleted file mode 100644 index cfdc19815ac11a1d55338dec55c936cf45374807..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -72945d9cb6faa5082dcd190da850aa06760e4350 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-tree/3.2/_remote.repositories b/artifacts/m2/asm/asm-tree/3.2/_remote.repositories deleted file mode 100644 index a7530fd6eebeab12b06248a1e36f05f5b7597ca8..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:53 CST 2019 -asm-tree-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-tree/3.2/asm-tree-3.2.pom b/artifacts/m2/asm/asm-tree/3.2/asm-tree-3.2.pom deleted file mode 100644 index 9f454528f4724bd93d88518717798bc32d392c9e..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.2/asm-tree-3.2.pom +++ /dev/null @@ -1,21 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.2 - - - ASM Tree - asm-tree - jar - - - - asm - asm - - - - diff --git a/artifacts/m2/asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 b/artifacts/m2/asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 deleted file mode 100644 index 5674cd24cf123dab7e899cbcf8fce3d966ca13aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.2/asm-tree-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b83f9150f107a54f25b04a20bfa100c3e00d912a \ No newline at end of file diff --git a/artifacts/m2/asm/asm-tree/3.3.1/_remote.repositories b/artifacts/m2/asm/asm-tree/3.3.1/_remote.repositories deleted file mode 100644 index 776ae7ddfcdfb5de317589a1c4429e70f0f3d4de..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -asm-tree-3.3.1.jar>repo.jenkins-ci.org= -asm-tree-3.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar b/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar deleted file mode 100644 index f4b572043ccf568daf5d0c7685f701418c99cda6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar and /dev/null differ diff --git a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 b/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 deleted file mode 100644 index f7c000a6cee77df57ada92e904125525d64b6f1f..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9723d887e26c3049944e46312bb39e7ab1a2ed2 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom b/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom deleted file mode 100644 index da8012cba3239a618db9573fa676d0c6fcb4888e..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom +++ /dev/null @@ -1,21 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.3.1 - - - ASM Tree - asm-tree - jar - - - - asm - asm - - - - diff --git a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 b/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 deleted file mode 100644 index b12b05494a39ec2813635498b68882beb26c4af4..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -73638fb24d3062f87b86fedb2faf44941793d4f1 \ No newline at end of file diff --git a/artifacts/m2/asm/asm-util/3.2/_remote.repositories b/artifacts/m2/asm/asm-util/3.2/_remote.repositories deleted file mode 100644 index f3ebb73d2dc91c02d0c5636807e8bf08b1f87f66..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-util/3.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -asm-util-3.2.jar>repo.jenkins-ci.org= -asm-util-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.jar b/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.jar deleted file mode 100644 index e4bb67013051c5554d6a0ff1fa018f3d945e46d5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.jar and /dev/null differ diff --git a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.jar.sha1 b/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.jar.sha1 deleted file mode 100644 index 04835b05d3453e7519a3b6ad57e5efbdecb72f33..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -37ebfdad34d5f1f45109981465f311bbfbe82dcf \ No newline at end of file diff --git a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.pom b/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.pom deleted file mode 100644 index e302b0f356830810ea59c9347c6657f16f6da41d..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.pom +++ /dev/null @@ -1,21 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.2 - - - ASM Util - asm-util - jar - - - - asm-tree - asm - - - - diff --git a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.pom.sha1 b/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.pom.sha1 deleted file mode 100644 index e049c231c45960bdb552e62edf41d281afd762e2..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm-util/3.2/asm-util-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -de0424e0d3eabd8ca399bb3ea48bb52f6f462cc1 \ No newline at end of file diff --git a/artifacts/m2/asm/asm/3.2/_remote.repositories b/artifacts/m2/asm/asm/3.2/_remote.repositories deleted file mode 100644 index cae3e1f06eca9889689bf57c8b175506eb6d8078..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:51 CST 2019 -asm-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm/3.2/asm-3.2.pom b/artifacts/m2/asm/asm/3.2/asm-3.2.pom deleted file mode 100644 index c714db09b290d611d0f013d6b81ef9dd9698aed5..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.2/asm-3.2.pom +++ /dev/null @@ -1,14 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.2 - - - ASM Core - asm - jar - - diff --git a/artifacts/m2/asm/asm/3.2/asm-3.2.pom.sha1 b/artifacts/m2/asm/asm/3.2/asm-3.2.pom.sha1 deleted file mode 100644 index d25cc31dcf14316ad4345347c828230d95f5aaf3..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.2/asm-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f431066f241793ac805272f821a6325d2bd7bbc0 \ No newline at end of file diff --git a/artifacts/m2/asm/asm/3.3.1/_remote.repositories b/artifacts/m2/asm/asm/3.3.1/_remote.repositories deleted file mode 100644 index 672cb400b7f0a612c8f8aa9fb3985f1b2155208d..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -asm-3.3.1.jar>repo.jenkins-ci.org= -asm-3.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.jar b/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.jar deleted file mode 100644 index f50f03f361a2752892d74db83b35ea7e2e7b6f0a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.jar and /dev/null differ diff --git a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.jar.sha1 b/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.jar.sha1 deleted file mode 100644 index cf2d098121e64533401e97a5c03d368156557803..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1d5f20b4ea675e6fab6ab79f1cd60ec268ddc015 \ No newline at end of file diff --git a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.pom b/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.pom deleted file mode 100644 index 4b4cea601f976e8ac4056fa7a7e097a3ac1e894d..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.pom +++ /dev/null @@ -1,14 +0,0 @@ - - 4.0.0 - - - asm-parent - asm - 3.3.1 - - - ASM Core - asm - jar - - diff --git a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.pom.sha1 b/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.pom.sha1 deleted file mode 100644 index c26fe31e03627fc00d90d8c4c334eef08727dd81..0000000000000000000000000000000000000000 --- a/artifacts/m2/asm/asm/3.3.1/asm-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bbcde0189656fa6cc671f27437432ac7e7f95673 \ No newline at end of file diff --git a/artifacts/m2/avalon-framework/avalon-framework/4.1.3/_remote.repositories b/artifacts/m2/avalon-framework/avalon-framework/4.1.3/_remote.repositories deleted file mode 100644 index 2f0c108073803d2f91436c0fb6fc6a4488b80843..0000000000000000000000000000000000000000 --- a/artifacts/m2/avalon-framework/avalon-framework/4.1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:16 CST 2019 -avalon-framework-4.1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom b/artifacts/m2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom deleted file mode 100644 index f961bdddd3085fa17907dbcdc823de7c7ca3032e..0000000000000000000000000000000000000000 --- a/artifacts/m2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - avalon-framework - avalon-framework - 4.1.3 - diff --git a/artifacts/m2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 b/artifacts/m2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 deleted file mode 100644 index 4feecfdbd797d14e04e53ac7cd7ad154dce5021c..0000000000000000000000000000000000000000 --- a/artifacts/m2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -853c9df18e44caf0bab1eab8be0d482f9ec9bcd7 \ No newline at end of file diff --git a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories b/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories deleted file mode 100644 index 2f24a475bed231bba6d771d50ae37e3579985bfd..0000000000000000000000000000000000000000 --- a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -backport-util-concurrent-3.1.jar>repo.jenkins-ci.org= -backport-util-concurrent-3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar b/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar deleted file mode 100644 index 3a4c2797abfeef86c8e298f542322f6a4a4f0df7..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar and /dev/null differ diff --git a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 b/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 deleted file mode 100644 index a4718beabb0bee1cd1d61c3f0a727d68a9538bd7..0000000000000000000000000000000000000000 --- a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -682f7ac17fed79e92f8e87d8455192b63376347b \ No newline at end of file diff --git a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom b/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom deleted file mode 100644 index 947069078e6334575585fbb0e4e19e488a81a3a9..0000000000000000000000000000000000000000 --- a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - backport-util-concurrent - backport-util-concurrent - 3.1 - jar - Backport of JSR 166 - http://backport-jsr166.sourceforge.net/ - Dawid Kurzyniec's backport of JSR 166 - - - Public Domain - http://creativecommons.org/licenses/publicdomain - repo - - - - svn://dcl.mathcs.emory.edu/software/harness2/trunk/util/backport-util-concurrent/ - - - Dawid Kurzyniec - http://www.mathcs.emory.edu/~dawidk/ - - - diff --git a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 b/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 deleted file mode 100644 index 38542d4e0827c81b2df47b17c18b47f50e6b5901..0000000000000000000000000000000000000000 --- a/artifacts/m2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -24aa8f29c14d1c63225caa6ad5328f1f7a2497a8 \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/_remote.repositories b/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/_remote.repositories deleted file mode 100644 index 8f6d15f22d3e56b8d70c6ed6be37fb2ced216435..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -logback-classic-1.1.7.jar>repo.jenkins-ci.org= -logback-classic-1.1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar b/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar deleted file mode 100644 index e05c037f6ab6a96b0d0876e90e90e9faa7717777..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar and /dev/null differ diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar.sha1 b/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar.sha1 deleted file mode 100644 index ccc81e83b091429078ef9383b4400fbf9e6731c2..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9865cf6994f9ff13fce0bf93f2054ef6c65bb462 \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom b/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom deleted file mode 100644 index 7889050e892dd6f4540c498b354af663c80f6f07..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom +++ /dev/null @@ -1,389 +0,0 @@ - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.1.7 - - - logback-classic - jar - Logback Classic Module - logback-classic module - - - - ch.qos.logback - logback-core - compile - - - org.slf4j - slf4j-api - compile - - - org.slf4j - slf4j-ext - ${slf4j.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 - - - 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 - - - org.apache.geronimo.specs - geronimo-jms_1.1_spec - compile - true - - - javax.servlet - 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 - - - - - - - src/main/groovy - - **/EvaluatorTemplate.groovy - **/*.groovy - - - - src/main/resources - - - - - - - maven-compiler-plugin - - groovy-eclipse-compiler - - - - org.codehaus.groovy - groovy-eclipse-compiler - 2.9.1-01 - - - - org.codehaus.groovy - groovy-eclipse-batch - 2.3.7-01 - - - - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.8 - - - org.eclipse.jdt.groovy.core.groovyNature - - - - **/*.groovy - - - true - true - - - - - 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.7 - - - 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 - - - - - - - - - - - - - - - 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.1.7/logback-classic-1.1.7.pom.sha1 b/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom.sha1 deleted file mode 100644 index 54855928f14424fb03bbc32db39a16ba378fce63..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-classic/1.1.7/logback-classic-1.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -044c01db0f7d7aac366fb952a89c10251ed86f44 \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/_remote.repositories b/artifacts/m2/ch/qos/logback/logback-core/1.1.7/_remote.repositories deleted file mode 100644 index c804cd1d1acba3b465b2c00a34aec5427fc67a88..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -logback-core-1.1.7.jar>repo.jenkins-ci.org= -logback-core-1.1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar b/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar deleted file mode 100644 index f14819b4a58c2221638edd7a04e8d025f3fc5f03..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar and /dev/null differ diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar.sha1 b/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar.sha1 deleted file mode 100644 index 85b4ea5717166bbcb59714cd2872ac0f973f1751..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7873092d39ef741575ca91378a6a21c388363ac8 \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom b/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom deleted file mode 100644 index 3dc947c52f14d93ecb42488dbed6e37a0c965657..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom +++ /dev/null @@ -1,134 +0,0 @@ - - - 4.0.0 - - - ch.qos.logback - logback-parent - 1.1.7 - - - 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.apache.geronimo.specs - geronimo-jms_1.1_spec - compile - true - - - org.mockito - mockito-core - 1.9.5 - test - - - javax.servlet - 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.1.7/logback-core-1.1.7.pom.sha1 b/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom.sha1 deleted file mode 100644 index 123a62b32dc65b818b9c6db954110032aba1d289..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-core/1.1.7/logback-core-1.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d1bdb1e28c56a8f989366b339f0f62545696e6d \ No newline at end of file diff --git a/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/_remote.repositories b/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/_remote.repositories deleted file mode 100644 index fb9f91f12956dfd23140190eab7a117edc352a0a..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:13 CST 2019 -logback-parent-1.1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom b/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom deleted file mode 100644 index d6f84927bb17f41a7c9495913b1cb2b3750291b9..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom +++ /dev/null @@ -1,544 +0,0 @@ - - - 4.0.0 - - ch.qos.logback - logback-parent - 1.1.7 - 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 - - 1.7.20 - 4.10 - 1.4 - 2.7.8 - 2.4.0 - - 1.1.0 - 7.0.59 - 7.5.1.v20110908 - 1.9 - 2.9.1 - 2.6 - 1.9.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-core - ${project.version} - test-jar - - - ch.qos.logback - logback-classic - ${project.version} - - - ch.qos.logback - logback-access - ${project.version} - - - org.slf4j - slf4j-api - ${slf4j.version} - - - 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 - - - hsqldb - hsqldb - 1.8.0.7 - - - 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} - - - org.apache.geronimo.specs - geronimo-jms_1.1_spec - 1.0 - - - javax.servlet - servlet-api - 2.5 - - - joda-time - joda-time - 2.9.2 - - - - - - - - org.apache.maven.wagon - wagon-ssh - 2.8 - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - 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-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - 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.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.0 - - - org.apache.felix - maven-bundle-plugin - 2.5.3 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.14 - - - 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 - 2.5.3 - - - 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.1 - - 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* - - - - - - - - - - - - - - - tao - scp://tao.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.maven-license-plugin - maven-license-plugin - 1.9.0 - -
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.1.7/logback-parent-1.1.7.pom.sha1 b/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom.sha1 deleted file mode 100644 index a2dd1fe7cc4745f2ce26a19e9573361d194812dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/ch/qos/logback/logback-parent/1.1.7/logback-parent-1.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -25e7b42e1cfa6e5518c2a35e0fba0bd744c98e01 \ No newline at end of file diff --git a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/_remote.repositories b/artifacts/m2/classworlds/classworlds/1.1-alpha-2/_remote.repositories deleted file mode 100644 index e0c717bbbef482d7d41937f0a69b2427fdb3e0c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -classworlds-1.1-alpha-2.jar>repo.jenkins-ci.org= -classworlds-1.1-alpha-2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar b/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar deleted file mode 100644 index 1208b4811a6cdae15d966af8e1c14dfcf6e38368..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar and /dev/null differ diff --git a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar.sha1 b/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar.sha1 deleted file mode 100644 index 1b65028b8cc0eff63932704e08e6e938797ae7a0..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -05adf2e681c57d7f48038b602f3ca2254ee82d47 \ No newline at end of file diff --git a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom b/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom deleted file mode 100644 index 6805b5d6cfed81098f3ff2324c9ed44c98493001..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +++ /dev/null @@ -1,95 +0,0 @@ - - 4.0.0 - classworlds - classworlds - classworlds - 1.1-alpha-2 - - http://classworlds.codehaus.org/ - - - -
classworlds-scm@lists.codehaus.org
-
-
-
- 2002 - - - classworlds users - http://lists.codehaus.org/mailman/listinfo/classworlds-user - http://lists.codehaus.org/mailman/listinfo/classworlds-user - http://lists.codehaus.org/pipermail/classworlds-user/ - - - classworlds developers - http://lists.codehaus.org/mailman/listinfo/classworlds-dev - http://lists.codehaus.org/mailman/listinfo/classworlds-dev - http://lists.codehaus.org/pipermail/classworlds-dev/ - - - classworlds commit messages - http://lists.codehaus.org/mailman/listinfo/classworlds-scm - http://lists.codehaus.org/mailman/listinfo/classworlds-scm - http://lists.codehaus.org/pipermail/classworlds-scm/ - - - - - bob - bob mcwhirter - bob@werken.com - The Werken Company - - Founder - - - - jvanzyl - Jason van Zyl - jason@zenplex.com - Zenplex - - Developer - - - - bwalding - Ben Walding - ben@walding.com - Walding Consulting Services - - Developer - - - - - scm:cvs:pserver:anonymous@cvs.codehaus.org:/scm/cvspublic/:classworlds - http://cvs.classworlds.codehaus.org/ - - - The Codehaus - http://codehaus.org/ - - - src/java/main - src/java/test - - - maven-surefire-plugin - - - **/*Test.java - - - - - - - - default - Default Site - scp://classworlds.codehaus.org//www/classworlds.codehaus.org - - -
\ No newline at end of file diff --git a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 b/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 deleted file mode 100644 index d263d91cb34713377775f79b014cf1ee66741fbd..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c8ad6a96a8c1168f8b12ec8a227b8261b160b26 \ No newline at end of file diff --git a/artifacts/m2/classworlds/classworlds/1.1/_remote.repositories b/artifacts/m2/classworlds/classworlds/1.1/_remote.repositories deleted file mode 100644 index b28bc47f46b674db52734dad6a0c5ab537c5c5c9..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -classworlds-1.1.jar>repo.jenkins-ci.org= -classworlds-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.jar b/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.jar deleted file mode 100644 index 6ec5c219e089df7121b9774c6a4234dd677d4d46..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.jar and /dev/null differ diff --git a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1 b/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1 deleted file mode 100644 index 6de4254f1e63229fb68a1b1ed5f22d3c1e2cbb1e..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -60c708f55deeb7c5dfce8a7886ef09cbc1388eca \ No newline at end of file diff --git a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.pom b/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.pom deleted file mode 100644 index 3b5a4844a245a216f6cb2842efac60317fca687d..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.pom +++ /dev/null @@ -1,98 +0,0 @@ - - 4.0.0 - classworlds - classworlds - classworlds - 1.1 - - http://classworlds.codehaus.org/ - - - - -
classworlds-scm@lists.codehaus.org
-
-
-
-
- 2002 - - - classworlds users - http://lists.codehaus.org/mailman/listinfo/classworlds-user - http://lists.codehaus.org/mailman/listinfo/classworlds-user - http://lists.codehaus.org/pipermail/classworlds-user/ - - - classworlds developers - http://lists.codehaus.org/mailman/listinfo/classworlds-dev - http://lists.codehaus.org/mailman/listinfo/classworlds-dev - http://lists.codehaus.org/pipermail/classworlds-dev/ - - - classworlds commit messages - http://lists.codehaus.org/mailman/listinfo/classworlds-scm - http://lists.codehaus.org/mailman/listinfo/classworlds-scm - http://lists.codehaus.org/pipermail/classworlds-scm/ - - - - - bob - bob mcwhirter - bob@werken.com - The Werken Company - - Founder - - - - jvanzyl - Jason van Zyl - jason@zenplex.com - Zenplex - - Developer - - - - bwalding - Ben Walding - ben@walding.com - Walding Consulting Services - - Developer - - - - - scm:cvs:pserver:anonymous@cvs.classworlds.codehaus.org:/home/projects/classworlds/scm/:classworlds - scm:cvs:ext:brett@cvs.classworlds.codehaus.org:/home/projects/classworlds/scm/:classworlds - http://cvs.classworlds.codehaus.org/ - - - The Codehaus - http://codehaus.org/ - - - src/java/main - src/java/test - - - surefire - - - **/*Test.java - - - - - - - - default - Default Site - scp://classworlds.codehaus.org//www/classworlds.codehaus.org - - -
\ No newline at end of file diff --git a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 b/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 deleted file mode 100644 index e6d9f32dd757dcb0c9899cf53ec87dc6d90f5b5b..0000000000000000000000000000000000000000 --- a/artifacts/m2/classworlds/classworlds/1.1/classworlds-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4703c4199028094698c222c17afea6dcd9f04999 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/classmate/1.3.1/_remote.repositories b/artifacts/m2/com/fasterxml/classmate/1.3.1/_remote.repositories deleted file mode 100644 index 9ea2005f0bd9f4ac90511c2839084fecd9194975..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/classmate/1.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -classmate-1.3.1.jar>repo.jenkins-ci.org= -classmate-1.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.jar b/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.jar deleted file mode 100644 index 01bf55b92ab4a5c451c2c18e4e9d163135e7a454..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.jar and /dev/null differ diff --git a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.jar.sha1 b/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.jar.sha1 deleted file mode 100644 index 6dd0ae3e3ce56097d4f06449286f4acaae7f5c50..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -02ad2fd09dcf5607ca96f8ef432096a96986c40a \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.pom b/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.pom deleted file mode 100644 index 4e58c013fb1cbf8574acf4b2f72757850202922e..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.pom +++ /dev/null @@ -1,151 +0,0 @@ - - 4.0.0 - - com.fasterxml - oss-parent - 24 - - classmate - ClassMate - 1.3.1 - bundle - Library for introspecting types with full generic information - including resolving of field and method types. - - http://github.com/cowtowncoder/java-classmate - - scm:git:git@github.com:cowtowncoder/java-classmate.git - scm:git:git@github.com:cowtowncoder/java-classmate.git - http://github.com/cowtowncoder/java-classmate - classmate-1.3.1 - - - - tatu - Tatu Saloranta - tatu@fasterxml.com - - - blangel - Brian Langel - blangel@ocheyedan.net - - - - - 2.2.1 - - - UTF-8 - - com.fasterxml.classmate;version=${project.version}, -com.fasterxml.classmate.*;version=${project.version} - - com.fasterxml.classmate.util.* - - - - - - - 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 - - - - - - - maven-compiler-plugin - 3.2 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - 1.6 - 1.6 - UTF-8 - 512m - - http://docs.oracle.com/javase/7/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.3.1/classmate-1.3.1.pom.sha1 b/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.pom.sha1 deleted file mode 100644 index 9a207b61daea9c8a3bc20156e58cdc85c944747f..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/classmate/1.3.1/classmate-1.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7aa9322b1dd752d81908351675d77040bed4b1ff \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/_remote.repositories deleted file mode 100644 index ba9dc689b333b9e0d7dd6af9943838f00623cb06..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -jackson-annotations-2.8.3.jar>repo.jenkins-ci.org= -jackson-annotations-2.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.jar b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.jar deleted file mode 100644 index 3bce5848944df5a360b8a9217202e152daf8d9c9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.jar and /dev/null differ diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.jar.sha1 deleted file mode 100644 index f2cb480384ada99a41e3b2363ab6d3f11b5cc362..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c4ed3d7e204b1870f3b72f09bbe68ba1f9a55f57 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.pom b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.pom deleted file mode 100644 index 712fc20234d48d6547ec361a21ccaffa63129b98..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - - com.fasterxml.jackson - jackson-parent - 2.8 - - - com.fasterxml.jackson.core - jackson-annotations - Jackson-annotations - 2.8.3 - 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.8.3 - - - - - 1.6 - 1.6 - - 2.5.3 - - com.fasterxml.jackson.annotation.*;version=${project.version} - - - - - junit - junit - test - - - - diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.pom.sha1 deleted file mode 100644 index 7e7b5b3dd8cddfa8366cf4ee119335bf3348bc11..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-annotations/2.8.3/jackson-annotations-2.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6b5c68ee9bf82023e71406038b0d9bbdba6db30a \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/_remote.repositories deleted file mode 100644 index f0d7a12de9910235dca9318ae1e28421534d480f..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -jackson-core-2.8.3.jar>repo.jenkins-ci.org= -jackson-core-2.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.jar b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.jar deleted file mode 100644 index 1b991957b89388a218e9b0bd3b1624af63782548..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.jar and /dev/null differ diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.jar.sha1 deleted file mode 100644 index e0e262695b7e83e9ba84230cb8464f3f61e94167..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e1dc37c96308851c3ff609c250dc849c4b12022 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.pom b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.pom deleted file mode 100644 index d56e66d44798890dbef3bf51b5da9cd8ad7f0f0c..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.pom +++ /dev/null @@ -1,148 +0,0 @@ - - 4.0.0 - - com.fasterxml.jackson - jackson-parent - 2.8 - - - com.fasterxml.jackson.core - jackson-core - Jackson-core - 2.8.3 - bundle - Core Jackson abstractions, basic JSON streaming API implementation - 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.8.3 - - - - - 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 - - - - - junit - junit - test - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - ${javac.src.version} - ${javac.target.version} - UTF-8 - 512m - - http://docs.oracle.com/javase/7/docs/api/ - - - - - attach-javadocs - verify - - jar - - - - - - 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 - - - process-packageVersion - generate-sources - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - true - 1.6 - UTF-8 - 1g - - http://docs.oracle.com/javase/7/docs/api/ - - ${javadoc.package.exclude} - ${sun.boot.class.path} - com.google.doclava.Doclava - false - -J-Xmx1024m - - com.google.doclava - doclava - 1.0.3 - - - -hdf project.name "${project.name} ${project.version}" - -d ${project.reporting.outputDirectory}/apidocs - - - - - default - - javadoc - - - - - - - - diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.pom.sha1 deleted file mode 100644 index 0c14561723225134186f587fef67d24f5678416b..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-core/2.8.3/jackson-core-2.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -226b36d61bee2dc2e70f804fe94c5c9b3258b966 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/_remote.repositories deleted file mode 100644 index a56574c41369bc76ff6221cf8378d1c00f420cdb..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -jackson-databind-2.8.3.jar>repo.jenkins-ci.org= -jackson-databind-2.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.jar b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.jar deleted file mode 100644 index 354d6ab980363ab13fe0cd845d1c2e275ec87c2e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.jar and /dev/null differ diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.jar.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.jar.sha1 deleted file mode 100644 index ea32d9e94552aae4b40798a5b044639ce4ab29b5..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -cea3788c72271d45676ce32c0665991674b24cc5 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.pom b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.pom deleted file mode 100644 index 8e1c828b652cf34adda8d381c8453783abb52683..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.pom +++ /dev/null @@ -1,160 +0,0 @@ - - - 4.0.0 - - - com.fasterxml.jackson - jackson-parent - 2.8 - - - com.fasterxml.jackson.core - jackson-databind - 2.8.3 - 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.8.3 - - - - - 1.7 - 1.7 - - - com.fasterxml.jackson.databind.*;version=${project.version} - - - - com/fasterxml/jackson/databind/cfg - com.fasterxml.jackson.databind.cfg - - - - - - com.fasterxml.jackson.core - jackson-annotations - - - com.fasterxml.jackson.core - jackson-core - 2.8.3 - - - - - - junit - junit - test - - - org.powermock - powermock-module-junit4 - 1.6.5 - test - - - org.powermock - powermock-api-mockito - 1.6.5 - test - - - - javax.measure - jsr-275 - 1.0.0 - test - - - com.google.jimfs - jimfs - 1.1 - test - - - - - - - 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 - ${version.plugin.javadoc} - - - - false - - http://docs.oracle.com/javase/7/docs/api/ - http://fasterxml.github.com/jackson-annotations/javadoc/2.7 - http://fasterxml.github.com/jackson-core/javadoc/2.7 - - - - - - - - com.google.code.maven-replacer-plugin - replacer - - - process-packageVersion - process-sources - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - - - - release - - true - true - - - - - diff --git a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.pom.sha1 deleted file mode 100644 index ca538ec4c513e30a0ce52cad640fef84f536dd0f..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/core/jackson-databind/2.8.3/jackson-databind-2.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e38a61a4673e44597d0cfef10e87888aad12a063 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/_remote.repositories b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/_remote.repositories deleted file mode 100644 index 724aaf398c39d8d63730e85dc0b46a5d916080d9..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:34 CST 2019 -jackson-parent-2.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom deleted file mode 100644 index ef25a880594830b9f123b4d9353a829f6b5b8d3d..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom +++ /dev/null @@ -1,217 +0,0 @@ - - - 4.0.0 - - - com.fasterxml - oss-parent - 27 - - - com.fasterxml.jackson - jackson-parent - 2.8 - 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 - - - - - Simone Tripodi - simonetripodi@apache.org - - - - - 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.8 - - - - 2.8.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 - ${version.jackson.annotations} - - - - junit - junit - ${version.junit} - test - - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4.1 - - - 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.8/jackson-parent-2.8.pom.sha1 b/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom.sha1 deleted file mode 100644 index ad94185fc6b50e5c4e093df1033f282983b14f3f..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d020f5b079a7c1608b08f4f9bd76f73cb9b3a1be \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/oss-parent/24/_remote.repositories b/artifacts/m2/com/fasterxml/oss-parent/24/_remote.repositories deleted file mode 100644 index 3a2cb56e5111c732ab3f74bd6cb9798749eeff6d..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/oss-parent/24/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:33 CST 2019 -oss-parent-24.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/oss-parent/24/oss-parent-24.pom b/artifacts/m2/com/fasterxml/oss-parent/24/oss-parent-24.pom deleted file mode 100644 index 5114fc605d99744c481e3ff77fe4233071a781b0..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/oss-parent/24/oss-parent-24.pom +++ /dev/null @@ -1,539 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 24 - pom - - FasterXML.com parent pom - FasterXML.com parent pom - http://github.com/FasterXML/ - 2012 - - 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-24 - - - 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 - - - 1.6 - 1.6 - - - lines,source,vars - yyyy-MM-dd HH:mm:ssZ - - ${project.groupId}.*;version=${project.version} - * - - - - ${range;[===,=+);${@}} - {maven-resources} - - - - 2.5.3 - - 2.5 - 2.9.1 - - 2.5.2 - 1.5.2 - 2.4 - 2.17 - - 1g - - ${project.build.directory}/generated-sources - - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - - 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.1 - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - - <_nouses>true - - <_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} - - - - - - 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.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-java - validate - - enforce - - - - - [1.5,) - [ERROR] The currently supported version of Java is 1.5 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 - 3.2 - - ${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/6/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 - - 2.1.2 - - - 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 - 1.4 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/artifacts/m2/com/fasterxml/oss-parent/24/oss-parent-24.pom.sha1 b/artifacts/m2/com/fasterxml/oss-parent/24/oss-parent-24.pom.sha1 deleted file mode 100644 index f46d6fa9665832c3652b321e32a104feb8993077..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/oss-parent/24/oss-parent-24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a6601607645f4f5f4ac1e8d9549792a1e33dfda6 \ No newline at end of file diff --git a/artifacts/m2/com/fasterxml/oss-parent/27/_remote.repositories b/artifacts/m2/com/fasterxml/oss-parent/27/_remote.repositories deleted file mode 100644 index c6103dc488fbace381ceafaf8e30e9cc6a3de798..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/oss-parent/27/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:35 CST 2019 -oss-parent-27.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/fasterxml/oss-parent/27/oss-parent-27.pom b/artifacts/m2/com/fasterxml/oss-parent/27/oss-parent-27.pom deleted file mode 100644 index 4422c7cb37e8484c2ead8f8309cf6fb832468178..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/oss-parent/27/oss-parent-27.pom +++ /dev/null @@ -1,544 +0,0 @@ - - - - 4.0.0 - - com.fasterxml - oss-parent - 27 - 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-27 - - - 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 - - - 1.6 - 1.6 - - - lines,source,vars - yyyy-MM-dd HH:mm:ssZ - - ${project.groupId}.*;version=${project.version} - * - - - - ${range;[===,=+);${@}} - {maven-resources} - - - - - - - 3.0.1 - - 2.5 - 2.9.1 - - 2.5.3 - 1.5.2 - 2.4.3 - 2.17 - - 1g - - ${project.build.directory}/generated-sources - - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - - 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.1 - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - org.apache.felix - maven-bundle-plugin - ${version.plugin.bundle} - - - - <_nouses>true - - <_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.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-java - validate - - enforce - - - - - [1.5,) - [ERROR] The currently supported version of Java is 1.5 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 - 3.2 - - ${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 - - 2.1.2 - - - 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 - 1.4 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/artifacts/m2/com/fasterxml/oss-parent/27/oss-parent-27.pom.sha1 b/artifacts/m2/com/fasterxml/oss-parent/27/oss-parent-27.pom.sha1 deleted file mode 100644 index 761910f2796d78f916b4f5522dd28ebf1db89f25..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/fasterxml/oss-parent/27/oss-parent-27.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -605378bdadfe9e432c56f1c390e6feec522f4022 \ No newline at end of file diff --git a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories b/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories deleted file mode 100644 index d8f38ad4be5565a6fa8c5615feebda04e00de62d..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -jsr305-2.0.1.jar>repo.jenkins-ci.org= -jsr305-2.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar b/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar deleted file mode 100644 index 43807b02f35db48dc302b4ade0c72b2141d65cbb..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar and /dev/null differ diff --git a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar.sha1 b/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar.sha1 deleted file mode 100644 index 9c3d6806967e385353d64fdeeb16666f4d000ba5..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -516c03b21d50a644d538de0f0369c620989cd8f0 \ No newline at end of file diff --git a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom b/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom deleted file mode 100644 index 243e11dcb3b16667419fec6fc6ccfa70fc07e9f7..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom +++ /dev/null @@ -1,23 +0,0 @@ - - - 4.0.0 - com.google.code.findbugs - jsr305 - 2.0.1 - jar - http://findbugs.sourceforge.net/ - FindBugs-jsr305 - JSR305 Annotations for Findbugs - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:svn:http://findbugs.googlecode.com/svn/trunk/ - scm:svn:https://findbugs.googlecode.com/svn/trunk/ - http://findbugs.googlecode.com/svn/trunk/ - - diff --git a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom.sha1 b/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom.sha1 deleted file mode 100644 index a7cf109e06e941f5bdf6cdbc0a1b64b91bf09f06..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -95efa8cea662452bb74b34abe09a93ff47625c8f \ No newline at end of file diff --git a/artifacts/m2/com/google/collections/google-collections/1.0/_remote.repositories b/artifacts/m2/com/google/collections/google-collections/1.0/_remote.repositories deleted file mode 100644 index e2b9a20eff9078cfa2628697f239418bc8510ac6..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/collections/google-collections/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -google-collections-1.0.jar>repo.jenkins-ci.org= -google-collections-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.jar b/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.jar deleted file mode 100644 index 8e394facdf9169ae6df0595e1602318c1f4dbfba..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.jar and /dev/null differ diff --git a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.jar.sha1 b/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.jar.sha1 deleted file mode 100644 index 88386204b1603c0497e405a899da15492ff78b0d..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9ffe71ac6dcab6bc03ea13f5c2e7b2804e69b357 \ No newline at end of file diff --git a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.pom b/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.pom deleted file mode 100644 index 655ffa5e65b8db60579d9a7ec1ba9ab5213bc3cf..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - 4.0.0 - - com.google - google - 1 - - com.google.collections - google-collections - 1.0 - jar - Google Collections Library - Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0 - 2007 - http://code.google.com/p/google-collections/ - - Google - http://www.google.com - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - http://code.google.com/p/google-collections/source/browse/ - scm:svn:http://google-collections.googlecode.com/svn/trunk/ - - - - - google-maven-repository - Google Maven Repository - dav:https://google-maven-repository.googlecode.com/svn/repository/ - - - google-maven-snapshot-repository - Google Maven Snapshot Repository - dav:https://google-maven-repository.googlecode.com/svn/snapshot-repository/ - true - - - - - com.google.code.findbugs - jsr305 - 1.3.7 - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - - diff --git a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 b/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 deleted file mode 100644 index 84123b6df8fc97264c02b53d61af0750746af813..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/collections/google-collections/1.0/google-collections-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -292197f3cb1ebc0dd03e20897e4250b265177286 \ No newline at end of file diff --git a/artifacts/m2/com/google/google/1/_remote.repositories b/artifacts/m2/com/google/google/1/_remote.repositories deleted file mode 100644 index 358ec44ed088f5d824217a68d57cc23540d1abe8..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/google/1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:05 CST 2019 -google-1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/google/1/google-1.pom b/artifacts/m2/com/google/google/1/google-1.pom deleted file mode 100644 index 05d0df043553210486b9de03bef49f4f5ea705f8..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/google/1/google-1.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - 4.0.0 - com.google - google - 1 - Google - Internally developed code released as open source. - pom - - Google - http://www.google.com/ - - http://code.google.com/hosting/projects.html - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - google-maven-repository - Google Maven Repository - dav:https://google-maven-repository.googlecode.com/svn/repository/ - - - google-maven-snapshot-repository - Google Maven Snapshot Repository - dav:https://google-maven-repository.googlecode.com/svn/snapshot-repository/ - true - - - diff --git a/artifacts/m2/com/google/google/1/google-1.pom.sha1 b/artifacts/m2/com/google/google/1/google-1.pom.sha1 deleted file mode 100644 index 9be16a3f50e9582dd1e8852d930c79e9793a86b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/google/1/google-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c35a5268151b7a1bbb77f7ee94a950f00e32db61 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava-parent/18.0/_remote.repositories b/artifacts/m2/com/google/guava/guava-parent/18.0/_remote.repositories deleted file mode 100644 index f84bd12c2931535ccaf9f7ba90c34e141c8f844a..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava-parent/18.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:52 CST 2019 -guava-parent-18.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom b/artifacts/m2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom deleted file mode 100644 index dac208f94c5041e0958890a803a218b52d978739..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom +++ /dev/null @@ -1,248 +0,0 @@ - - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - - com.google.guava - guava-parent - 18.0 - pom - Guava Maven Parent - http://code.google.com/p/guava-libraries - - true - - **/*Test.java - 0.23 - - - 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* - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.7 - - - org.codehaus.mojo.signature - java16-sun - 1.0 - - - - - check-java16-sun - test - - check - - - - - - 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} - - - - - - - - - guava-site - Guava Documentation Site - scp://dummy.server/dontinstall/usestaging - - - - - - com.google.code.findbugs - jsr305 - 1.3.9 - - - 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 - 0.5-rc1 - test - - - - com.google.guava - guava - - - - - - diff --git a/artifacts/m2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom.sha1 b/artifacts/m2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom.sha1 deleted file mode 100644 index 5a15eba1beb09e4a65907a64a6994a8cbd233137..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5398932a9ef2828eb9fc4f01e8d6cac626c219d2 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava/18.0/_remote.repositories b/artifacts/m2/com/google/guava/guava/18.0/_remote.repositories deleted file mode 100644 index 442ede0fc9452f0494467e32748b72297299e051..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava/18.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -guava-18.0.jar>repo.jenkins-ci.org= -guava-18.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.jar b/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.jar deleted file mode 100644 index 8f89e490180121500dfb1e65b3ebd8f1a7a4c3b1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.jar and /dev/null differ diff --git a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.jar.sha1 b/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.jar.sha1 deleted file mode 100644 index 87f7acb8158eca2cfcb9924153d22a825c1de93d..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -cce0823396aa693798f8882e64213b1772032b09 \ No newline at end of file diff --git a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.pom b/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.pom deleted file mode 100644 index 4cf038a54688c61df1047bf46d8db234786bed9a..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.pom +++ /dev/null @@ -1,149 +0,0 @@ - - - 4.0.0 - - com.google.guava - guava-parent - 18.0 - - 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, - 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 - true - ${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 - - - 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/18.0/guava-18.0.pom.sha1 b/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.pom.sha1 deleted file mode 100644 index 2dc6f0a92637a525fd4500662918799604990239..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/google/guava/guava/18.0/guava-18.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2ec12f8d27a64e970b8be0fbd1d52dfec51cd41c \ No newline at end of file diff --git a/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/_remote.repositories b/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/_remote.repositories deleted file mode 100644 index f04a24ed39dd9cfc13abf4d725a1185a7ade6f50..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:33 CST 2019 -xstream-1.4.3.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar b/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar deleted file mode 100644 index 815ed039b3a1c5fffbdefaabc2c1e673fa67e58b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar and /dev/null differ diff --git a/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar.sha1 b/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar.sha1 deleted file mode 100644 index c1bd816fcef6534ed1a30a0a4adf691f5ac6c00b..0000000000000000000000000000000000000000 --- a/artifacts/m2/com/thoughtworks/xstream/xstream/1.4.3/xstream-1.4.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3427c153a5ad0f2cfa923528ad8be875c8cb1cff \ No newline at end of file diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.6/_remote.repositories b/artifacts/m2/commons-beanutils/commons-beanutils/1.6/_remote.repositories deleted file mode 100644 index 68998478755f1e2e3ef4c123bf3a34269aa9a8d4..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:56 CST 2019 -commons-beanutils-1.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom b/artifacts/m2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom deleted file mode 100644 index d327b815cb9e7ded0c415abb7561e14e78f9b24b..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom +++ /dev/null @@ -1,78 +0,0 @@ - - 4.0.0 - commons-beanutils - commons-beanutils - BeanUtils - 1.6 - Java Bean Utililities - http://jakarta.apache.org/commons/beanutils/ - 2000 - - - rdonkin - Robert Burrell Donkin - rdonkin@apache.org - Apache Software Foundation - - - dion - dIon Gillard - dion@apache.org - Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc@apache.org - Apache Software Foundation - - - geirm - Geir Magnusson Jr. - geirm@apache.org - Apache Software Foundation - - - sanders - Scott Sanders - sanders@apache.org - Apache Software Foundation - - - rwaldhoff - Rodney Waldhoff - rwaldhoff@apache.org - Apache Software Foundation - - - - - - maven-surefire-plugin - - - **/*TestCase.java - - - - - - - - commons-logging - commons-logging - 1.0 - - - commons-collections - commons-collections - 2.0 - - - junit - junit - 3.7 - test - - - \ No newline at end of file diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 b/artifacts/m2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 deleted file mode 100644 index 5c7915849b5a6018a6c8b1d0446315ce668f1170..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cb6192708aa48ef75e8d04bcde65bc8d5a6ccdbf \ No newline at end of file diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/_remote.repositories b/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/_remote.repositories deleted file mode 100644 index 13a1d2b220bb8381d13a92162d7ad99ca3ca9c93..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-beanutils-1.7.0.pom>repo.jenkins-ci.org= -commons-beanutils-1.7.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar b/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar deleted file mode 100644 index b1b89c9c921f16af22a88db3ff28975a8e40d886..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar and /dev/null differ diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 b/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 deleted file mode 100644 index 1f5da0e0ea5f6729f0d08f6e8ad35835c05b994f..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5675fd96b29656504b86029551973d60fb41339b \ No newline at end of file diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom b/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom deleted file mode 100644 index a8c4f719e58ea684f3a32c8cac8408f5e7b588a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom +++ /dev/null @@ -1,13 +0,0 @@ - - 4.0.0 - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-logging - commons-logging - 1.0.3 - - - \ No newline at end of file diff --git a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 b/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 deleted file mode 100644 index afebb52f757377223e0904bd1b892ebf4491e844..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -19eca029edacc1be30030faf43ea6acb30556d1a \ No newline at end of file diff --git a/artifacts/m2/commons-chain/commons-chain/1.1/_remote.repositories b/artifacts/m2/commons-chain/commons-chain/1.1/_remote.repositories deleted file mode 100644 index d3dfaa6a10ca0578e242b9dd5fbca62ce474efc9..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-chain/commons-chain/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-chain-1.1.jar>repo.jenkins-ci.org= -commons-chain-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar b/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar deleted file mode 100644 index 60c027ef3f02594ff891c5639220208c3375fa5a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar and /dev/null differ diff --git a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 b/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 deleted file mode 100644 index 94d43c739fbc9740a93190f68306c64995436be3..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3038bd41dcdb2b63b8c6dcc8c15f0fdf3f389012 \ No newline at end of file diff --git a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom b/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom deleted file mode 100644 index 4e94a13a963dacb203c7aa61c95a01161716a271..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +++ /dev/null @@ -1,184 +0,0 @@ - - 4.0.0 - commons-chain - commons-chain - Commons Chain - 1.1 - An implmentation of the GoF Chain of Responsibility pattern - http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - http://issues.apache.org/jira/ - - 2003 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - craigmcc - Craig McClanahan - craigmcc@apache.org - - - husted - Ted Husted - husted@apache.org - - - martinc - Martin Cooper - martinc@apache.org - Informatica - - - mrdon - Don Brown - mrdon@apache.org - - - jmitchell - James Mitchell - jmitchell at apache.org - - - germuska - Joe Germuska - germuska at apache.org - - - niallp - Niall Pemberton - niallp at apache.org - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - http://svn.apache.org/viewcvs.cgi - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - ${pom.build.unitTestSourceDirectory} - - **/*.xml - - - - META-INF - ${basedir} - - NOTICE.txt - - - - - - maven-surefire-plugin - - - **/*TestCase.java - - - - - maven-xdoc-plugin - 1.9.2 - - <strong>Site Only</strong> - v1.9.2 (minimum) - required for building the Chain Site documentation. - - - - maven-changelog-plugin - 1.8.2 - - <strong>Site Only</strong> - v1.8.2 (minimum) - required for building the Chain Site documentation. - - - - maven-changes-plugin - 1.6 - - <strong>Site Only</strong> - v1.6 (minimum) - required for building the Chain Site documentation. - - - - - - - javax.servlet - servlet-api - 2.3 - provided - - - javax.portlet - portlet-api - 1.0 - - - myfaces - myfaces-api - 1.1.0 - - - junit - junit - 3.8.1 - test - - - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-digester - commons-digester - 1.6 - - - commons-logging - commons-logging - 1.0.3 - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/ - - - default - Default Site - scp://people.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - converted - - diff --git a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 b/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 deleted file mode 100644 index 73654fcf2b4cc57ea94201531e26179d8f252cda..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9925db0ce8bea3b13afdf0565bb1a14c1c8c645c \ No newline at end of file diff --git a/artifacts/m2/commons-cli/commons-cli/1.0/_remote.repositories b/artifacts/m2/commons-cli/commons-cli/1.0/_remote.repositories deleted file mode 100644 index 7b04db0da1fdb4556abd469018c5104419a08265..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -commons-cli-1.0.jar>repo.jenkins-ci.org= -commons-cli-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar b/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar deleted file mode 100644 index 22a004e14e16720cae9af97d4d1475b12d2388aa..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar and /dev/null differ diff --git a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 b/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 deleted file mode 100644 index c22c98b0e37f7c4d1e8262643cedb8d129f57b6c..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6dac9733315224fc562f6268df58e92d65fd0137 \ No newline at end of file diff --git a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom b/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom deleted file mode 100644 index cfc5a04d7886ae9c306445afdf224f1401b1f48c..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom +++ /dev/null @@ -1,76 +0,0 @@ - - 4.0.0 - commons-cli - commons-cli - CLI - 1.0 - Commons CLI provides a simple API for working with the command line arguments and options. - 2002 - - - jstrachan - James Strachan - jstrachan@apache.org - SpiritSoft, Inc. - - - bob - bob mcwhirter - bob@werken.com - Werken - - - jkeyes - John Keyes - jbjk@mac.com - integral Source - - - - - Berin Loritsch - bloritsch@apache.org - - helped in the Avalon CLI merge - - - - Peter Maddocks - peter_maddocks@hp.com - Hewlett-Packard - - supplied patch - - - - - - - maven-surefire-plugin - - - **/*Test*.java - - - - - - - - commons-logging - commons-logging - 1.0 - - - commons-lang - commons-lang - 1.0 - - - junit - junit - 3.7 - test - - - \ No newline at end of file diff --git a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 b/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 deleted file mode 100644 index a89d7c504134bd067ab65dace0f985d16872ab9f..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bc51fd74ed7c8ccf75b3abc84b3613d6ba60eb89 \ No newline at end of file diff --git a/artifacts/m2/commons-cli/commons-cli/1.2/_remote.repositories b/artifacts/m2/commons-cli/commons-cli/1.2/_remote.repositories deleted file mode 100644 index 49b06a0464e94b60b1976087de65e5bdc7531ea3..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-cli-1.2.jar>repo.jenkins-ci.org= -commons-cli-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar b/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar deleted file mode 100644 index ce4b9fffe40c41669797cd806ac989471b2acd84..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar and /dev/null differ diff --git a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar.sha1 b/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar.sha1 deleted file mode 100644 index d38d00127e8cdd7e64ca2a08c3663d35644f97a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2bf96b7aa8b611c177d329452af1dc933e14501c \ No newline at end of file diff --git a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom b/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom deleted file mode 100644 index 86c7284fd7a7de5ff5281a64b9d6cba7bf25ce3a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +++ /dev/null @@ -1,250 +0,0 @@ - - - - - org.apache.commons - commons-parent - 11 - - 4.0.0 - commons-cli - commons-cli - 1.2 - Commons CLI - - 2002 - - Commons CLI provides a simple API for presenting, processing and validating a command line interface. - - - http://commons.apache.org/cli/ - - - jira - http://issues.apache.org/jira/browse/CLI - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x/ - scm:svn:https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x/ - http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/ - - - - - James Strachan - jstrachan - jstrachan@apache.org - SpiritSoft, Inc. - - - Bob McWhirter - bob - bob@werken.com - Werken - - contributed ideas and code from werken.opt - - - - John Keyes - jkeyes - jbjk@mac.com - integral Source - - contributed ideas and code from Optz - - - - Rob Oxspring - roxspring - roxspring@imapmail.org - Indigo Stone - - designed CLI2 - - - - - - - Peter Donald - - contributed ideas and code from Avalon Excalibur's cli package - - - - Brian Egge - - made the 1.1 release happen - - - - Berin Loritsch - bloritsch@apache.org - - helped in the Avalon CLI merge - - - - Peter Maddocks - peter_maddocks@hp.com - Hewlett-Packard - - supplied patch - - - - Andrew Shirley - - lots of fixes for 1.1 - - - - - - - - junit - junit - 3.8.1 - test - - - - - 1.4 - 1.4 - cli - 1.2 - commons-cli-${commons.release.version} - org.apache.commons.cli - - CLI - 12310463 - - RC7 - - - - src/java - src/test - - - - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 1.2 - - Normal - Default - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - src/conf/checkstyle.xml - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.1 - - 1.1 - - - - - - - - - - gump - - - maven.final.name - - - - - - maven-jar-plugin - - ${maven.final.name} - - - - - - - rc - - - - apache.website - Apache Commons Release Candidate Staging Site - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site - - - - - - diff --git a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom.sha1 b/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom.sha1 deleted file mode 100644 index 6a9443c538c6dcd381ae7156c82e155bf5dfc8ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e1b71e4b511c3c63f8b19d0302fe1d1c6e79035a \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.2/_remote.repositories b/artifacts/m2/commons-codec/commons-codec/1.2/_remote.repositories deleted file mode 100644 index 43d6cb2cb502502d464aa6826a029ada01567c75..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -commons-codec-1.2.jar>repo.jenkins-ci.org= -commons-codec-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar b/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar deleted file mode 100644 index 67cb720f5ed3f5c81a41accd02a09f4108d8b9ef..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar and /dev/null differ diff --git a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 b/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 deleted file mode 100644 index c3f1aa50510e10eb7ddac4dde0084f8865992588..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -397f4731a9f9b6eb1907e224911c77ea3aa27a8b \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom b/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom deleted file mode 100644 index 0ff5e43a11c6f55bbda40c5ea68c1fcef95002d6..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom +++ /dev/null @@ -1,113 +0,0 @@ - - 4.0.0 - commons-codec - commons-codec - Codec - 1.2 - The 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. - - http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Commons&component=Codec&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time - - 2002 - - - bayard - Henri Yandell - bayard@generationjava.com - - - tobrien - Tim OBrien - tobrien@apache.org - -6 - - - sanders - Scott Sanders - sanders@totalsync.com - - - rwaldhoff - Rodney Waldhoff - rwaldhoff@apache.org - - - dlr - Daniel Rall - dlr@finemaltcoding.com - - - jon - Jon S. Stevens - jon@collab.net - - - ggregory - Gary D. Gregory - ggregory@seagullsw.com - SEAGULL Software - - Java Developer - - - - dgraham - David Graham - dgraham@apache.org - - - - - Christopher O'Brien - siege@preoccupied.net - - - Martin Redington - - - Jeffery Dever - - - Steve Zimmermann - steve.zimmermann@heii.com - - - Benjamin Walstrum - ben@walstrum.com - - - Oleg Kalnichevski - oleg@ural.ru - - - Dave Dribin - apache@dave.dribin.org - - - - - - ${pom.build.unitTestSourceDirectory} - - **/*.xml - - - - - - maven-surefire-plugin - - - **/*Test.java - - - **/*AbstractTest.java - - - - - - \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 b/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 deleted file mode 100644 index 6829e7c1a83ce947fe059f524b2556b2e7846b1f..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3924208ea1e84feb88701e9a5000bc65c66fb335 \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.3/_remote.repositories b/artifacts/m2/commons-codec/commons-codec/1.3/_remote.repositories deleted file mode 100644 index 0c37293020b340524f4a77beac6ac4b8dfc61e11..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-codec-1.3.jar>repo.jenkins-ci.org= -commons-codec-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar b/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar deleted file mode 100644 index 957b6752af9a60c1bb2a4f65db0e90e5ce00f521..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar and /dev/null differ diff --git a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 b/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 deleted file mode 100644 index d54f91eb0be51bd004100d08d7c26195fc7c9bb5..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd32786786e2adb664d5ecc965da47629dca14ba \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom b/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom deleted file mode 100644 index dab16e299b1cdfafdcbbacb9f6ff9de7fdf52c75..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom +++ /dev/null @@ -1,178 +0,0 @@ - - 4.0.0 - commons-codec - commons-codec - Codec - 1.3 - The 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. - http://jakarta.apache.org/commons/codec/ - - http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Commons&component=Codec&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time - - - - -
commons-dev@jakarta.apache.org
-
-
-
- 2002 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - bayard - Henri Yandell - bayard@generationjava.com - - - tobrien - Tim OBrien - tobrien@apache.org - -6 - - - sanders - Scott Sanders - sanders@totalsync.com - - - rwaldhoff - Rodney Waldhoff - rwaldhoff@apache.org - - - dlr - Daniel Rall - dlr@finemaltcoding.com - - - jon - Jon S. Stevens - jon@collab.net - - - ggregory - Gary D. Gregory - ggregory@seagullsw.com - Seagull Software - -8 - - - dgraham - David Graham - dgraham@apache.org - - - - - Christopher O'Brien - siege@preoccupied.net - - - Martin Redington - - - Jeffery Dever - - - Steve Zimmermann - steve.zimmermann@heii.com - - - Benjamin Walstrum - ben@walstrum.com - - - Oleg Kalnichevski - oleg@ural.ru - - - Dave Dribin - apache@dave.dribin.org - - - Alex Karasulu - aok123 at bellsouth.net - - - Matthew Inger - mattinger at yahoo.com - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/codec - http://cvs.apache.org/viewcvs/jakarta-commons/codec/ - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - src/test - - **/*.xml - - - - - - maven-surefire-plugin - - - **/Test*.java - **/*Test.java - - - **/*AbstractTest.java - - - - - - - - junit - junit - 3.8.1 - test - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/codec/ - - - default - Default Site - scp://jakarta.apache.org//www/jakarta.apache.org/commons/codec/ - - -
\ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 b/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 deleted file mode 100644 index 3ef85b8c5b27aac242690d442db8818f19fd9b98..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c5a7a1a49dac255ed78180d5fae26cfaa5e48147 \ No newline at end of file diff --git a/artifacts/m2/commons-codec/commons-codec/1.6/_remote.repositories b/artifacts/m2/commons-codec/commons-codec/1.6/_remote.repositories deleted file mode 100644 index f6f39490e052f35d6fafecebacafd651b7f7eb28..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:25 CST 2019 -commons-codec-1.6.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar b/artifacts/m2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar deleted file mode 100644 index ee1bc49acae11cc79eceec51f7be785590e99fd8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar and /dev/null differ diff --git a/artifacts/m2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar.sha1 b/artifacts/m2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar.sha1 deleted file mode 100644 index fed203a210625f8c3a33252e05c687fb340cf21b..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7f0fc8f61ecadeb3695f0b9464755eee44374d4 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/2.0/_remote.repositories b/artifacts/m2/commons-collections/commons-collections/2.0/_remote.repositories deleted file mode 100644 index c3ae38a73f33abce07ae728a731280238985f934..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:57 CST 2019 -commons-collections-2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom b/artifacts/m2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom deleted file mode 100644 index cc2b02388ed648a071ba044d307adb97cdfc145a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - commons-collections - commons-collections - 2.0 - diff --git a/artifacts/m2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 b/artifacts/m2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 deleted file mode 100644 index d58dfbae023c405fa94871cb95b713c6cfb5d3a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b0d78d06e725d7f8176256eaeceb9d5b3f0a7bca \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/2.1/_remote.repositories b/artifacts/m2/commons-collections/commons-collections/2.1/_remote.repositories deleted file mode 100644 index 82367d982a03d8db94fae7ff8d5a7d50e57f4310..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:58 CST 2019 -commons-collections-2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom b/artifacts/m2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom deleted file mode 100644 index f64e59a17875527bc7c8594565234e3a839560b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +++ /dev/null @@ -1,94 +0,0 @@ - - 4.0.0 - commons-collections - commons-collections - Collections - 2.1 - Commons Collections - 2002 - - - - Morgan Delagrange - - - - - - Geir Magnusson - - - - - - Craig McClanahan - - - - - rwaldof - Rodney Waldoff - - - - - - David Weinrich - - - - - - - - maven-surefire-plugin - - - **/TestAll.java - **/BulkTest.java - **/TestComparableComparator.java - **/TestComparatorChain.java - **/TestComparator.java - **/TestCursorableLinkedList.java - **/TestNullComparator.java - **/TestReverseComparator.java - **/LocalTestNode.java - **/TestAbstractIntArrayList.java - **/TestAbstractLongArrayList.java - **/TestAbstractShortArrayList.java - **/TestArrayList.java - **/TestArrayStack.java - **/TestBag.java - **/TestCollection.java - **/TestFastArrayList1.java - **/TestFastArrayList.java - **/TestFastHashMap1.java - **/TestFastHashMap.java - **/TestFastTreeMap1.java - **/TestFastTreeMap.java - **/TestIterator.java - **/TestList.java - **/TestLRUMap.java - **/TestMap.java - **/TestMultiHashMap.java - **/TestObject.java - **/TestProxyMap.java - **/TestSequencedHashMap.java - **/TestSoftRefHashMap.java - **/TestSet.java - **/TestTreeMap.java - **/TestPredicatedCollection.java - - - - - - - - junit - junit - 3.7 - test - - - \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 b/artifacts/m2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 deleted file mode 100644 index 08a19ca6cccc24d57ec11a9ddfc7642ac9517889..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -03ac124c9f50b403afc9819e1f430d6883e77213 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.1/_remote.repositories b/artifacts/m2/commons-collections/commons-collections/3.1/_remote.repositories deleted file mode 100644 index 28b829a71758d823172c1ddc7197c8f2fb9c8dae..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:52 CST 2019 -commons-collections-3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom b/artifacts/m2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom deleted file mode 100644 index 67e185196d6f22dbf59c41b50dfaae639a757537..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +++ /dev/null @@ -1,249 +0,0 @@ - - 4.0.0 - commons-collections - commons-collections - 3.1 - Types that extend and augment the Java Collections Framework. - 2001 - - - scolebourne - Stephen Colebourne - - - - - morgand - Morgan Delagrange - - - - - matth - Matthew Hawthorne - - - - - geirm - Geir Magnusson - - - - - craigmcc - Craig McClanahan - - - - - psteitz - Phil Steitz - - - - - amamment - Arun M. Thomas - - - - - rwaldhoff - Rodney Waldhoff - - - - - bayard - Henri Yandell - - - - - - - Max Rydahl Andersen - - - Federico Barbieri - - - Arron Bates - - - Nicola Ken Barozzi - - - Ola Berg - - - Christopher Berry - - - Janek Bogucki - - - Chuck Burdick - - - Dave Bryson - - - Julien Buret - - - Jonathan Carlson - - - Ram Chidambaram - - - Peter Donald - - - Steve Downey - - - Rich Dougherty - - - Stefano Fornari - - - Andrew Freeman - - - Gerhard Froehlich - - - Paul Jack - - - Eric Johnson - - - Kent Johnson - - - Marc Johnson - - - Nissim Karpenstein - - - Mohan Kishore - - - Simon Kitching - - - Peter KoBek - - - David Leppik - - - Berin Loritsch - - - Stefano Mazzocchi - - - Brian McCallister - - - Leon Messerschmidt - - - Mauricio S. Moura - - - Kasper Nielsen - - - Steve Phelps - - - Ilkka Priha - - - Herve Quiroz - - - Daniel Rall - - - Henning P. Schmiedehausen - - - Howard Lewis Ship - - - Joe Raysa - - - Michael Smith - - - Jan Sorensen - - - Jon S. Stevens - - - James Strachan - - - Leo Sutic - - - Neil O'Toole - - - Jeff Turner - - - Jeff Varszegi - - - Ralph Wagner - - - David Weinrich - - - Dieter Wimberger - - - Serhiy Yevtushenko - - - Jason van Zyl - - - - Apache Software Foundation - http://www.apache.org - - - - - maven-surefire-plugin - - - org/apache/commons/collections/TestAllPackages.java - - - - - - - - junit - junit - 3.8.1 - test - - - \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 b/artifacts/m2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 deleted file mode 100644 index 01205fc6266f2576530365863de7a2ad2a86bd00..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f1afb3351823e726793a165ca37dced8f0191370 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.1/_remote.repositories b/artifacts/m2/commons-collections/commons-collections/3.2.1/_remote.repositories deleted file mode 100644 index b5893a94f994641d1e3955955ac2a5c6f6bf5079..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-collections-3.2.1.jar>repo.jenkins-ci.org= -commons-collections-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar b/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar deleted file mode 100644 index c35fa1fee145cba638884e41b80a401cbe4924ef..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar and /dev/null differ diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 b/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 deleted file mode 100644 index 7ee4b9ed3248c7b831cfd8065de2f85c128eb551..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -761ea405b9b37ced573d2df0d1e3a4e0f9edc668 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom b/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom deleted file mode 100644 index 91ec7c8d475b5e5f8f75ac9eb508ceb64edfed8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +++ /dev/null @@ -1,438 +0,0 @@ - - - - - org.apache.commons - commons-parent - 9 - - 4.0.0 - commons-collections - commons-collections - 3.2.1 - Commons Collections - - 2001 - Types that extend and augment the Java Collections Framework. - - http://commons.apache.org/collections/ - - - jira - http://issues.apache.org/jira/browse/COLLECTIONS - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/collections/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/collections/trunk - http://svn.apache.org/viewvc/commons/proper/collections/trunk - - - - - Stephen Colebourne - scolebourne - - - - - Morgan Delagrange - morgand - - - - - Matthew Hawthorne - matth - - - - - Geir Magnusson - geirm - - - - - Craig McClanahan - craigmcc - - - - - Phil Steitz - psteitz - - - - - Arun M. Thomas - amamment - - - - - Rodney Waldhoff - rwaldhoff - - - - - Henri Yandell - bayard - - - - - James Carman - jcarman - - - - - Robert Burrell Donkin - rdonkin - - - - - - Rafael U. C. Afonso - - - Max Rydahl Andersen - - - Federico Barbieri - - - Arron Bates - - - Nicola Ken Barozzi - - - Sebastian Bazley - - - Matt Benson - - - Ola Berg - - - Christopher Berry - - - Nathan Beyer - - - Janek Bogucki - - - Chuck Burdick - - - Dave Bryson - - - Julien Buret - - - Jonathan Carlson - - - Ram Chidambaram - - - Steve Clark - - - Eric Crampton - - - Dimiter Dimitrov - - - Peter Donald - - - Steve Downey - - - Rich Dougherty - - - Tom Dunham - - - Stefano Fornari - - - Andrew Freeman - - - Gerhard Froehlich - - - Paul Jack - - - Eric Johnson - - - Kent Johnson - - - Marc Johnson - - - Nissim Karpenstein - - - Shinobu Kawai - - - Mohan Kishore - - - Simon Kitching - - - Thomas Knych - - - Serge Knystautas - - - Peter KoBek - - - Jordan Krey - - - Olaf Krische - - - Guilhem Lavaux - - - Paul Legato - - - David Leppik - - - Berin Loritsch - - - Hendrik Maryns - - - Stefano Mazzocchi - - - Brian McCallister - - - Steven Melzer - - - Leon Messerschmidt - - - Mauricio S. Moura - - - Kasper Nielsen - - - Stanislaw Osinski - - - Alban Peignier - - - Mike Pettypiece - - - Steve Phelps - - - Ilkka Priha - - - Jonas Van Poucke - - - Will Pugh - - - Herve Quiroz - - - Daniel Rall - - - Robert Ribnitz - - - Huw Roberts - - - Henning P. Schmiedehausen - - - Howard Lewis Ship - - - Joe Raysa - - - Thomas Schapitz - - - Jon Schewe - - - Andreas Schlosser - - - Christian Siefkes - - - Michael Smith - - - Stephen Smith - - - Jan Sorensen - - - Jon S. Stevens - - - James Strachan - - - Leo Sutic - - - Chris Tilden - - - Neil O'Toole - - - Jeff Turner - - - Kazuya Ujihara - - - Jeff Varszegi - - - Ralph Wagner - - - David Weinrich - - - Dieter Wimberger - - - Serhiy Yevtushenko - - - Jason van Zyl - - - - - - junit - junit - 3.8.1 - test - - - - - 1.2 - 1.2 - collections - 3.2.1 - -bin - COLLECTIONS - 12310465 - - - - src/java - src/test - - - org.apache.maven.plugins - maven-surefire-plugin - - - org/apache/commons/collections/TestAllPackages.java - - - - - maven-antrun-plugin - - - package - - - - - - - - - - - - - run - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 b/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 deleted file mode 100644 index 073dcf5e41f1641b517f1e4844a1a4f3d4643cf1..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c812635cfb96cd2431ee315e73418eed86aeb5e4 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.2/_remote.repositories b/artifacts/m2/commons-collections/commons-collections/3.2.2/_remote.repositories deleted file mode 100644 index c2fe8b1851da2049a32933ac103700354bef9b84..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -commons-collections-3.2.2.jar>repo.jenkins-ci.org= -commons-collections-3.2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar b/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar deleted file mode 100644 index fa5df82a63062c040eefcef947827c4ea4ae9e6b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar and /dev/null differ diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar.sha1 b/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar.sha1 deleted file mode 100644 index e9eeffde5da3561255dded4302c17fadec0264f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom b/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom deleted file mode 100644 index d5e4dba41327170f662d506ded78a87234f00a24..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +++ /dev/null @@ -1,454 +0,0 @@ - - - - - org.apache.commons - commons-parent - 39 - - 4.0.0 - commons-collections - commons-collections - 3.2.2 - Apache Commons Collections - - 2001 - Types that extend and augment the Java Collections Framework. - - http://commons.apache.org/collections/ - - - jira - http://issues.apache.org/jira/browse/COLLECTIONS - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/collections/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/collections/trunk - http://svn.apache.org/viewvc/commons/proper/collections/trunk - - - - - Stephen Colebourne - scolebourne - - - - - Morgan Delagrange - morgand - - - - - Matthew Hawthorne - matth - - - - - Geir Magnusson - geirm - - - - - Craig McClanahan - craigmcc - - - - - Phil Steitz - psteitz - - - - - Arun M. Thomas - amamment - - - - - Rodney Waldhoff - rwaldhoff - - - - - Henri Yandell - bayard - - - - - James Carman - jcarman - - - - - Robert Burrell Donkin - rdonkin - - - - - - Rafael U. C. Afonso - - - Max Rydahl Andersen - - - Federico Barbieri - - - Arron Bates - - - Nicola Ken Barozzi - - - Sebastian Bazley - - - Matt Benson - - - Ola Berg - - - Christopher Berry - - - Nathan Beyer - - - Janek Bogucki - - - Chuck Burdick - - - Dave Bryson - - - Julien Buret - - - Jonathan Carlson - - - Ram Chidambaram - - - Steve Clark - - - Eric Crampton - - - Dimiter Dimitrov - - - Peter Donald - - - Steve Downey - - - Rich Dougherty - - - Tom Dunham - - - Stefano Fornari - - - Andrew Freeman - - - Gerhard Froehlich - - - Paul Jack - - - Eric Johnson - - - Kent Johnson - - - Marc Johnson - - - Nissim Karpenstein - - - Shinobu Kawai - - - Mohan Kishore - - - Simon Kitching - - - Thomas Knych - - - Serge Knystautas - - - Peter KoBek - - - Jordan Krey - - - Olaf Krische - - - Guilhem Lavaux - - - Paul Legato - - - David Leppik - - - Berin Loritsch - - - Hendrik Maryns - - - Stefano Mazzocchi - - - Brian McCallister - - - Steven Melzer - - - Leon Messerschmidt - - - Mauricio S. Moura - - - Kasper Nielsen - - - Stanislaw Osinski - - - Alban Peignier - - - Mike Pettypiece - - - Steve Phelps - - - Ilkka Priha - - - Jonas Van Poucke - - - Will Pugh - - - Herve Quiroz - - - Daniel Rall - - - Robert Ribnitz - - - Huw Roberts - - - Henning P. Schmiedehausen - - - Howard Lewis Ship - - - Joe Raysa - - - Thomas Schapitz - - - Jon Schewe - - - Andreas Schlosser - - - Christian Siefkes - - - Michael Smith - - - Stephen Smith - - - Jan Sorensen - - - Jon S. Stevens - - - James Strachan - - - Leo Sutic - - - Chris Tilden - - - Neil O'Toole - - - Jeff Turner - - - Kazuya Ujihara - - - Jeff Varszegi - - - Ralph Wagner - - - David Weinrich - - - Dieter Wimberger - - - Serhiy Yevtushenko - - - Jason van Zyl - - - - - - junit - junit - 3.8.1 - test - - - - - 1.2 - 1.2 - collections - 3.2.2 - RC3 - -bin - COLLECTIONS - 12310465 - - - - src/java - src/test - - - org.apache.maven.plugins - maven-surefire-plugin - - - org/apache/commons/collections/TestAllPackages.java - - - - - maven-antrun-plugin - - - package - - - - - - - - - - - - - run - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - - - - org.apache.rat - apache-rat-plugin - - - data/test/* - maven-eclipse.xml - - - - - - - diff --git a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 b/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 deleted file mode 100644 index df2a2156a7104c8be8eeea4f545658f19da6e4ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -02a5ba7cb070a882d2b7bd4bf5223e8e445c0268 \ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.2/_remote.repositories b/artifacts/m2/commons-collections/commons-collections/3.2/_remote.repositories deleted file mode 100644 index be1dc31f805fd2e0f042673f471339d0cff1103f..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:18 CST 2019 -commons-collections-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom b/artifacts/m2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom deleted file mode 100644 index 55ef90dc0ff863a2d1fe799d782e027e63d42b47..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +++ /dev/null @@ -1,420 +0,0 @@ - - 4.0.0 - commons-collections - commons-collections - Collections - 3.2 - Types that extend and augment the Java Collections Framework. - http://jakarta.apache.org/commons/collections/ - - http://issues.apache.org/bugzilla/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - scolebourne - Stephen Colebourne - - - - - morgand - Morgan Delagrange - - - - - matth - Matthew Hawthorne - - - - - geirm - Geir Magnusson - - - - - craigmcc - Craig McClanahan - - - - - psteitz - Phil Steitz - - - - - amamment - Arun M. Thomas - - - - - rwaldhoff - Rodney Waldhoff - - - - - bayard - Henri Yandell - - - - - jcarman - James Carman - - - - - rdonkin - Robert Burrell Donkin - - - - - Rafael U. C. Afonso - - - Max Rydahl Andersen - - - Federico Barbieri - - - Arron Bates - - - Nicola Ken Barozzi - - - Sebastian Bazley - - - Matt Benson - - - Ola Berg - - - Christopher Berry - - - Nathan Beyer - - - Janek Bogucki - - - Chuck Burdick - - - Dave Bryson - - - Julien Buret - - - Jonathan Carlson - - - Ram Chidambaram - - - Steve Clark - - - Eric Crampton - - - Dimiter Dimitrov - - - Peter Donald - - - Steve Downey - - - Rich Dougherty - - - Tom Dunham - - - Stefano Fornari - - - Andrew Freeman - - - Gerhard Froehlich - - - Paul Jack - - - Eric Johnson - - - Kent Johnson - - - Marc Johnson - - - Nissim Karpenstein - - - Shinobu Kawai - - - Mohan Kishore - - - Simon Kitching - - - Thomas Knych - - - Serge Knystautas - - - Peter KoBek - - - Jordan Krey - - - Olaf Krische - - - Guilhem Lavaux - - - Paul Legato - - - David Leppik - - - Berin Loritsch - - - Stefano Mazzocchi - - - Brian McCallister - - - Steven Melzer - - - Leon Messerschmidt - - - Mauricio S. Moura - - - Kasper Nielsen - - - Stanislaw Osinski - - - Alban Peignier - - - Mike Pettypiece - - - Steve Phelps - - - Ilkka Priha - - - Jonas Van Poucke - - - Will Pugh - - - Herve Quiroz - - - Daniel Rall - - - Robert Ribnitz - - - Huw Roberts - - - Henning P. Schmiedehausen - - - Howard Lewis Ship - - - Joe Raysa - - - Thomas Schapitz - - - Jon Schewe - - - Andreas Schlosser - - - Christian Siefkes - - - Michael Smith - - - Stephen Smith - - - Jan Sorensen - - - Jon S. Stevens - - - James Strachan - - - Leo Sutic - - - Chris Tilden - - - Neil O'Toole - - - Jeff Turner - - - Kazuya Ujihara - - - Jeff Varszegi - - - Ralph Wagner - - - David Weinrich - - - Dieter Wimberger - - - Serhiy Yevtushenko - - - Jason van Zyl - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk - http://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - META-INF - - - NOTICE.txt - - - - - - maven-surefire-plugin - - - org/apache/commons/collections/TestAllPackages.java - - - - - maven-plugins - maven-cobertura-plugin - 1.1.1 - - test - Required only for generating test coverage reports. - - - - - - - junit - junit - 3.8.1 - test - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/collections/ - - - default - Default Site - scp://people.apache.org//www/jakarta.apache.org/commons/collections/ - - converted - -
\ No newline at end of file diff --git a/artifacts/m2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 b/artifacts/m2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 deleted file mode 100644 index 5599089d2e3a0704172cb0631fee11fe864fdcfc..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0c8e56dc5476c517f1596f0686d72f51ef24d9e3 \ No newline at end of file diff --git a/artifacts/m2/commons-digester/commons-digester/1.6/_remote.repositories b/artifacts/m2/commons-digester/commons-digester/1.6/_remote.repositories deleted file mode 100644 index e7e22ed4d234a25ff077630792edda116ec98ac4..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-digester-1.6.jar>repo.jenkins-ci.org= -commons-digester-1.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar b/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar deleted file mode 100644 index 9765493306c169490705103e451a21314c1c0141..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar and /dev/null differ diff --git a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 b/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 deleted file mode 100644 index aae7b15b4686fb12b41e1ad4839076c8440d7643..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e2822f655f2c182681c2cf27f224a425ccb2983d \ No newline at end of file diff --git a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom b/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom deleted file mode 100644 index fe97da2e3dc1ea7319b95e256e013c8170feab49..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +++ /dev/null @@ -1,34 +0,0 @@ - - 4.0.0 - commons-digester - commons-digester - 1.6 - - - commons-beanutils - commons-beanutils - 1.6 - - - commons-logging - commons-logging - 1.0 - - - commons-collections - commons-collections - 2.1 - - - xml-apis - xml-apis - 1.0.b2 - - - junit - junit - 3.8.1 - test - - - \ No newline at end of file diff --git a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 b/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 deleted file mode 100644 index c60c467291c2f7b0374528bc4ccdb712eb443f20..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -807b7186d68503e8a596c19f9d6ff2c70416967c \ No newline at end of file diff --git a/artifacts/m2/commons-digester/commons-digester/1.8/_remote.repositories b/artifacts/m2/commons-digester/commons-digester/1.8/_remote.repositories deleted file mode 100644 index 3d3a6242cf40700e75b9c90ae7cd597bfe9a36c6..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:13 CST 2019 -commons-digester-1.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom b/artifacts/m2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom deleted file mode 100644 index 2c13336fd17e5ec86873862ee0f301f328f6e3e5..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +++ /dev/null @@ -1,236 +0,0 @@ - - 4.0.0 - commons-digester - commons-digester - Digester - 1.8 - The Digester package lets you configure an XML->Java object mapping module - which triggers certain actions called rules whenever a particular - pattern of nested XML elements is recognized. - http://jakarta.apache.org/commons/digester/ - - http://issues.apache.org/jira/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/ - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/ - - - - - craigmcc - Craig McClanahan - craigmcc@apache.org - Sun Microsystems - - - rdonkin - Robert Burrell Donkin - rdonkin@apache.org - - - sanders - Scott Sanders - sanders@totalsync.com - - - jstrachan - James Strachan - jstrachan@apache.org - - - jvanzyl - Jason van Zyl - jvanzyl@apache.org - - - tobrien - Tim OBrien - tobrien@apache.org - - - jfarcand - Jean-Francois Arcand - jfarcand@apache.org - - - skitching - Simon Kitching - skitching@apache.org - - - rahul - Rahul Akolkar - rahul AT apache DOT org - - - - - Bradley M. Handy - bhandy@users.sf.net - - - Christopher Lenz - - - - Ted Husted - - - - David H. Martin - - - - Henri Chen - - - - Janek Bogucki - - - - Mark Huisman - - - - Paul Jack - - - - Anton Maslovsky - - - - Matt Cleveland - - - - Gabriele Carcassi - - - - Wendy Smoak - java@wendysmoak.com - - - Kevin Ross - kevin.ross@iverticalleap.com - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/digester/trunk - http://svn.apache.org/repos/asf/jakarta/commons/proper/digester/trunk - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - ${pom.build.sourceDirectory} - - **/*.dtd - - - - - - ${pom.build.unitTestSourceDirectory} - - **/*.xml - - - - ${pom.build.sourceDirectory} - - **/*.dtd - - - - - - maven-surefire-plugin - - - **/*Test.java - **/*TestCase.java - - - - - maven-xdoc-plugin - 1.9.2 - - <strong>Site Only</strong> - v1.9.2 (minimum) - required for building the Digester Site documentation. - - - - - - - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-logging - commons-logging - 1.1 - - - xml-apis - xml-apis - 1.0.b2 - provided - - - junit - junit - 3.8.1 - test - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/digester/ - - - default - Default Site - scp://people.apache.org//www/jakarta.apache.org/commons/digester/ - - converted - -
\ No newline at end of file diff --git a/artifacts/m2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 b/artifacts/m2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 deleted file mode 100644 index ba6881ede18d39220798669e708b9398818230f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ceb07daf87a43ec66829fcd8c23a40aead5a4b40 \ No newline at end of file diff --git a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/_remote.repositories b/artifacts/m2/commons-httpclient/commons-httpclient/3.1/_remote.repositories deleted file mode 100644 index b27411d9ceb84c99a32a76c20c0b9e2f91ba6e95..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -commons-httpclient-3.1.jar>repo.jenkins-ci.org= -commons-httpclient-3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar b/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar deleted file mode 100644 index 7c59774aed4f5dd08778489aaad565690ff7c132..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar and /dev/null differ diff --git a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 b/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 deleted file mode 100644 index c53546baa6bb89e32def755c254abe73a18fb48a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -964cd74171f427720480efdec40a7c7f6e58426a \ No newline at end of file diff --git a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom b/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom deleted file mode 100644 index 595a1b0d1928c28648d7f66e36a1089c1b4a0413..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom +++ /dev/null @@ -1,254 +0,0 @@ - - 4.0.0 - commons-httpclient - commons-httpclient - HttpClient - 3.1 - The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. - http://jakarta.apache.org/httpcomponents/httpclient-3.x/ - - http://issues.apache.org/jira/browse/HTTPCLIENT - - - - - -
httpcomponents-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - HttpComponents Developer List - httpcomponents-dev-subscribe@jakarta.apache.org - httpcomponents-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-httpcomponents-dev/ - - - HttpClient User List - httpclient-user-subscribe@jakarta.apache.org - httpclient-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-httpclient-user/ - - - - - mbecke - Michael Becke - mbecke -at- apache.org - - - Release Prime - Java Developer - - - - jsdever - Jeff Dever - jsdever -at- apache.org - Independent consultant - - 2.0 Release Prime - Java Developer - - - - dion - dIon Gillard - dion -at- apache.org - Multitask Consulting - - Java Developer - - - - oglueck - Ortwin Glueck - oglueck -at- apache.org - http://www.odi.ch/ - - - Java Developer - - - - jericho - Sung-Gu - jericho -at- apache.org - - - Java Developer - - - - olegk - Oleg Kalnichevski - olegk -at- apache.org - - Java Developer - - - - sullis - Sean C. Sullivan - sullis -at- apache.org - Independent consultant - - Java Developer - - - - adrian - Adrian Sutton - adrian.sutton -at- ephox.com - Intencha - - Java Developer - - - - rwaldhoff - Rodney Waldhoff - rwaldhoff -at- apache - Britannica - - Java Developer - - - - - - Armando Anton - armando.anton -at- newknow.com - - - Sebastian Bazley - sebb -at- apache.org - - - Ola Berg - - - - Sam Berlin - sberlin -at- limepeer.com - - - Mike Bowler - - - - Samit Jain - jain.samit -at- gmail.com - - - Eric Johnson - eric -at- tibco.com - - - Christian Kohlschuetter - ck -at- newsclub.de - - - Ryan Lubke - Ryan.Lubke -at- Sun.COM - - - Sam Maloney - sam.maloney -at- filogix.com - - - Rob Di Marco - rdimarco -at- hmsonline.com - - - Juergen Pill - Juergen.Pill -at- softwareag.com - - - Mohammad Rezaei - mohammad.rezaei -at- gs.com - - - Roland Weber - rolandw -at- apache.org - - - Laura Werner - laura -at- lwerner.org - - - Mikael Wilstrom - mikael.wikstrom -at- it.su.se - - - - - Apache License - http://www.apache.org/licenses/LICENSE-2.0 - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/httpcomponents/oac.hc3x/trunk - http://svn.apache.org/repos/asf/jakarta/httpcomponents/oac.hc3x/trunk - - - Apache Software Foundation - http://jakarta.apache.org/ - - - src/java - src/test - - - src/resources - - - - - src/test - - **/*.keystore - - - - - - maven-surefire-plugin - - - **/TestAll.java - - - - - - - - junit - junit - 3.8.1 - test - - - commons-logging - commons-logging - 1.0.4 - - - commons-codec - commons-codec - 1.2 - - - - - default - Default Site - scp://people.apache.org//www/jakarta.apache.org/httpcomponents/httpclient-3.x/ - - converted - -
\ No newline at end of file diff --git a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 b/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 deleted file mode 100644 index a883c809195a1569562ee2a9a5753681de5a5fec..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e64d764d7f7ebc75ae3920490fcb58fbaf504a8 \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/1.3.2/_remote.repositories b/artifacts/m2/commons-io/commons-io/1.3.2/_remote.repositories deleted file mode 100644 index 5cfb7f987785eb8f76caf1f968db8b2325f9da8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.3.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -commons-io-1.3.2.jar>repo.jenkins-ci.org= -commons-io-1.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar b/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar deleted file mode 100644 index 865c9e41cee5e3f65a734965aa1c2699b069b08e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar and /dev/null differ diff --git a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 b/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 deleted file mode 100644 index 2505b75f4dc5f9c25d6af4c3efadf7a4e849dc9f..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b6dde38349ba9bb5e6ea6320531eae969985dae5 \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom b/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom deleted file mode 100644 index b56e64f5982eeb60f8134b20fb4749bd869c639a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom +++ /dev/null @@ -1,318 +0,0 @@ - - - commons-parent - org.apache.commons - 3 - - 4.0.0 - commons-io - commons-io - Commons IO - 1.3.2 - Commons-IO contains utility classes, stream implementations, file filters, and endian classes. - http://jakarta.apache.org/commons/io/ - - jira - http://issues.apache.org/jira/browse/IO - - 2002 - - - sanders - Scott Sanders - sanders@apache.org - - - Java Developer - - - - dion - dIon Gillard - dion@apache.org - - - Java Developer - - - - nicolaken - Nicola Ken Barozzi - nicolaken@apache.org - - - Java Developer - - - - bayard - Henri Yandell - bayard@apache.org - - - Java Developer - - - - scolebourne - Stephen Colebourne - - - Java Developer - - 0 - - - jeremias - Jeremias Maerki - jeremias@apache.org - - - Java Developer - - +1 - - - matth - Matthew Hawthorne - matth@apache.org - - - Java Developer - - - - martinc - Martin Cooper - martinc@apache.org - - - Java Developer - - - - roxspring - Rob Oxspring - roxspring@apache.org - - - Java Developer - - - - jochen - Jochen Wiedmann - jochen.wiedmann@gmail.com - - - - - 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 - - - Niall Pemberton - - - Ian Springer - - - Masato Tezuka - - - James Urie - - - Frank W. Zammetti - - - - scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk - scm:svn:scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk - http://svn.apache.org/viewvc/jakarta/commons/proper/io/trunk - - - src/java - src/test - - - maven-surefire-plugin - - - **/*Test* - - - **/*AbstractTestCase* - **/AllIOTestSuite* - **/PackageTestSuite* - **/testtools/** - **/*$* - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - release - - - - maven-site-plugin - - - package - - site - - - - - - maven-antrun-plugin - - - package - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - maven-assembly-plugin - - - package - - attached - - - - - - - - - rc - - - - maven-site-plugin - - - package - - site - - - - - - maven-assembly-plugin - - - package - - attached - - - - - - - - - - - junit - junit - 3.8.1 - test - - - - - - maven-changes-plugin - - %URL%/../%ISSUE% - - - - - changes-report - jira-report - - - - - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 b/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 deleted file mode 100644 index 56b15539ba5994e57eabcbceabc0af02d3643cfb..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6e24d777140826c244c3c3fd3afdd4ffe6e6159f \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/1.4/_remote.repositories b/artifacts/m2/commons-io/commons-io/1.4/_remote.repositories deleted file mode 100644 index 1d4beff2297a3dff0d57e10e46f00ef728cdf0da..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-io-1.4.jar>repo.jenkins-ci.org= -commons-io-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.jar b/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.jar deleted file mode 100644 index 133dc6cb35f5ca2c5920fd0933a557c2def88680..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.jar and /dev/null differ diff --git a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 b/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 deleted file mode 100644 index c8bf49b9c613e89971a04c789c74d4da057a92f1..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a8762d07e76cfde2395257a5da47ba7c1dbd3dce \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.pom b/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.pom deleted file mode 100644 index df250af9408a1cf2c77149a0d63de0aa5e5447f9..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.pom +++ /dev/null @@ -1,419 +0,0 @@ - - - - - org.apache.commons - commons-parent - 7 - - 4.0.0 - commons-io - commons-io - 1.4 - Commons IO - - 2002 - - Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes. - - - http://commons.apache.org/io/ - - - jira - http://issues.apache.org/jira/browse/IO - - - - 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 - - - - - - - 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 - 3.8.1 - test - - - - - src/java - src/test - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test* - - - **/*AbstractTestCase* - **/AllIOTestSuite* - **/PackageTestSuite* - **/testtools/** - - - **/*$* - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - maven-jar-plugin - - - - - org.apache.commons.io - http://www.apache.org/licenses/LICENSE-2.0.txt - 2 - Apache Commons IO Bundle - ${project.organization.name} - ${project.version} - -org.apache.commons.io;version=${project.version}, -org.apache.commons.io.comparator;version=${project.version}, -org.apache.commons.io.filefilter;version=${project.version}, -org.apache.commons.io.input;version=${project.version}, -org.apache.commons.io.output;version=${project.version} - - -org.apache.commons.io;version=${project.version}, -org.apache.commons.io.comparator;version=${project.version}, -org.apache.commons.io.filefilter;version=${project.version}, -org.apache.commons.io.input;version=${project.version}, -org.apache.commons.io.output;version=${project.version} - - - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - org.apache.maven.plugins - maven-changes-plugin - 2.0-beta-3 - - %URL%/../%ISSUE% - - &&resolution=1&fixfor=12312101 - - - - - jira-report - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.1 - - checkstyle.xml - false - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.1 - - 1.3.2 - info - - - - - - - - release - - - - maven-site-plugin - - - - site - - package - - - - - maven-antrun-plugin - - - - run - - package - - - - - - - - - - - - maven-assembly-plugin - - - - attached - - package - - - - - - - - rc - - - - maven-site-plugin - - - - site - - package - - - - - maven-assembly-plugin - - - - attached - - package - - - - - - - - diff --git a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 b/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 deleted file mode 100644 index 5b0f10755eb59c3797bd1a478dc975e8e696e36c..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/1.4/commons-io-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -526f34cad0a113787f3eb8ee1d0fe0abebcba887 \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/2.2/_remote.repositories b/artifacts/m2/commons-io/commons-io/2.2/_remote.repositories deleted file mode 100644 index a441df465249c3da09e4bf1e806184f66d21e5ac..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:29 CST 2019 -commons-io-2.2.jar>repo.jenkins-ci.org= -commons-io-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.jar b/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.jar deleted file mode 100644 index 84ca565859dcf43a9903bb8040fdfb4d652d1e80..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.jar and /dev/null differ diff --git a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.jar.sha1 b/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.jar.sha1 deleted file mode 100644 index 1d90ca1da025e20b1307833b7408e90302dd29a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -83b5b8a7ba1c08f9e8c8ff2373724e33d3c1e22a \ No newline at end of file diff --git a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.pom b/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.pom deleted file mode 100644 index 01b30948981b736719cde2e2a1b85df6d4c2fbfe..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.pom +++ /dev/null @@ -1,346 +0,0 @@ - - - - - org.apache.commons - commons-parent - 24 - - 4.0.0 - commons-io - commons-io - 2.2 - 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.5 - 1.5 - io - 2.2 - RC1 - (requires JDK 1.5+) - 1.4 - (requires JDK 1.3+) - IO - 12310477 - - 2.4 - - - - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - 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.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 - 300 - - - - - changes-report - jira-report - - - - - - org.apache.rat - apache-rat-plugin - - - src/test/resources/**/*.bin - .pmd - - - - - - diff --git a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 b/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 deleted file mode 100644 index 856e74c865a9a1bbd8b84f2fd69450e3813976e3..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-io/commons-io/2.2/commons-io-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ef24807b2eaf9d51b5587710878146d630cc855 \ No newline at end of file diff --git a/artifacts/m2/commons-lang/commons-lang/2.1/_remote.repositories b/artifacts/m2/commons-lang/commons-lang/2.1/_remote.repositories deleted file mode 100644 index f1dbdfffa2140db09541e8ef1f4cadca21266fc8..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:52 CST 2019 -commons-lang-2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom b/artifacts/m2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom deleted file mode 100644 index 0fdec26dfd052abe73d062152cdce0606d49c0dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +++ /dev/null @@ -1,364 +0,0 @@ - - 4.0.0 - commons-lang - commons-lang - Lang - 2.1 - 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://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - http://issues.apache.org/bugzilla/ - - - - -
commons-dev@jakarta.apache.org
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - dlr - Daniel Rall - dlr@finemaltcoding.com - CollabNet, Inc. - - Java Developer - - - - scolebourne - Stephen Colebourne - scolebourne@joda.org - SITA ATS Ltd - - Java Developer - - 0 - - - bayard - Henri Yandell - bayard@generationjava.com - - - Java Developer - - - - scaswell - Steven Caswell - stevencaswell@apache.org - - - Java Developer - - -5 - - - rdonkin - Robert Burrell Donkin - rdonkin@apache.org - - - Java Developer - - - - ggregory - Gary D. Gregory - ggregory@seagullsw.com - Seagull Software - - Java Developer - - -8 - - - psteitz - Phil Steitz - phil@steitz.com - - - Java Developer - - - - fredrik - Fredrik Westermarck - - - - Java Developer - - - - - - C. Scott Ananian - - - Chris Audley - - - Stephane Bailliez - - - Michael Becke - - - Ola Berg - - - Stefan Bodewig - - - Janek Bogucki - - - Mike Bowler - - - Sean Brown - - - Alexander Day Chaffee - - - Al Chou - - - Greg Coladonato - - - Maarten Coene - - - Justin Couch - - - Michael Davey - - - Norm Deane - - - Ringo De Smet - - - Russel Dittmar - - - Steve Downey - - - Matthias Eichel - - - Christopher Elkins - - - Chris Feldhacker - - - Pete Gieser - - - Jason Gritman - - - Matthew Hawthorne - - - Michael Heuer - - - Marc Johnson - - - Tetsuya Kaneuchi - - - Nissim Karpenstein - - - Ed Korthof - - - Holger Krauth - - - Rafal Krupinski - - - Rafal Krzewski - - - Craig R. McClanahan - - - Rand McNeely - - - Nikolay Metchev - - - Kasper Nielsen - - - Tim O'Brien - - - Brian S O'Neill - - - Andrew C. Oliver - - - Moritz Petersen - - - Dmitri Plotnikov - - - Neeme Praks - - - Eric Pugh - - - Travis Reeder - - - Antony Riley - - - Scott Sanders - - - Ralph Schaer - - - Henning P. Schmiedehausen - - - Sean Schofield - - - Ville Skytta - - - Jan Sorensen - - - Glen Stampoultzis - - - Scott Stanchfield - - - Jon S. Stevens - - - Sean C. Sullivan - - - Ashwin Suresh - - - Helge Tesgaard - - - Arun Mammen Thomas - - - Masato Tezuka - - - Jeff Varszegi - - - Chris Webb - - - Mario Winterer - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - http://svn.apache.org/viewcvs/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - ${pom.build.unitTestSourceDirectory} - - **/*.xml - - - - - - maven-surefire-plugin - - - **/*TestSuite.java - - - **/AllLangTestSuite.java - org/apache/commons/lang/text/**/*.java - - - - - - - - junit - junit - 3.8.1 - test - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/ - - - default - Default Site - scp://jakarta.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - -
\ No newline at end of file diff --git a/artifacts/m2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 b/artifacts/m2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 deleted file mode 100644 index 38717ced2784f5331c581c6bcb8fb9e3080c9efe..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a34d992202615804c534953aba402de55d8ee47c \ No newline at end of file diff --git a/artifacts/m2/commons-lang/commons-lang/2.4/_remote.repositories b/artifacts/m2/commons-lang/commons-lang/2.4/_remote.repositories deleted file mode 100644 index 0c7845bd1daa497ffe2e269ff6f2ef6688de60a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:34 CST 2019 -commons-lang-2.4.jar>repo.jenkins-ci.org= -commons-lang-2.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar b/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar deleted file mode 100644 index 532939ecab6b77ccb77af3635c55ff9752b70ab7..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar and /dev/null differ diff --git a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 b/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 deleted file mode 100644 index 2b1e99222c9adf68090cdfb70f67841fd5151ad6..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -16313e02a793435009f1e458fa4af5d879f6fb11 \ No newline at end of file diff --git a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom b/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom deleted file mode 100644 index ab952b2c1b835c980b393bd391693e83f90b723a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +++ /dev/null @@ -1,462 +0,0 @@ - - - - - org.apache.commons - commons-parent - 9 - - 4.0.0 - commons-lang - commons-lang - 2.4 - Commons Lang - - 2001 - - 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/lang/ - - - jira - http://issues.apache.org/jira/browse/LANG - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/lang/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/lang/trunk - http://svn.apache.org/viewvc/commons/proper/lang/trunk - - - - - 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@seagullsw.com - Seagull Software - -8 - - Java Developer - - - - Phil Steitz - psteitz - phil@steitz.com - - - 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 - - - - - - C. Scott Ananian - - - Chris Audley - - - Stephane Bailliez - - - Michael Becke - - - 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 - - - Ringo De Smet - - - Russel Dittmar - - - Steve Downey - - - Matthias Eichel - - - Christopher Elkins - - - Chris Feldhacker - - - Pete Gieser - - - Jason Gritman - - - Matthew Hawthorne - - - Michael Heuer - - - Oliver Heger - - - Chris Hyzer - - - Marc Johnson - - - Shaun Kalley - - - Tetsuya Kaneuchi - - - Nissim Karpenstein - - - Ed Korthof - - - Holger Krauth - - - Rafal Krupinski - - - Rafal Krzewski - - - Craig R. McClanahan - - - Rand McNeely - - - 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 - - - Scott Sanders - - - Ralph Schaer - - - Henning P. Schmiedehausen - - - Sean Schofield - - - Reuben Sivan - - - Ville Skytta - - - Jan Sorensen - - - Glen Stampoultzis - - - Scott Stanchfield - - - Jon S. Stevens - - - Sean C. Sullivan - - - Ashwin Suresh - - - Helge Tesgaard - - - Arun Mammen Thomas - - - Masato Tezuka - - - Jeff Varszegi - - - Chris Webb - - - Mario Winterer - - - Stepan Koltsov - - - Holger Hoffstatte - - - - - - - junit - junit - 3.8.1 - test - - - - - 1.3 - 1.2 - lang - 2.4 - LANG - 12310481 - - - - - src/java - src/test - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*TestSuite.java - - - **/AllLangTestSuite.java - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - - - - maven-checkstyle-plugin - 2.1 - - ${basedir}/checkstyle.xml - false - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.1.1 - - 2.3 - info - - - - - - diff --git a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 b/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 deleted file mode 100644 index 7266a256a77e9e5fbe27942b93397a508734bcc0..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dadd4b8eb8f55df27c1e7f9083cb8223bd3e357e \ No newline at end of file diff --git a/artifacts/m2/commons-lang/commons-lang/2.6/_remote.repositories b/artifacts/m2/commons-lang/commons-lang/2.6/_remote.repositories deleted file mode 100644 index 46e323120d87ea557bf788ddf4d30cfc3079aead..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-lang-2.6.jar>repo.jenkins-ci.org= -commons-lang-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar b/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar deleted file mode 100644 index 98467d3a653ebad776ffa3542efeb9732fe0b482..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar and /dev/null differ diff --git a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 b/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 deleted file mode 100644 index 4ee9249d2b76f544ed8f1f3e06f603db183383d0..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0ce1edb914c94ebc388f086c6827e8bdeec71ac2 \ No newline at end of file diff --git a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom b/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom deleted file mode 100644 index 367d439797070fa556cc6eac82016d834847362b..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom +++ /dev/null @@ -1,545 +0,0 @@ - - - - - org.apache.commons - commons-parent - 17 - - 4.0.0 - commons-lang - commons-lang - 2.6 - Commons Lang - - 2001 - - 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/lang/ - - - jira - http://issues.apache.org/jira/browse/LANG - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/lang/branches/LANG_2_X - scm:svn:https://svn.apache.org/repos/asf/commons/proper/lang/branches/LANG_2_X - http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X - - - - - 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@seagullsw.com - Seagull Software - -8 - - Java Developer - - - - Phil Steitz - psteitz - phil@steitz.com - - - 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 - - - - - - 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 - - - Ringo De Smet - - - Russel Dittmar - - - Steve Downey - - - Matthias Eichel - - - Christopher Elkins - - - Chris Feldhacker - - - Pete Gieser - - - Jason Gritman - - - Matthew Hawthorne - - - Michael Heuer - - - Chris Hyzer - - - Marc Johnson - - - Shaun Kalley - - - Tetsuya Kaneuchi - - - Nissim Karpenstein - - - Ed Korthof - - - Holger Krauth - - - Rafal Krupinski - - - Rafal Krzewski - - - 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 - - - Scott Sanders - - - Ralph Schaer - - - Henning P. Schmiedehausen - - - Sean Schofield - - - Robert Scholte - - - Reuben Sivan - - - Ville Skytta - - - Jan Sorensen - - - Glen Stampoultzis - - - Scott Stanchfield - - - Jon S. Stevens - - - Sean C. Sullivan - - - Ashwin Suresh - - - Helge Tesgaard - - - Arun Mammen Thomas - - - Masato Tezuka - - - Jeff Varszegi - - - Chris Webb - - - Mario Winterer - - - Stepan Koltsov - - - Holger Hoffstatte - - - Derek C. Ashmore - - - - - - - junit - junit - 3.8.1 - test - - - - - UTF-8 - UTF-8 - 1.3 - 1.3 - lang - 2.6 - (Java 1.3+) - 3.0-beta - (Java 5.0+) - LANG - 12310481 - **/RandomUtilsFreqTest.java - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Test.java - - - **/EntitiesPerformanceTest.java - ${random.exclude.test} - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - - - - - - test-random-freq - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/RandomUtilsFreqTest.java - - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.3 - - ${basedir}/src/site/changes/changes.xml - %URL%/%ISSUE% - - - - - changes-report - - - - - - maven-checkstyle-plugin - 2.6 - - ${basedir}/checkstyle.xml - false - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.1 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - 2.5 - info - - - - - - diff --git a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 b/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 deleted file mode 100644 index 505197df1dc9c9ffa35a971fd330f15fb19adda8..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -347d60b180fa80e5699d8e2cb72c99c93dda5454 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging-api/1.1/_remote.repositories b/artifacts/m2/commons-logging/commons-logging-api/1.1/_remote.repositories deleted file mode 100644 index 735979f20c70a28866725439dbbf24cdca6e6c9d..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging-api/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -commons-logging-api-1.1.jar>repo.jenkins-ci.org= -commons-logging-api-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar b/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar deleted file mode 100644 index d1abcbb47929bdabcf9f177449237e433377fccb..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar and /dev/null differ diff --git a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar.sha1 b/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar.sha1 deleted file mode 100644 index 2f76f7c6554176e349f4c8345d037f0a6debe0a0..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7d4cf5231d46c8524f9b9ed75bb2d1c69ab93322 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom b/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom deleted file mode 100644 index c8b5be8f82d77f9ee3885fc576669d70076fd96d..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom +++ /dev/null @@ -1,165 +0,0 @@ - - 4.0.0 - commons-logging - commons-logging-api - Logging - 1.1 - Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://jakarta.apache.org/commons/logging/ - - http://issues.apache.org/jira/browse/LOGGING - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/ - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/ - - - - - morgand - Morgan Delagrange - morgand at apache dot org - Apache - - Java Developer - - - - rwaldhoff - Rodney Waldhoff - rwaldhoff at apache org - Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc at apache org - Apache Software Foundation - - - sanders - Scott Sanders - sanders at apache dot org - Apache Software Foundation - - - rdonkin - Robert Burrell Donkin - rdonkin at apache dot org - Apache Software Foundation - - - donaldp - Peter Donald - donaldp at apache dot org - - - - costin - Costin Manolache - costin at apache dot org - Apache Software Foundation - - - rsitze - Richard Sitze - rsitze at apache dot org - Apache Software Foundation - - - baliuka - Juozas Baliuka - baliuka@apache.org - - - Java Developer - - - - skitching - Simon Kitching - skitching@apache.org - Apache Software Foundation - - - dennisl - Dennis Lundberg - dennisl@apache.org - Apache Software Foundation - - - bstansberry - Brian Stansberry - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk/ - http://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk/ - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - maven-xdoc-plugin - 1.9.2 - - true - <strong>Site Only</strong> - v1.9.2 (minimum) - - - - - - - junit - junit - 3.8.1 - test - true - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/logging/ - - - default - Default Site - scp://people.apache.org//www/jakarta.apache.org/commons/logging/ - - converted - -
\ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 b/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 deleted file mode 100644 index f941aeb93f2b5ebfbb0593003f4d404da734b073..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -825395875e4a7ac53277f5f746085a3e13a04248 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.3/_remote.repositories b/artifacts/m2/commons-logging/commons-logging/1.0.3/_remote.repositories deleted file mode 100644 index f4c7e3e72f578cd3a23d667b11e99820e7a6eb2e..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:55 CST 2019 -commons-logging-1.0.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom b/artifacts/m2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom deleted file mode 100644 index c46b27ffb6ae9941b1ed86541bce140c8722d6e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +++ /dev/null @@ -1,31 +0,0 @@ - - 4.0.0 - commons-logging - commons-logging - Logging - 1.0.3 - Commons Logging - http://jakarta.apache.org/commons/logging/ - 2001 - - - - log4j - log4j - 1.2.6 - true - - - logkit - logkit - 1.0.1 - true - - - junit - junit - 3.7 - test - - - diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 b/artifacts/m2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 deleted file mode 100644 index d6230ee58ea8248756e8c84c55be4119ffce33ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7de43bb310eb1dbfd00a34cec30500fa13cb577 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.4/_remote.repositories b/artifacts/m2/commons-logging/commons-logging/1.0.4/_remote.repositories deleted file mode 100644 index 66853aae9b2d6ad8694bdf9e2abd64b696e6b82d..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-logging-1.0.4.jar>repo.jenkins-ci.org= -commons-logging-1.0.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar b/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar deleted file mode 100644 index b73a80fab641131e6fbe3ae833549efb3c540d17..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar and /dev/null differ diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 b/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 deleted file mode 100644 index 7e0a60e4f55d446eb82bcb659a914e064e0b39ac..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f029a2aefe2b3e1517573c580f948caac31b1056 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom b/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom deleted file mode 100644 index 7c1017dc2a3ee3387afde753c1976bc98012aab6..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom +++ /dev/null @@ -1,165 +0,0 @@ - - 4.0.0 - commons-logging - commons-logging - Logging - 1.0.4 - Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://jakarta.apache.org/commons/logging/ - - http://issues.apache.org/bugzilla/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - morgand - Morgan Delagrange - morgand at apache dot org - Apache - - Java Developer - - - - rwaldhoff - Rodney Waldhoff - rwaldhoff at apache org - Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc at apache org - Apache Software Foundation - - - sanders - Scott Sanders - sanders at apache dot org - Apache Software Foundation - - - rdonkin - Robert Burrell Donkin - rdonkin at apache dot org - Apache Software Foundation - - - donaldp - Peter Donald - donaldp at apache dot org - - - - costin - Costin Manolache - costin at apache dot org - Apache Software Foundation - - - rsitze - Richard Sitze - rsitze at apache dot org - Apache Software Foundation - - - baliuka - Juozas Baliuka - baliuka@apache.org - - - Java Developer - - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:jakarta-commons/logging - http://cvs.apache.org/viewcvs/jakarta-commons/logging/ - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - maven-surefire-plugin - - - **/AvalonLoggerTest.java - - - - - - - - log4j - log4j - 1.2.6 - true - - - logkit - logkit - 1.0.1 - true - - - junit - junit - 3.7 - test - - - avalon-framework - avalon-framework - 4.1.3 - true - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/logging/ - - - default - Default Site - scp://jakarta.apache.org//www/jakarta.apache.org/commons/logging/ - - -
diff --git a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 b/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 deleted file mode 100644 index bf2521283e617952abb04f56b6a64742708c7f60..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7d32e7520b801cabc3dc704d2afe59d020d00c45 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.0/_remote.repositories b/artifacts/m2/commons-logging/commons-logging/1.0/_remote.repositories deleted file mode 100644 index ca11b83c474f68aacf4e314e7bfd40fae7677a48..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:57 CST 2019 -commons-logging-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom b/artifacts/m2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom deleted file mode 100644 index 402a9df37a0eb790359f91367a8e9a864dc9271d..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - commons-logging - commons-logging - 1.0 - diff --git a/artifacts/m2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 b/artifacts/m2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 deleted file mode 100644 index d42b4b70eeaf0e412acc3ba7feb39a4c8eeba7ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f58df6cca7ad7b863e8186e5dc25a8ef502e374 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.1.1/_remote.repositories b/artifacts/m2/commons-logging/commons-logging/1.1.1/_remote.repositories deleted file mode 100644 index 6275053ade7f549adceb5f4152f5db15048191c1..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:41 CST 2019 -commons-logging-1.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom b/artifacts/m2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom deleted file mode 100644 index e4b450310d329fdbcfd7e5b9e28a0bc5fd4dde08..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom +++ /dev/null @@ -1,504 +0,0 @@ - - - - - - org.apache.commons - commons-parent - 5 - - 4.0.0 - commons-logging - commons-logging - Commons Logging - 1.1.1 - Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://commons.apache.org/logging - - - JIRA - http://issues.apache.org/jira/browse/LOGGING - - - 2001 - - - - morgand - Morgan Delagrange - morgand at apache dot org - Apache - - Java Developer - - - - rwaldhoff - Rodney Waldhoff - rwaldhoff at apache org - Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc at apache org - Apache Software Foundation - - - sanders - Scott Sanders - sanders at apache dot org - Apache Software Foundation - - - rdonkin - Robert Burrell Donkin - rdonkin at apache dot org - Apache Software Foundation - - - donaldp - Peter Donald - donaldp at apache dot org - - - costin - Costin Manolache - costin at apache dot org - Apache Software Foundation - - - rsitze - Richard Sitze - rsitze at apache dot org - Apache Software Foundation - - - baliuka - Juozas Baliuka - baliuka@apache.org - - Java Developer - - - - skitching - Simon Kitching - skitching@apache.org - Apache Software Foundation - - - dennisl - Dennis Lundberg - dennisl@apache.org - Apache Software Foundation - - - bstansberry - Brian Stansberry - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/tags/commons-logging-1.1.1 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/logging/tags/commons-logging-1.1.1 - http://svn.apache.org/repos/asf/commons/proper/logging/tags/commons-logging-1.1.1 - - - - src/java - src/test - - - - src/test - false - - **/*.properties - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - src/conf/MANIFEST.MF - - - - - testjar - package - - test-jar - - - commons-logging - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.1 - - - apijar - package - - - - - - - - - - - - - - - - - - - - run - - - - adaptersjar - package - - - - - - - - - - - - - - - - - - run - - - - site.resources - site - - - - - - - - - - - - - - - run - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.0 - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar - jar - adapters - - - ${project.build.directory}/${project.artifactId}-api-${project.version}.jar - jar - api - - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-6 - - - site deploy - - -Prelease - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/AvalonLoggerTestCase.java - - - - - - integration-test - integration-test - - test - - - - **/*TestCase.java - - - - - commons-logging - target/${project.build.finalName}.jar - - - commons-logging-api - target/${project.artifactId}-api-${project.version}.jar - - - commons-logging-adapters - target/${project.artifactId}-adapters-${project.version}.jar - - - testclasses - target/commons-logging-tests.jar - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - false - - false - - src/assembly/assembly.xml - - gnu - - - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-5 - - - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - - single - - package - - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.3 - - - ${deploy.altRepository} - true - - - - - - - - - - junit - junit - 3.8.1 - test - - - log4j - log4j - 1.2.12 - true - - - logkit - logkit - 1.0.1 - true - - - avalon-framework - avalon-framework - 4.1.3 - true - - - javax.servlet - servlet-api - 2.3 - provided - true - - - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.1.1 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - - - - - apache.website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/logging/ - - - - - 1.2 - 1.1 - - diff --git a/artifacts/m2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 b/artifacts/m2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 deleted file mode 100644 index b5a90cf3bba241a4a3e63b91b542fdea1bf118f7..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -76672afb562b9e903674ad3a544cdf2092f1faa3 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.1/_remote.repositories b/artifacts/m2/commons-logging/commons-logging/1.1/_remote.repositories deleted file mode 100644 index f7d8d0ac3a4a6ddab47d29c5cf15d5589f395ce9..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:14 CST 2019 -commons-logging-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom b/artifacts/m2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom deleted file mode 100644 index b1ea16fe1309ab4d9fd9f1eef82817c7de779637..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +++ /dev/null @@ -1,191 +0,0 @@ - - 4.0.0 - commons-logging - commons-logging - Logging - 1.1 - Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - http://issues.apache.org/bugzilla/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2001 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/ - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/ - - - - - morgand - Morgan Delagrange - morgand at apache dot org - Apache - - Java Developer - - - - rwaldhoff - Rodney Waldhoff - rwaldhoff at apache org - Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc at apache org - Apache Software Foundation - - - sanders - Scott Sanders - sanders at apache dot org - Apache Software Foundation - - - rdonkin - Robert Burrell Donkin - rdonkin at apache dot org - Apache Software Foundation - - - donaldp - Peter Donald - donaldp at apache dot org - - - - costin - Costin Manolache - costin at apache dot org - Apache Software Foundation - - - rsitze - Richard Sitze - rsitze at apache dot org - Apache Software Foundation - - - baliuka - Juozas Baliuka - baliuka@apache.org - - - Java Developer - - - - skitching - Simon Kitching - skitching@apache.org - Apache Software Foundation - - - dennisl - Dennis Lundberg - dennisl@apache.org - Apache Software Foundation - - - bstansberry - Brian Stansberry - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/java - src/test - - - maven-surefire-plugin - - - **/AvalonLoggerTest.java - - - - - maven-xdoc-plugin - 1.9.2 - - <strong>Site Only</strong> - v1.9.2 (minimum) - - - - - - - log4j - log4j - 1.2.12 - - - logkit - logkit - 1.0.1 - - - junit - junit - 3.8.1 - test - - - avalon-framework - avalon-framework - 4.1.3 - - - javax.servlet - servlet-api - 2.3 - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/ - - - default - Default Site - scp://cvs.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - converted - -
\ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 b/artifacts/m2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 deleted file mode 100644 index 3beb078d6b31c70edefe762f0a19e9117d4dbed1..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d80c5278c4f112aba0a6e987d7321676ce074a22 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.2/_remote.repositories b/artifacts/m2/commons-logging/commons-logging/1.2/_remote.repositories deleted file mode 100644 index fd5947c5a313751afaeb2091892b50ca4752de6e..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -commons-logging-1.2.jar>repo.jenkins-ci.org= -commons-logging-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar b/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar deleted file mode 100644 index 93a3b9f6db406c84e270e19b9a5e70f2e27ca513..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar and /dev/null differ diff --git a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar.sha1 b/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar.sha1 deleted file mode 100644 index f40f0242448e848520791993936fda1788e7782e..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4bfc12adfe4842bf07b657f0369c4cb522955686 \ No newline at end of file diff --git a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom b/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom deleted file mode 100644 index cdad31c2890d1ba400e92cf1be09e9ddc2b0344a..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +++ /dev/null @@ -1,547 +0,0 @@ - - - - - org.apache.commons - commons-parent - 34 - - 4.0.0 - commons-logging - commons-logging - Apache Commons Logging - 1.2 - Apache Commons Logging is a thin adapter allowing configurable bridging to other, - well known logging systems. - http://commons.apache.org/proper/commons-logging/ - - - JIRA - http://issues.apache.org/jira/browse/LOGGING - - - 2001 - - - - baliuka - Juozas Baliuka - baliuka@apache.org - - Java Developer - - - - morgand - Morgan Delagrange - morgand@apache.org - Apache - - Java Developer - - - - donaldp - Peter Donald - donaldp@apache.org - - - rdonkin - Robert Burrell Donkin - rdonkin@apache.org - The Apache Software Foundation - - - skitching - Simon Kitching - skitching@apache.org - The Apache Software Foundation - - - dennisl - Dennis Lundberg - dennisl@apache.org - The Apache Software Foundation - - - costin - Costin Manolache - costin@apache.org - The Apache Software Foundation - - - craigmcc - Craig McClanahan - craigmcc@apache.org - The Apache Software Foundation - - - tn - Thomas Neidhart - tn@apache.org - The Apache Software Foundation - - - sanders - Scott Sanders - sanders@apache.org - The Apache Software Foundation - - - rsitze - Richard Sitze - rsitze@apache.org - The Apache Software Foundation - - - bstansberry - Brian Stansberry - - - rwaldhoff - Rodney Waldhoff - rwaldhoff@apache.org - The Apache Software Foundation - - - - - Matthew P. Del Buono - - Provided patch - - - - Vince Eagen - vince256 at comcast dot net - - Lumberjack logging abstraction - - - - Peter Lawrey - - Provided patch - - - - Berin Loritsch - bloritsch at apache dot org - - Lumberjack logging abstraction - JDK 1.4 logging abstraction - - - - Philippe Mouawad - - Provided patch - - - - Neeme Praks - neeme at apache dot org - - Avalon logging abstraction - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/logging/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/logging/trunk - http://svn.apache.org/repos/asf/commons/proper/logging/trunk - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - testjar - package - - test-jar - - - commons-logging - - - - - apijar - package - - jar - - - ${project.artifactId}-api-${project.version} - - org/apache/commons/logging/*.class - org/apache/commons/logging/impl/LogFactoryImpl*.class - org/apache/commons/logging/impl/WeakHashtable*.class - org/apache/commons/logging/impl/SimpleLog*.class - org/apache/commons/logging/impl/NoOpLog*.class - org/apache/commons/logging/impl/Jdk14Logger.class - META-INF/LICENSE.txt - META-INF/NOTICE.txt - - - **/package.html - - - - - - adaptersjar - package - - jar - - - ${project.artifactId}-adapters-${project.version} - - org/apache/commons/logging/impl/**.class - META-INF/LICENSE.txt - META-INF/NOTICE.txt - - - org/apache/commons/logging/impl/WeakHashtable*.class - org/apache/commons/logging/impl/LogFactoryImpl*.class - - - - - - - fulljar - package - - jar - - - ${project.artifactId}-${project.version} - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - site.resources - site - - - - - - - - - - - run - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.0 - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar - jar - adapters - - - ${project.build.directory}/${project.artifactId}-api-${project.version}.jar - jar - api - - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - true - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - ${commons.surefire.version} - - - integration-test - - integration-test - verify - - - ${failsafe.runorder} - - **/*TestCase.java - - - - ${log4j:log4j:jar} - ${logkit:logkit:jar} - ${javax.servlet:servlet-api:jar} - target/${project.build.finalName}.jar - target/${project.artifactId}-api-${project.version}.jar - target/${project.artifactId}-adapters-${project.version}.jar - target/commons-logging-tests.jar - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.3 - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.4 - - - - properties - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - commons-logging-** - - - - - - - - - - junit - junit - 3.8.1 - test - - - log4j - log4j - 1.2.17 - true - - - logkit - logkit - 1.0.1 - true - - - avalon-framework - avalon-framework - 4.1.5 - true - - - javax.servlet - servlet-api - 2.3 - provided - true - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.7 - - ${basedir}/checkstyle.xml - false - ${basedir}/license-header.txt - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - true - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.0.1 - - - 1.3 - true - - ${basedir}/pmd.xml - - - - - - - - - apache.website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/logging/ - - - - - 1.2 - 1.2 - logging - 1.2 - LOGGING - 12310484 - - RC2 - 2.12 - true - - filesystem - - - javax.servlet;version="[2.1.0, 3.0.0)";resolution:=optional, - org.apache.avalon.framework.logger;version="[4.1.3, 4.1.5]";resolution:=optional, - org.apache.log;version="[1.0.1, 1.0.1]";resolution:=optional, - org.apache.log4j;version="[1.2.15, 2.0.0)";resolution:=optional - - - diff --git a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 b/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 deleted file mode 100644 index 8cb2a62147305605510b07bb6729123b3f0ac2cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -075c03ba4b01932842a996ef8d3fc1ab61ddeac2 \ No newline at end of file diff --git a/artifacts/m2/commons-validator/commons-validator/1.2.0/_remote.repositories b/artifacts/m2/commons-validator/commons-validator/1.2.0/_remote.repositories deleted file mode 100644 index 82f40c0e6c83cd4fb978e675d9bd74c9f7affdcd..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.2.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -commons-validator-1.2.0.jar>repo.jenkins-ci.org= -commons-validator-1.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar b/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar deleted file mode 100644 index d5a41c70c18b8a77b973cb889d9b7696e3285fd5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar and /dev/null differ diff --git a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 b/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 deleted file mode 100644 index cda871226464716ced7b93804a89d8fa59793a30..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -13dcebc00d206605bea72f6191b80370eb3ca805 \ No newline at end of file diff --git a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom b/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom deleted file mode 100644 index 2f0a8e01111e57a4e711e03154ecec395da765ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom +++ /dev/null @@ -1,295 +0,0 @@ - - 4.0.0 - commons-validator - commons-validator - Validator - 1.2.0 - Commons Validator provides the building blocks for both client side validation - and server side data validation. It may be used standalone or with a framework like - Struts. - http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - http://issues.apache.org/bugzilla/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2002 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org - - - - - mrdon - Don Brown - mrdon@apache.org - - - - martinc - Martin Cooper - martinc@apache.org - - - - dgraham - David Graham - dgraham@apache.org - - - - husted - Ted Husted - husted@apache.org - - - - rleland - Rob Leland - rleland at apache.org - - - - craigmcc - Craig McClanahan - craigmcc@apache.org - - - - jmitchell - James Mitchell - jmitchell NOSPAM apache.org - EdgeTech, Inc - - - niallp - Niall Pemberton - niallp NOSPAM apache.org - - - - turner - James Turner - turner@apache.org - - - - dwinterfeldt - David Winterfeldt - dwinterfeldt@apache.org - - - - - - Saul Q Yuan Add - - - Shane Bailey - - - Dave Derry - - - Tim O'Brien - - - Scott Clasen - ticktock@speakeasy.net> - - - Marcus Brito Finish - - - Padma Ginnaram - - - Thomas Jacob - thomas.jacob@sinnerschrader.com - - - Adam Kramer - - - Greg Ludington - - - Bjorn-H. Moritz - - - David Neuer - DavidNeuer@nascopgh.com - - - Kurt Post - - - Arun Mammen Thomas - - - Steven Fines - steven.fines@cotelligent.com - - - Didier Romelot - didier.romelot@renault.com - - - Steve Stair - - - Jeremy Tan - jeremytan@scualum.com - - - 94RGt2 - lmagee@biziworks.com.au - - - Nacho G. Mac Dowell - - - Mark Lowe - mark.lowe@boxstuff.com - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - http://svn.apache.org/viewcvs.cgi - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/share - src/test - - - META-INF - ${basedir} - - NOTICE.txt - - - - - - ${pom.build.unitTestSourceDirectory} - - **/*.xml - - - - - - surefire - - - **/ValidatorTestSuite.java - - - - - maven-xdoc-plugin - 1.9.2 - - <strong>Site Only</strong> - v1.9.2 (minimum) - required for building the Validator Site documentation. - - - - maven-changelog-plugin - 1.8.2 - - <strong>Site Only</strong> - v1.8.2 (minimum) - required for building the Validator Site documentation. - - - - maven-file-activity-plugin - 1.5.2 - - <strong>Site Only</strong> - v1.5.2 (minimum) - required for building the Validator Site documentation. - - - - maven-developer-activity-plugin - 1.5.2 - - <strong>Site Only</strong> - v1.5.2 (minimum) - required for building the Validator Site documentation. - - - - - - - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-digester - commons-digester - 1.6 - - - commons-logging - commons-logging - 1.0.4 - - - oro - oro - 2.0.8 - - - xml-apis - xml-apis - 2.0.2 - - - junit - junit - 3.8.1 - test - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/ - - - default - Default Site - scp://jakarta.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - -
\ No newline at end of file diff --git a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 b/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 deleted file mode 100644 index 47915db88aaf058b00ecdaaf06acd85279e19109..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a7992acb52332d17c1bd9f7f774361b68b183c23 \ No newline at end of file diff --git a/artifacts/m2/commons-validator/commons-validator/1.3.1/_remote.repositories b/artifacts/m2/commons-validator/commons-validator/1.3.1/_remote.repositories deleted file mode 100644 index 331bb89f492987ab3ec739c4d3c65436c750236d..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-validator-1.3.1.jar>repo.jenkins-ci.org= -commons-validator-1.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar b/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar deleted file mode 100644 index 55b12b1a98dcb29746fc866ef35216ef50a05626..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar and /dev/null differ diff --git a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 b/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 deleted file mode 100644 index 00e156c4cf0aa171f3c45fd3c23b703a9f859dc7..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d1fd6b1510f25e827adffcf17de3c85fa00e9391 \ No newline at end of file diff --git a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom b/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom deleted file mode 100644 index ff24a62fc249b1364ac11bb6e6c81d73bd1685e6..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom +++ /dev/null @@ -1,297 +0,0 @@ - - 4.0.0 - commons-validator - commons-validator - Validator - 1.3.1 - Commons Validator provides the building blocks for both client side validation - and server side data validation. It may be used standalone or with a framework like - Struts. - http://jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - http://issues.apache.org/jira/ - - - - - -
commons-dev@jakarta.apache.org
-
-
-
-
- 2002 - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/ - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/ - - - - - mrdon - Don Brown - mrdon@apache.org - - - martinc - Martin Cooper - martinc@apache.org - - - dgraham - David Graham - dgraham@apache.org - - - husted - Ted Husted - husted@apache.org - - - rleland - Rob Leland - rleland at apache.org - - - craigmcc - Craig McClanahan - craigmcc@apache.org - - - jmitchell - James Mitchell - jmitchell NOSPAM apache.org - EdgeTech, Inc - - - niallp - Niall Pemberton - - - turner - James Turner - turner@apache.org - - - dwinterfeldt - David Winterfeldt - dwinterfeldt@apache.org - - - bayard - Henri Yandell - - - - - Saul Q Yuan Add - - - Shane Bailey - - - Dave Derry - - - Tim O'Brien - - - Scott Clasen - ticktock@speakeasy.net> - - - Marcus Brito Finish - - - Padma Ginnaram - - - Thomas Jacob - thomas.jacob@sinnerschrader.com - - - Adam Kramer - - - Greg Ludington - - - Bjorn-H. Moritz - - - David Neuer - DavidNeuer@nascopgh.com - - - Kurt Post - - - Arun Mammen Thomas - - - Steven Fines - steven.fines@cotelligent.com - - - Didier Romelot - didier.romelot@renault.com - - - Steve Stair - - - Jeremy Tan - jeremytan@scualum.com - - - 94RGt2 - lmagee@biziworks.com.au - - - Nacho G. Mac Dowell - - - Mark Lowe - mark.lowe@boxstuff.com - - - - - The Apache Software License, Version 2.0 - /LICENSE.txt - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk - http://svn.apache.org/viewvc - - - The Apache Software Foundation - http://jakarta.apache.org - - - src/share - src/test - - - META-INF - ${basedir} - - NOTICE.txt - - - - - - ${pom.build.unitTestSourceDirectory} - - **/*.xml - - - - - - maven-surefire-plugin - - - **/*Test.java - - - **/routines/BaseCalendarValidatorTest.java - **/routines/BaseNumberValidatorTest.java - - - - - maven-xdoc-plugin - 1.9.2 - - <strong>Site Only</strong> - v1.9.2 (minimum) - required for building the Validator Site documentation. - - - - maven-changelog-plugin - 1.8.2 - - <strong>Site Only</strong> - v1.8.2 (minimum) - required for building the Validator Site documentation. - - - - maven-changes-plugin - 1.6 - - <strong>Site Only</strong> - v1.6 (minimum) - required for building the Validator Site documentation. - - - - maven-plugins - maven-cobertura-plugin - 1.1.1 - - test - Required only for generating test coverage reports. - - - - - - - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-digester - commons-digester - 1.6 - - - commons-logging - commons-logging - 1.0.4 - - - oro - oro - 2.0.8 - true - - - xml-apis - xml-apis - 2.0.2 - provided - - - junit - junit - 3.8.1 - test - - - - - default - Default Repository - file:///www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/ - - - default - Default Site - scp://people.apache.org//www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/ - - converted - -
\ No newline at end of file diff --git a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 b/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 deleted file mode 100644 index 2f70a8c86fdc0a4c13f98369ac59dc80f250958f..0000000000000000000000000000000000000000 --- a/artifacts/m2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d152f01fb849a11abbc3ef8d7ed0ae8e00b3b226 \ No newline at end of file diff --git a/artifacts/m2/dom4j/dom4j/1.1/_remote.repositories b/artifacts/m2/dom4j/dom4j/1.1/_remote.repositories deleted file mode 100644 index 49a29a175afc931f15a89e5f1bd8d50a69d142e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/dom4j/dom4j/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -dom4j-1.1.jar>repo.jenkins-ci.org= -dom4j-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.jar b/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.jar deleted file mode 100644 index 82e58524dc503ab8b0a524b0fc5b74d059b04608..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.jar and /dev/null differ diff --git a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 b/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 deleted file mode 100644 index 478129f82dfa6d4d669f64228661084bbdefbc3d..0000000000000000000000000000000000000000 --- a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0690b3108a502c8f033ea87e7278aec309ffa668 \ No newline at end of file diff --git a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.pom b/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.pom deleted file mode 100644 index e2a647bf506f5bfcbde9ea3e571ba91d83fd105e..0000000000000000000000000000000000000000 --- a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - dom4j - dom4j - 1.1 - \ No newline at end of file diff --git a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 b/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 deleted file mode 100644 index e3e5a304556122a2bbf829282502645077a269b3..0000000000000000000000000000000000000000 --- a/artifacts/m2/dom4j/dom4j/1.1/dom4j-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e401c1611e45fb0d472073d394f891fadc99fa6 \ No newline at end of file diff --git a/artifacts/m2/javax/annotation/jsr250-api/1.0/_remote.repositories b/artifacts/m2/javax/annotation/jsr250-api/1.0/_remote.repositories deleted file mode 100644 index 3de6c64d5dbbbdc3411daf4e0d0a351efa599f7e..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/annotation/jsr250-api/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -jsr250-api-1.0.jar>repo.jenkins-ci.org= -jsr250-api-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar b/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar deleted file mode 100644 index c1f29bf8446535ad7b10691894923f218370f692..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar and /dev/null differ diff --git a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar.sha1 b/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar.sha1 deleted file mode 100644 index f6db6c42513c809cb617bee7b0348e19fd91cbe3..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5025422767732a1ab45d93abfea846513d742dcf \ No newline at end of file diff --git a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom b/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom deleted file mode 100644 index 86bb900317966b9e3866c5ce09786ceec0ab07b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +++ /dev/null @@ -1,26 +0,0 @@ - - 4.0.0 - javax.annotation - jsr250-api - 1.0 - JSR-250 Common Annotations for the JavaTM Platform - JSR-250 Reference Implementation by Glassfish - http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html - - - - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 - https://glassfish.dev.java.net/public/CDDLv1.0.html - repo - - - - - - - http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html - - diff --git a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom.sha1 b/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom.sha1 deleted file mode 100644 index 6acbb059df1461f8825a8648739844c3d7a6d88d..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -828184cb963d953865b5941e416999e376b1c82a \ No newline at end of file diff --git a/artifacts/m2/javax/enterprise/cdi-api/1.0/_remote.repositories b/artifacts/m2/javax/enterprise/cdi-api/1.0/_remote.repositories deleted file mode 100644 index f1eb0d2f418f262908f9ae1ba5c1bd9eca5409d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/enterprise/cdi-api/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -cdi-api-1.0.jar>repo.jenkins-ci.org= -cdi-api-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar b/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar deleted file mode 100644 index fe240f6fd996e6dacbefb7d974006620026e49f6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar and /dev/null differ diff --git a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar.sha1 b/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar.sha1 deleted file mode 100644 index de72fc6fc41ef732c76ea572633205ea3da8a580..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -44c453f60909dfc223552ace63e05c694215156b \ No newline at end of file diff --git a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom b/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom deleted file mode 100644 index 79e317be79a1769739c5645eab9683f7cb3c45e7..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +++ /dev/null @@ -1,47 +0,0 @@ - - 4.0.0 - - - org.jboss.weld - weld-api-parent - 1.0 - ../parent/pom.xml - - - javax.enterprise - cdi-api - jar - - CDI APIs - APIs for JSR-299: Contexts and Dependency Injection for Java EE - - - - javax.el - el-api - true - - - - org.jboss.ejb3 - jboss-ejb3-api - true - - - - org.jboss.interceptor - jboss-interceptor-api - - - - javax.annotation - jsr250-api - - - - javax.inject - javax.inject - - - - diff --git a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom.sha1 b/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom.sha1 deleted file mode 100644 index 540760be1bb18ba86dd6de62805daea89e814206..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b79b64c2b1cd6ddc1663f9f48dbf527262a2c3e5 \ No newline at end of file diff --git a/artifacts/m2/javax/inject/javax.inject/1/_remote.repositories b/artifacts/m2/javax/inject/javax.inject/1/_remote.repositories deleted file mode 100644 index 42d0810fa785210c8e8e5fdb45d9f5f11bf81648..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/inject/javax.inject/1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -javax.inject-1.pom>repo.jenkins-ci.org= -javax.inject-1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.jar b/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.jar deleted file mode 100644 index b2a9d0bf7bd463a6361898b36f010edd05c0cf6e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.jar and /dev/null differ diff --git a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.jar.sha1 b/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.jar.sha1 deleted file mode 100644 index c2fa85f1e9bca10863c3973d6e26b754b9f664d9..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6975da39a7040257bd51d21a231b76c915872d38 \ No newline at end of file diff --git a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.pom b/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.pom deleted file mode 100644 index 79c0ccafec96add9e9eb2a0e4877b423ff8bcea9..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - javax.inject - javax.inject - jar - javax.inject - 1 - The javax.inject API - http://code.google.com/p/atinject/ - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - http://code.google.com/p/atinject/source/checkout - - diff --git a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.pom.sha1 b/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.pom.sha1 deleted file mode 100644 index e0d02e295bf22f313fa3f333427416a10d48d630..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/inject/javax.inject/1/javax.inject-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b8e00a8a0deb0ebef447570e37ff8146ccd92cbe \ No newline at end of file diff --git a/artifacts/m2/javax/servlet/servlet-api/2.3/_remote.repositories b/artifacts/m2/javax/servlet/servlet-api/2.3/_remote.repositories deleted file mode 100644 index 31084231d81278f5102aa2a1cdb1dbda8c8e372e..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/servlet/servlet-api/2.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:16 CST 2019 -servlet-api-2.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom b/artifacts/m2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom deleted file mode 100644 index 0f090044f64bceeea76742c078c174e886ba0f24..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - javax.servlet - servlet-api - 2.3 - \ No newline at end of file diff --git a/artifacts/m2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 b/artifacts/m2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 deleted file mode 100644 index afd3ca646c2aae4fcb42b65309113559219af729..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a7b9bcc0517b8fc785f306518b66616d9339548 \ No newline at end of file diff --git a/artifacts/m2/javax/servlet/servlet-api/2.5/_remote.repositories b/artifacts/m2/javax/servlet/servlet-api/2.5/_remote.repositories deleted file mode 100644 index 0279da452b3f47caaec39a6467363ee03e0bbf74..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/servlet/servlet-api/2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:05 CST 2019 -servlet-api-2.5.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar b/artifacts/m2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar deleted file mode 100644 index fb5249346847105c26d30da1048d8e2c364e7d6f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar and /dev/null differ diff --git a/artifacts/m2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 b/artifacts/m2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 deleted file mode 100644 index 08564097ebe7c07a1a608c440d27daf501f785ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5959582d97d8b61f4d154ca9e495aafd16726e34 \ No newline at end of file diff --git a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/_remote.repositories b/artifacts/m2/javax/validation/validation-api/1.1.0.Final/_remote.repositories deleted file mode 100644 index 45955e674c9e4d9999433913d3d46ea46ebbc41b..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -validation-api-1.1.0.Final.jar>repo.jenkins-ci.org= -validation-api-1.1.0.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar b/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar deleted file mode 100644 index de85403868d90e62cd40c6e7fb64662ed4908594..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar and /dev/null differ diff --git a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar.sha1 b/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar.sha1 deleted file mode 100644 index 3b852f0cc66711b68152b7239841261772f82fd6..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8613ae82954779d518631e05daa73a6a954817d5 \ No newline at end of file diff --git a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom b/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom deleted file mode 100644 index 78600159f9a82b930fc1bed3c9a56682323563ba..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom +++ /dev/null @@ -1,210 +0,0 @@ - - - 4.0.0 - - javax.validation - validation-api - 1.1.0.Final - jar - Bean Validation API - http://beanvalidation.org - - - Bean Validation API - - - - - epbernard - Emmanuel Bernard - emmanuel@hibernate.org - JBoss, by Red Hat - http://in.relation.to/Bloggers/Emmanuel - - - emmanuelbernard - Emmanuel Bernard - emmanuel@hibernate.org - JBoss, by Red Hat - http://in.relation.to/Bloggers/Emmanuel - - - hardy.ferentschik - Hardy Ferentschik - hferents@redhat.com - JBoss, by Red Hat - http://in.relation.to/Bloggers/Hardy - - - gunnar.morling - Gunnar Morling - gunnar@hibernate.org - JBoss, by Red Hat - http://www.gunnarmorling.de/ - - - - - JIRA - http://opensource.atlassian.com/projects/hibernate/browse/BVAL - - - 2007 - - - - The Apache Software License, Version 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 - 1.1.0.Final - - - - - 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/ - - - - - - UTF-8 - - - - - org.testng - testng - 6.8 - test - - - - - - - org.apache.felix - maven-bundle-plugin - 2.3.7 - - - - javax.validation.*;version="${project.version}", - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.13 - - once - true - - **/*Test.java - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - ${basedir}/target/classes/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - attach-javadocs - - jar - - - - - - http://docs.oracle.com/javase/6/docs/api - - Bean Validation API Packages - Bean Validation API ${project.version} - Bean Validation API ${project.version} - - - - org.apache.maven.plugins - maven-install-plugin - 2.4 - - - org.apache.maven.plugins - maven-release-plugin - 2.4 - - true - true - deploy - - - - - - - - release - - true - - - - - diff --git a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom.sha1 b/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom.sha1 deleted file mode 100644 index 88457d67dda7ed1246dfae35030040d94e8e38b3..0000000000000000000000000000000000000000 --- a/artifacts/m2/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0d2ad4d1498d1048abc6c6948fd3f835d8fdafb0 \ No newline at end of file diff --git a/artifacts/m2/jdom/jdom/1.0/_remote.repositories b/artifacts/m2/jdom/jdom/1.0/_remote.repositories deleted file mode 100644 index 0414460f905bcf473970e5caae67721e26792054..0000000000000000000000000000000000000000 --- a/artifacts/m2/jdom/jdom/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:32 CST 2019 -jdom-1.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/jdom/jdom/1.0/jdom-1.0.jar b/artifacts/m2/jdom/jdom/1.0/jdom-1.0.jar deleted file mode 100644 index 288e64cb5c435f34499a58b234c2106f9d9f0783..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/jdom/jdom/1.0/jdom-1.0.jar and /dev/null differ diff --git a/artifacts/m2/jdom/jdom/1.0/jdom-1.0.jar.sha1 b/artifacts/m2/jdom/jdom/1.0/jdom-1.0.jar.sha1 deleted file mode 100644 index da5395e45cf91341001e410ca0b6b2b9e89adadc..0000000000000000000000000000000000000000 --- a/artifacts/m2/jdom/jdom/1.0/jdom-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a2ac1cd690ab4c80defe7f9bce14d35934c35cec \ No newline at end of file diff --git a/artifacts/m2/junit/junit/3.8.1/_remote.repositories b/artifacts/m2/junit/junit/3.8.1/_remote.repositories deleted file mode 100644 index 9ff765535d585139eb0da454b7a23ae328f0264d..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -junit-3.8.1.jar>repo.jenkins-ci.org= -junit-3.8.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.jar b/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.jar deleted file mode 100644 index 674d71e89ea154dbe2e3cd032821c22b39e8fd68..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.jar and /dev/null differ diff --git a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.jar.sha1 b/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.jar.sha1 deleted file mode 100644 index ed10f0304972c4c34a54f5c1e3332c02404b1d32..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -99129f16442844f6a4a11ae22fbbee40b14d774f \ No newline at end of file diff --git a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.pom b/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.pom deleted file mode 100644 index 2169a65d766dd94b22cfdf1b8aaa855ecd484102..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.pom +++ /dev/null @@ -1,29 +0,0 @@ - - - 4.0.0 - junit - junit - 3.8.1 - JUnit - http://junit.org - - JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. - - - JUnit - http://www.junit.org - - - - Common Public License Version 1.0 - http://www.opensource.org/licenses/cpl1.0.txt - - - - http://junit.cvs.sourceforge.net/junit/ - - - - diff --git a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.pom.sha1 b/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.pom.sha1 deleted file mode 100644 index 82ac670553a0f3edfc451dd3d7be68b248abfc9b..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.1/junit-3.8.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -16d74791c801c89b0071b1680ea0bc85c93417bb \ No newline at end of file diff --git a/artifacts/m2/junit/junit/3.8.2/_remote.repositories b/artifacts/m2/junit/junit/3.8.2/_remote.repositories deleted file mode 100644 index fd8b71674014f6d679952d2b54a58f53df7225d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -junit-3.8.2.jar>repo.jenkins-ci.org= -junit-3.8.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.jar b/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.jar deleted file mode 100644 index c8f711d050eff209321f799d85ebb3bbe305d481..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.jar and /dev/null differ diff --git a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.jar.sha1 b/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.jar.sha1 deleted file mode 100644 index 8ad65929e825abf7e103b424da689cab5c9379d7..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -07e4cde26b53a9a0e3fe5b00d1dbbc7cc1d46060 \ No newline at end of file diff --git a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.pom b/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.pom deleted file mode 100644 index 8488147c1f4a1082efd1f55576db99b6e4ce2885..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.pom +++ /dev/null @@ -1,26 +0,0 @@ - - 4.0.0 - junit - junit - 3.8.2 - JUnit - http://junit.org - - JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. - - - JUnit - http://www.junit.org - - - - Common Public License Version 1.0 - http://www.opensource.org/licenses/cpl1.0.txt - - - - http://junit.cvs.sourceforge.net/junit/ - - - - diff --git a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.pom.sha1 b/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.pom.sha1 deleted file mode 100644 index 89bdd745e2c4a14d74cfd4f3c901e03ebb31a82e..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/3.8.2/junit-3.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c735a15ca8fc2ea77db963c71ade153ffeb8212e \ No newline at end of file diff --git a/artifacts/m2/junit/junit/4.12/_remote.repositories b/artifacts/m2/junit/junit/4.12/_remote.repositories deleted file mode 100644 index 5b27ec2bd94b94041b3f48b92b53ab619e90fb72..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.12/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -junit-4.12.jar>repo.jenkins-ci.org= -junit-4.12.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/junit/junit/4.12/junit-4.12.jar b/artifacts/m2/junit/junit/4.12/junit-4.12.jar deleted file mode 100644 index 3a7fc266c3e32283a2b21fe12166ebdcc33a1da1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/junit/junit/4.12/junit-4.12.jar and /dev/null differ diff --git a/artifacts/m2/junit/junit/4.12/junit-4.12.jar.sha1 b/artifacts/m2/junit/junit/4.12/junit-4.12.jar.sha1 deleted file mode 100644 index 94d69f8b71526c27c51c9f95977863181eba647d..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.12/junit-4.12.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2973d150c0dc1fefe998f834810d68f278ea58ec \ No newline at end of file diff --git a/artifacts/m2/junit/junit/4.12/junit-4.12.pom b/artifacts/m2/junit/junit/4.12/junit-4.12.pom deleted file mode 100644 index 799cb9bed88c5ed71a6bb4ba5e10abc6d1d10960..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.12/junit-4.12.pom +++ /dev/null @@ -1,551 +0,0 @@ - - - 4.0.0 - - junit - junit - 4.12 - - 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 - junit@yahoogroups.com - https://github.com/junit-team/junit/graphs/contributors - - developers - - - - - - - JUnit Mailing List - junit@yahoogroups.com - https://groups.yahoo.com/neo/groups/junit/info - - - - - 3.0.4 - - - - scm:git:git://github.com/junit-team/junit.git - scm:git:git@github.com:junit-team/junit.git - http://github.com/junit-team/junit/tree/master - r4.12 - - - github - https://github.com/junit-team/junit/issues - - - jenkins - https://junit.ci.cloudbees.com/ - - - https://github.com/junit-team/junit/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/junit.git - - - - - 1.5 - ISO-8859-1 - - 67893CC4 - - - - - org.hamcrest - hamcrest-core - 1.3 - - - - - - - ${project.basedir}/src/main/resources - - - ${project.basedir} - - LICENSE-junit.txt - - - - - - - - maven-enforcer-plugin - 1.3.1 - - - 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 - src/main/java/junit/runner/Version.java.template - src/main/java/junit/runner/Version.java - false - @version@ - ${project.version} - - - - - maven-compiler-plugin - 3.1 - - ${project.build.sourceEncoding} - ${jdkVersion} - ${jdkVersion} - ${jdkVersion} - ${jdkVersion} - 1.5 - true - true - true - true - - -Xlint:unchecked - - 128m - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.11 - - - signature-check - test - - check - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - - maven-surefire-plugin - 2.17 - - org/junit/tests/AllTests.java - true - false - - - - - maven-source-plugin - 2.2.1 - - - - maven-javadoc-plugin - 2.9.1 - - ${basedir}/src/main/javadoc/stylesheet.css - protected - false - false - false - true - true - false - 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:* - - - - - maven-release-plugin - 2.5 - - forked-path - false - -Pgenerate-docs,junit-release ${arguments} - r@{project.version} - - - - maven-site-plugin - 3.3 - - - com.github.stephenc.wagon - wagon-gitsite - 0.4.1 - - - org.apache.maven.doxia - doxia-module-markdown - 1.5 - - - - - maven-jar-plugin - 2.4 - - - false - - true - - - - - - - - - - - maven-project-info-reports-plugin - 2.7 - - 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.9.1 - - javadoc/latest - ${basedir}/src/main/javadoc/stylesheet.css - protected - false - false - false - true - true - false - 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.5 - - - 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 - - - - - - - fast-tests - - - - maven-surefire-plugin - - classes - 2 - - - - org.apache.maven.surefire - surefire-junit47 - 2.17 - - - - - - - - diff --git a/artifacts/m2/junit/junit/4.12/junit-4.12.pom.sha1 b/artifacts/m2/junit/junit/4.12/junit-4.12.pom.sha1 deleted file mode 100644 index 339eaaf5db01f5d092900aeaecc56e8dbf7b1c22..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.12/junit-4.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -35fb238baee3f3af739074d723279ebea2028398 \ No newline at end of file diff --git a/artifacts/m2/junit/junit/4.8.2/_remote.repositories b/artifacts/m2/junit/junit/4.8.2/_remote.repositories deleted file mode 100644 index 5d8dd7102a0c11d0cbda36dc6fd839a222819de1..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -junit-4.8.2.jar>repo.jenkins-ci.org= -junit-4.8.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.jar b/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.jar deleted file mode 100644 index 5b4bb849af9583fec1ea0a0ccc0d571ef49aa8ba..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.jar and /dev/null differ diff --git a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.jar.sha1 b/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.jar.sha1 deleted file mode 100644 index 6ee05dc74d3cdd551867b67f31de2304ea89b9cb..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c94f54227b08100974c36170dcb53329435fe5ad \ No newline at end of file diff --git a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.pom b/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.pom deleted file mode 100644 index c971a73f7972789288f42977b1924be4c7b5311c..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - junit - junit - 4.8.2 - jar - JUnit - http://junit.org - - JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. - - - JUnit - http://www.junit.org - - - - Common Public License Version 1.0 - http://www.opensource.org/licenses/cpl1.0.txt - - - - http://github.com/KentBeck/junit - scm:git:git://github.com/KentBeck/junit.git - - - - - - - Erich Gamma - - - Kent Beck - - - David Saff - - - diff --git a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.pom.sha1 b/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.pom.sha1 deleted file mode 100644 index 6084b3211aac89ca54dff6d0a8baea4edd1f3c12..0000000000000000000000000000000000000000 --- a/artifacts/m2/junit/junit/4.8.2/junit-4.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c9c2d21b75368533f8a5ec1fefa2633989e80294 \ No newline at end of file diff --git a/artifacts/m2/log4j/log4j/1.2.12/_remote.repositories b/artifacts/m2/log4j/log4j/1.2.12/_remote.repositories deleted file mode 100644 index 7c3bcfdb148d345ebb4d9e13c30b6f739e7cd9d2..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.12/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -log4j-1.2.12.pom>repo.jenkins-ci.org= -log4j-1.2.12.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.jar b/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.jar deleted file mode 100644 index 9b5a720088596bf7baed37a28423ea8cca210f84..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.jar and /dev/null differ diff --git a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.jar.sha1 b/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.jar.sha1 deleted file mode 100644 index f8fc9e94c2a216de1325db73de7a499b3a4d71e3..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -057b8740427ee6d7b0b60792751356cad17dc0d9 \ No newline at end of file diff --git a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.pom b/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.pom deleted file mode 100644 index 8c106086043ebac19eca95814f692dc2dd4c4d43..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - log4j - log4j - 1.2.12 - \ No newline at end of file diff --git a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 b/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 deleted file mode 100644 index b14423865a930c918df8a3e21f48388bc0b61189..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.12/log4j-1.2.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -70545179454d298d1ff01335fbec3c2acfd381d5 \ No newline at end of file diff --git a/artifacts/m2/log4j/log4j/1.2.17/_remote.repositories b/artifacts/m2/log4j/log4j/1.2.17/_remote.repositories deleted file mode 100644 index 512be585f6531c57abe04a4fd352d0476a4de770..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.17/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -log4j-1.2.17.pom>repo.jenkins-ci.org= -log4j-1.2.17.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.jar b/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.jar deleted file mode 100644 index 1d425cf7d7e25f81be64d32c406ff66cfb6c4766..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.jar and /dev/null differ diff --git a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.jar.sha1 b/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.jar.sha1 deleted file mode 100644 index 3dc643fce2aed0a543cf3cd90dc8151a60a9487e..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5af35056b4d257e4b64b9e8069c0746e8b08629f \ No newline at end of file diff --git a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.pom b/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.pom deleted file mode 100644 index a8d7eba57fed3d7607ccd2b7eec0575880f7ff13..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.pom +++ /dev/null @@ -1,583 +0,0 @@ - - - 4.0.0 - log4j - log4j - bundle - Apache Log4j - 1.2.17 - Apache Log4j 1.2 - http://logging.apache.org/log4j/1.2/ - - Bugzilla - https://issues.apache.org/bugzilla/describecomponents.cgi?product=Log4j - - - Gump - http://vmgump.apache.org/gump/public/logging-log4j-12/logging-log4j-12/index.html - - 1999 - - - log4j-user - log4j-user-subscribe@logging.apache.org - log4j-user-unsubscribe@logging.apache.org - 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 - - - - log4j-dev - log4j-dev-subscribe@logging.apache.org - log4j-dev-unsubscribe@logging.apache.org - log4j-dev@logging.apache.org - http://mail-archives.apache.org/mod_mbox/logging-log4j-dev/ - - http://marc.info/?l=log4j-dev - http://dir.gmane.org/gmane.comp.jakarta.log4j.devel - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:svn:http://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_17_rc3 - scm:svn:https://svn.apache.org/repos/asf/logging/log4j/tags/v1_2_17_rc3 - http://svn.apache.org/viewvc/logging/log4j/tags/v1_2_17_rc3 - - - Apache Software Foundation - http://www.apache.org - - - - - org.apache.maven.plugins - maven-resources-plugin - - UTF-8 - - - - maven-surefire-plugin - 2.5 - - tests - plain - pertest - true - - org/apache/log4j/LevelTest.java - org/apache/log4j/PriorityTest.java - org/apache/log4j/CategoryTest.java - org/apache/log4j/FileAppenderTest.java - org/apache/log4j/LogManagerTest.java - org/apache/log4j/helpers.LogLogTest.java - org/apache/log4j/LayoutTest.java - org/apache/log4j/helpers.DateLayoutTest.java - org/apache/log4j/TTCCLayoutTest.java - org/apache/log4j/xml.XMLLayoutTest.java - org/apache/log4j/HTMLLayoutTest.java - org/apache/log4j/PatternLayoutTest.java - org/apache/log4j/spi.LoggingEventTest.java - org/apache/log4j/spi.ThrowableInformationTest.java - org/apache/log4j/spi.LocationInfoTest.java - org/apache/log4j/PropertyConfiguratorTest.java - org/apache/log4j/MinimumTestCase.java - org/apache/log4j/LoggerTestCase.java - org/apache/log4j/PatternLayoutTestCase.java - org/apache/log4j/HierarchyThresholdTestCase.java - org/apache/log4j/xml/DOMTestCase.java - org/apache/log4j/xml/CustomLevelTestCase.java - org/apache/log4j/customLogger/XLoggerTestCase.java - - - org/apache/log4j/xml/XMLLayoutTestCase.java - org/apache/log4j/xml/AsyncAppenderTestCase.java - org/apache/log4j/varia/LevelMatchFilterTestCase.java - - - org/apache/log4j/helpers/BoundedFIFOTestCase.java - org/apache/log4j/helpers/CyclicBufferTestCase.java - org/apache/log4j/helpers/PatternParserTestCase.java - org/apache/log4j/or/ORTestCase.java - org/apache/log4j/DRFATestCase.java - org/apache/log4j/RFATestCase.java - org/apache/log4j/varia/ERFATestCase.java - org/apache/log4j/net/SyslogAppenderTest - org/apache/log4j/nt/NTEventLogAppenderTest - org/apache/log4j/net/SocketAppenderTest - - - - - maven-compiler-plugin - 2.1 - - 1.4 - 1.4 - UTF-8 - - - - maven-jar-plugin - 2.3 - - - - - org.apache.log4j - - * - log4j - ${project.version} - "Apache Software Foundation" - - - - - - - - maven-antrun-plugin - 1.2 - - - - process-classes - ntdll - - - - - - - - - - - - run - - - - - test-compile - mkdir_tests_output - - - - - - - run - - - - clean - rmdir_tests_output - - - - - - - - run - - - - test - runAll - - - - - - - - - - - run - - - - - site - untag-site - - - - - - - - - - - run - - - - post-site - post-site - - - - - - - run - - - - site-deploy - site-deploy - - - - - - - run - - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - ant - ant-nodeps - 1.6.5 - - - ant-contrib - ant-contrib - 1.0b2 - - - ant - ant-junit - 1.6.5 - - - junit - junit - 3.8.1 - compile - - - sun.jdk - tools - 1.4.2 - system - ${tools.jar} - - - - - maven-assembly-plugin - 2.2-beta-5 - - - src/assembly/bin.xml - - false - - - - - assembly - - - - - - - maven-javadoc-plugin - 2.7 - - true - .svn - UTF-8 - UTF-8 - - - - - jar - javadoc - - - - site - pre-site - - javadoc - - - - - - maven-release-plugin - 2.0-beta-9 - - - package site-deploy assembly:attached deploy - - - - maven-source-plugin - 2.1.1 - - - - jar - - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - 1.2.15 - - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - tests/witness/** - tests/output/** - tests/classes/** - - - - - org.apache.felix - maven-bundle-plugin - 2.1.0 - true - - - - !org.apache.log4j.lf5.*, - !org.apache.log4j.chainsaw.*, - org.apache.log4j.*;version=1.2.17;-noimport:=true - - !javax.swing.*, - !com.ibm.uvm.tools.*, - !com.sun.jdmk.comm.*, - javax.jmdns.*;resolution:=optional, - javax.jms.*;resolution:=optional, - javax.mail.*;resolution:=optional, - * - http://logging.apache.org/log4j/1.2 - - - - - maven-site-plugin - 3.1 - - ${basedir}/src/site/maven-site.vm - true - - - - package - - site - - - - - - tests/src/java - - - tests/resources - - - - - - - maven-project-info-reports-plugin - 2.4 - - - - scm - dependencies - cim - issue-tracking - mailing-list - license - - - - - - maven-jxr-plugin - 2.1 - - - maven-changes-plugin - 2.7 - - - - changes-report - - - - - - - - - mac - - - mac - - - - ${java.home}/../Classes/classes.jar - ${user.home}/.m2/repository - build - - - - default - - true - - - ${java.home}/../lib/tools.jar - ${user.home}/.m2/repository - build - - - - - - - javax.mail - mail - 1.4.3 - true - - - org.apache.openejb - javaee-api - 5.0-2 - jar - provided - - - - oro - oro - 2.0.8 - test - - - junit - junit - 3.8.2 - test - - - org.apache.geronimo.specs - geronimo-jms_1.1_spec - 1.0 - true - - - - - logging.repo - scp://people.apache.org/www/people.apache.org/builds/logging/repo/ - - - logging.site - scp://localhost/${user.dir}/target/site-deploy - - - diff --git a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.pom.sha1 b/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.pom.sha1 deleted file mode 100644 index 937d5a2736ac3ad2854919dd5546c23cae8b64e7..0000000000000000000000000000000000000000 --- a/artifacts/m2/log4j/log4j/1.2.17/log4j-1.2.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ed02571485275f397035e51c0213a4ca262ffd31 \ No newline at end of file diff --git a/artifacts/m2/logkit/logkit/1.0.1/_remote.repositories b/artifacts/m2/logkit/logkit/1.0.1/_remote.repositories deleted file mode 100644 index c79e3aeeb03fb77abf8916c2043100cac6863258..0000000000000000000000000000000000000000 --- a/artifacts/m2/logkit/logkit/1.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:15 CST 2019 -logkit-1.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/logkit/logkit/1.0.1/logkit-1.0.1.pom b/artifacts/m2/logkit/logkit/1.0.1/logkit-1.0.1.pom deleted file mode 100644 index 6b274354371d1dfca8ce4713c9a829bafb5890ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/logkit/logkit/1.0.1/logkit-1.0.1.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - logkit - logkit - 1.0.1 - diff --git a/artifacts/m2/logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 b/artifacts/m2/logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 deleted file mode 100644 index b314475ef66e2ec4ed500f29eaae59d3a6e189e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/logkit/logkit/1.0.1/logkit-1.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff3b4e6ced322bc8a21fa3aadfcf7f131a1ee08c \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/1/_remote.repositories b/artifacts/m2/org/apache/apache/1/_remote.repositories deleted file mode 100644 index a9a998205fd6e5a1c1e23c85c0eec0b987582e66..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:11 CST 2019 -apache-1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/1/apache-1.pom b/artifacts/m2/org/apache/apache/1/apache-1.pom deleted file mode 100644 index 6e30919b3b0be58072eeb54f7eab62ccb4854a44..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/1/apache-1.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 1 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - apache.releases - Apache Release Distribution Repository - scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - diff --git a/artifacts/m2/org/apache/apache/1/apache-1.pom.sha1 b/artifacts/m2/org/apache/apache/1/apache-1.pom.sha1 deleted file mode 100644 index b5cb4fbfd7fd2a8a8d393f65ad494c984e4faea6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/1/apache-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c5ad83a72de5b220b47df26d29a952aaddbaf8b0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/10/_remote.repositories b/artifacts/m2/org/apache/apache/10/_remote.repositories deleted file mode 100644 index 4a0135fcf0a6cf2a7f95a3dc5316563a9c2dd6c8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:28 CST 2019 -apache-10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/10/apache-10.pom b/artifacts/m2/org/apache/apache/10/apache-10.pom deleted file mode 100644 index 433a8ceb761a7b009e701e21ab8eebab749e3b29..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/10/apache-10.pom +++ /dev/null @@ -1,398 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 10 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-10 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-10 - http://svn.apache.org/viewvc/maven/pom/tags/apache-10 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - true - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.6 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.3 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.8 - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - false - deploy - -Papache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.2.1 - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - org.apache.maven.plugins - maven-scm-plugin - 1.4 - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - org.apache.maven.wagon - wagon-ssh - 1.0 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.9 - - - org.apache.rat - apache-rat-plugin - 0.7 - - - org.codehaus.mojo - clirr-maven-plugin - 2.3 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.4 - - - - index - summary - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.3 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useagent} - - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/10/apache-10.pom.sha1 b/artifacts/m2/org/apache/apache/10/apache-10.pom.sha1 deleted file mode 100644 index 8a6199562c6154e6a27e8514878944da23e4e3c3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/10/apache-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eb08fbde3c1b0f70fed7182d603e20a42453fe76 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/11/_remote.repositories b/artifacts/m2/org/apache/apache/11/_remote.repositories deleted file mode 100644 index 0309ca34a05ef689a8d5cfc447fe63dbead3ac7e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:26 CST 2019 -apache-11.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/11/apache-11.pom b/artifacts/m2/org/apache/apache/11/apache-11.pom deleted file mode 100644 index 5e0ed6ba1199d5a43fc86e6169d8de7d2b1480b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/11/apache-11.pom +++ /dev/null @@ -1,398 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 11 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-11 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-11 - http://svn.apache.org/viewvc/maven/pom/tags/apache-11 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - true - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.5.1 - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.6 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.1 - - - - org.apache.maven.plugins - maven-release-plugin - 2.3.2 - - false - deploy - -Papache-release ${arguments} - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.3 - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - org.apache.maven.plugins - maven-scm-plugin - 1.7 - - - org.apache.maven.plugins - maven-site-plugin - 3.1 - - - org.apache.maven.wagon - wagon-ssh - 1.0 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12 - - - org.apache.rat - apache-rat-plugin - 0.8 - - - org.codehaus.mojo - clirr-maven-plugin - 2.4 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.5 - - - - index - summary - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useagent} - - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/11/apache-11.pom.sha1 b/artifacts/m2/org/apache/apache/11/apache-11.pom.sha1 deleted file mode 100644 index 14aefff5d28dc4c57f498d251f945526fd35995d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/11/apache-11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -15042cb5eb013e0d4371437db16187aa80a27881 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/13/_remote.repositories b/artifacts/m2/org/apache/apache/13/_remote.repositories deleted file mode 100644 index 37c226656500ce23b2dad7fa7cda3138d508b2d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/13/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:03 CST 2019 -apache-13.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/13/apache-13.pom b/artifacts/m2/org/apache/apache/13/apache-13.pom deleted file mode 100644 index 88219061506611fe5145a33d2f7b6939bf0140b9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/13/apache-13.pom +++ /dev/null @@ -1,371 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 13 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-13 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-13 - http://svn.apache.org/viewvc/maven/pom/tags/apache-13 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - true - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.5.1 - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.12.4 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.7 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - - - org.apache.maven.plugins - maven-release-plugin - 2.3.2 - - false - deploy - -Papache-release ${arguments} - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.4 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-scm-plugin - 1.8 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 3.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.4 - - - org.apache.rat - apache-rat-plugin - 0.8 - - - org.codehaus.mojo - clirr-maven-plugin - 2.4 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useagent} - - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/13/apache-13.pom.sha1 b/artifacts/m2/org/apache/apache/13/apache-13.pom.sha1 deleted file mode 100644 index c9ca0b8d56b94ad3bac4d76bd53c5a1a70d28682..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/13/apache-13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b93e66d256f09112eea02935c6a40b090ac5f2e7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/14/_remote.repositories b/artifacts/m2/org/apache/apache/14/_remote.repositories deleted file mode 100644 index 7842b99bccda5a90f9968535722f7bab5b03be93..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:35 CST 2019 -apache-14.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/14/apache-14.pom b/artifacts/m2/org/apache/apache/14/apache-14.pom deleted file mode 100644 index 95881492ab5c8b78a31001b91dacc3ad9267a5b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/14/apache-14.pom +++ /dev/null @@ -1,390 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 14 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 2.2.1 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-14 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-14 - http://svn.apache.org/viewvc/maven/pom/tags/apache-14 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.1 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.16 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.8 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - - - org.apache.maven.plugins - maven-release-plugin - 2.4.2 - - false - deploy - -Papache-release ${arguments} - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.16 - - - org.apache.rat - apache-rat-plugin - 0.10 - - - org.codehaus.mojo - clirr-maven-plugin - 2.6.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useagent} - - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/14/apache-14.pom.sha1 b/artifacts/m2/org/apache/apache/14/apache-14.pom.sha1 deleted file mode 100644 index 08323a7d7247e8619ccff08599ae260e806403e1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/14/apache-14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a1299447831f39757b5525bc095a1422e0a693da \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/15/_remote.repositories b/artifacts/m2/org/apache/apache/15/_remote.repositories deleted file mode 100644 index b13b1fb7513a43a25ad8fd74ceea55dcee4a2b38..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:22 CST 2019 -apache-15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/15/apache-15.pom b/artifacts/m2/org/apache/apache/15/apache-15.pom deleted file mode 100644 index 0422de187e9af2c1216adbcd3059b3a888d763c9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/15/apache-15.pom +++ /dev/null @@ -1,398 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 15 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 2.2.1 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-15 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-15 - http://svn.apache.org/viewvc/maven/pom/tags/apache-15 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - - 1.4 - 1.4 - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.17 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven - maven-archiver - 2.5 - - - org.codehaus.plexus - plexus-archiver - 2.4.4 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.3 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.17 - - - org.apache.rat - apache-rat-plugin - 0.11 - - - org.codehaus.mojo - clirr-maven-plugin - 2.6.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/15/apache-15.pom.sha1 b/artifacts/m2/org/apache/apache/15/apache-15.pom.sha1 deleted file mode 100644 index 52cbe294f1882302deb6f141a52582396a0b3890..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/15/apache-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e860ceabe1fec64c43db19633f5025b293669a5f \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/16/_remote.repositories b/artifacts/m2/org/apache/apache/16/_remote.repositories deleted file mode 100644 index c3f207bd88793e798a725d0c930267cefe064d93..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/16/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:29 CST 2019 -apache-16.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/16/apache-16.pom b/artifacts/m2/org/apache/apache/16/apache-16.pom deleted file mode 100644 index 78d1f56f7199652fded58ca4c3c44da074d04621..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/16/apache-16.pom +++ /dev/null @@ -1,402 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 16 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 2.2.1 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-16 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-16 - http://svn.apache.org/viewvc/maven/pom/tags/apache-16 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - - 1.4 - 1.4 - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.17 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - false - deploy - -Papache-release ${arguments} - 10 - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-scm-plugin - 1.9.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven - maven-archiver - 2.5 - - - org.codehaus.plexus - plexus-archiver - 2.4.4 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.3 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.17 - - - org.apache.rat - apache-rat-plugin - 0.11 - - - org.codehaus.mojo - clirr-maven-plugin - 2.6.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - sign - - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/16/apache-16.pom.sha1 b/artifacts/m2/org/apache/apache/16/apache-16.pom.sha1 deleted file mode 100644 index 45c4d43a9f74cd9cacf809c2fa323363c48ed875..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/16/apache-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dee0d4f5d74ad662f84964e6d8260fa78a725efe \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/17/_remote.repositories b/artifacts/m2/org/apache/apache/17/_remote.repositories deleted file mode 100644 index 59276998fca46ff5ad76974a60d72f166c84141b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:40 CST 2019 -apache-17.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/17/apache-17.pom b/artifacts/m2/org/apache/apache/17/apache-17.pom deleted file mode 100644 index a6a56354ebd50db6ffec1335a8a67d54f2965014..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/17/apache-17.pom +++ /dev/null @@ -1,413 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 17 - 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. - - http://www.apache.org/ - - The Apache Software Foundation - http://www.apache.org/ - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - 3.0 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-17 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-17 - http://svn.apache.org/viewvc/maven/pom/tags/apache-17 - - - - - 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 - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - UTF-8 - source-release - true - - 1.5 - 1.5 - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.8 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.8 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - 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.2 - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.apache.maven - maven-archiver - 2.5 - - - org.codehaus.plexus - plexus-archiver - 2.4.4 - - - org.apache.maven.doxia - doxia-core - 1.6 - - - xerces - xercesImpl - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-war-plugin - 2.5 - - - org.apache.rat - apache-rat-plugin - 0.11 - - - org.apache.maven.doxia - doxia-core - 1.2 - - - xerces - xercesImpl - - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.6.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.5 - - - - - 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 - - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/17/apache-17.pom.sha1 b/artifacts/m2/org/apache/apache/17/apache-17.pom.sha1 deleted file mode 100644 index 741e6ed1e37a6156051f325774d44a4bee198bf6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/17/apache-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1af4713a05de8feb5c1c178218a120400a6e4add \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/2/_remote.repositories b/artifacts/m2/org/apache/apache/2/_remote.repositories deleted file mode 100644 index 79a383392d9bdb86cba01b04958fc383d22a9d96..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:21 CST 2019 -apache-2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/2/apache-2.pom b/artifacts/m2/org/apache/apache/2/apache-2.pom deleted file mode 100644 index 09ea34a7926c79aded0d89dfa60c60a7aa03095d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/2/apache-2.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 2 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/www.apache.org/dist/maven-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - diff --git a/artifacts/m2/org/apache/apache/2/apache-2.pom.sha1 b/artifacts/m2/org/apache/apache/2/apache-2.pom.sha1 deleted file mode 100644 index ce2735c0dc30ef64761c3dda51d34cba444b2d82..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/2/apache-2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f2bf810b6bef0e1acc4f7855c5dca8846bd726e \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/3/_remote.repositories b/artifacts/m2/org/apache/apache/3/_remote.repositories deleted file mode 100644 index 54cc1160ef3f5f535b958ea4df3a016804c50a85..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:35 CST 2019 -apache-3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/3/apache-3.pom b/artifacts/m2/org/apache/apache/3/apache-3.pom deleted file mode 100644 index eeb76aaa76fb6b903fd946678d77c6f829b488a1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/3/apache-3.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 3 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - diff --git a/artifacts/m2/org/apache/apache/3/apache-3.pom.sha1 b/artifacts/m2/org/apache/apache/3/apache-3.pom.sha1 deleted file mode 100644 index 7a4691e9e2652b465872d76c8b2a80448fdcbc43..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/3/apache-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -77a22f2787eff4fe37c731862a3937b521d4c8f0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/4/_remote.repositories b/artifacts/m2/org/apache/apache/4/_remote.repositories deleted file mode 100644 index 15191e4d9a815606dba07894d57e7b83e20f9c0d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:16 CST 2019 -apache-4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/4/apache-4.pom b/artifacts/m2/org/apache/apache/4/apache-4.pom deleted file mode 100644 index cb94bb4157e295c8e79c7d53f8a349b16427aae3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/4/apache-4.pom +++ /dev/null @@ -1,100 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 4 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - http://www.apache.org/images/asf_logo_wide.gif - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-4 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-4 - http://svn.apache.org/viewvc/maven/pom/tags/apache-4 - - diff --git a/artifacts/m2/org/apache/apache/4/apache-4.pom.sha1 b/artifacts/m2/org/apache/apache/4/apache-4.pom.sha1 deleted file mode 100644 index 41b6146f04a369fe69ad30a4922d4a470ac39cf1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/4/apache-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cf2074835adc2d32de9c1e06a6f57699eebcfc17 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/5/_remote.repositories b/artifacts/m2/org/apache/apache/5/_remote.repositories deleted file mode 100644 index 35b07b36afb161dcc745ac1b19e56e26f28a1b8f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:51 CST 2019 -apache-5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/5/apache-5.pom b/artifacts/m2/org/apache/apache/5/apache-5.pom deleted file mode 100644 index dff3896b54a7f00b29e1ead2995766d04625950a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/5/apache-5.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 5 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-5 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-5 - http://svn.apache.org/viewvc/maven/pom/tags/apache-5 - - diff --git a/artifacts/m2/org/apache/apache/5/apache-5.pom.sha1 b/artifacts/m2/org/apache/apache/5/apache-5.pom.sha1 deleted file mode 100644 index 6d63559492942b1dfc8ed7e1bd7e142ce9775f83..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/5/apache-5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -25714fa7454895b4b2aaea20cf680c5c14947a3d \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/6/_remote.repositories b/artifacts/m2/org/apache/apache/6/_remote.repositories deleted file mode 100644 index 7e69512cc7996bce8deea20abf9ea7ae04862d50..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:17 CST 2019 -apache-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/6/apache-6.pom b/artifacts/m2/org/apache/apache/6/apache-6.pom deleted file mode 100644 index 9b8211d96cb46725dbbb5d461949fac2e9dc271d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/6/apache-6.pom +++ /dev/null @@ -1,320 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 6 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-6 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-6 - http://svn.apache.org/viewvc/maven/pom/tags/apache-6 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.3 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.5 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-9 - - false - deploy - -Papache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0 - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.2 - - - org.apache.maven.plugins - maven-site-plugin - 2.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.0.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - maven-project-info-reports-plugin - 2.1.1 - - - - - - - - apache-release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/6/apache-6.pom.sha1 b/artifacts/m2/org/apache/apache/6/apache-6.pom.sha1 deleted file mode 100644 index 91dc9d716ed845c2d5b2c43e922ae62b1eea7907..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/6/apache-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ae8c542be91dd6c393701924834f9853429e72d \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/7/_remote.repositories b/artifacts/m2/org/apache/apache/7/_remote.repositories deleted file mode 100644 index 861ca196b51a9c517eeab53d6e44986966e96567..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:24 CST 2019 -apache-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/7/apache-7.pom b/artifacts/m2/org/apache/apache/7/apache-7.pom deleted file mode 100644 index a95e17ea9412f28eeeb7796848feba3b85ae1470..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/7/apache-7.pom +++ /dev/null @@ -1,356 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 7 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-7 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-7 - http://svn.apache.org/viewvc/maven/pom/tags/apache-7 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.3 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.5.1 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-9 - - false - deploy - -Papache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.1 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.2 - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.2 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - diff --git a/artifacts/m2/org/apache/apache/7/apache-7.pom.sha1 b/artifacts/m2/org/apache/apache/7/apache-7.pom.sha1 deleted file mode 100644 index a6956310e5d4a8e14a582810efbf233b04106fcf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/7/apache-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6ebc3957064d9ca9d75431eb37ff40b380e64103 \ No newline at end of file diff --git a/artifacts/m2/org/apache/apache/9/_remote.repositories b/artifacts/m2/org/apache/apache/9/_remote.repositories deleted file mode 100644 index e09478657d38eff3826660c30277331145bfa295..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:31 CST 2019 -apache-9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/apache/9/apache-9.pom b/artifacts/m2/org/apache/apache/9/apache-9.pom deleted file mode 100644 index 96999194cf12b6e36c13326d8507cf8705abcc64..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/9/apache-9.pom +++ /dev/null @@ -1,380 +0,0 @@ - - - 4.0.0 - - - org.apache - apache - 9 - 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. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - The Apache Software Foundation - http://www.apache.org/ - - http://www.apache.org/ - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - http://www.apache.org/images/asf_logo_wide.gif - UTF-8 - source-release - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/apache-9 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/apache-9 - http://svn.apache.org/viewvc/maven/pom/tags/apache-9 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.7 - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - false - deploy - -Papache-release - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.1 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.4 - - - org.apache.maven.plugins - maven-site-plugin - 2.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.7.2 - - - org.apache.rat - apache-rat-plugin - 0.7 - - - org.codehaus.mojo - clirr-maven-plugin - 2.3 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - - - - - - apache-release - - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.3 - - - - - 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 - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - true - - - - - sign - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.0-beta-3 - - - - - - - diff --git a/artifacts/m2/org/apache/apache/9/apache-9.pom.sha1 b/artifacts/m2/org/apache/apache/9/apache-9.pom.sha1 deleted file mode 100644 index 5057ab242b0af749f91cae166c6ad9f9816d5ac0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/apache/9/apache-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8bf278d71130b79d2dd1ab9e86b5962e2300d30c \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.9/_remote.repositories b/artifacts/m2/org/apache/commons/commons-compress/1.9/_remote.repositories deleted file mode 100644 index 2ccdb50c44fd4672d55eafaf9babe536db721a8b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-compress/1.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -commons-compress-1.9.jar>repo.jenkins-ci.org= -commons-compress-1.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar b/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar deleted file mode 100644 index 14e7e868e80da57f6a1f9f0bb5211a450b153805..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar.sha1 b/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar.sha1 deleted file mode 100644 index 53ab31412435c192cff11b326229971b274f40f0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc18955ff1e36d5abd39a14bfe82b19154330a34 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom b/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom deleted file mode 100644 index 224d1e641f11acf404fc72dd37a7f958cc8d45bf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom +++ /dev/null @@ -1,344 +0,0 @@ - - - - 4.0.0 - - org.apache.commons - commons-parent - 34 - - - org.apache.commons - commons-compress - 1.9 - 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 and ar, cpio, jar, tar, zip, dump, 7z, arj. - - - - 1.5 - 1.5 - compress - COMPRESS - 12310904 - - ${project.version} - RC1 - - - - jira - http://issues.apache.org/jira/browse/COMPRESS - - - - - junit - junit - 4.11 - test - - - org.tukaani - xz - 1.5 - true - - - - - - 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 - - - - - - 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:svn:http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.9 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.9 - http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.9 - - - - - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/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.apache.maven.plugins - maven-scm-publish-plugin - - - javadocs - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${commons.changes.version} - - - %URL%/%ISSUE% - - - - - - changes-report - jira-report - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - 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 - 2.5.3 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - - src/test/resources/** - - PROPOSAL.txt - .pmd - .gitignore - .gitattributes - .projectile - - - - - - - - - - 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.9/commons-compress-1.9.pom.sha1 b/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom.sha1 deleted file mode 100644 index 4e9d95114e23bef85ab755ce707c3ebcaf859c64..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f504990212b88933a57d190edc2d7dc89bbde489 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.1/_remote.repositories b/artifacts/m2/org/apache/commons/commons-lang3/3.1/_remote.repositories deleted file mode 100644 index a4f446b25a047b1f40f274fd75293b5c71e0d1a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-lang3/3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:20 CST 2019 -commons-lang3-3.1.jar>repo.jenkins-ci.org= -commons-lang3-3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar b/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar deleted file mode 100644 index a85e539b175b2f715f5328ccb11684173aabd3d9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar.sha1 b/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar.sha1 deleted file mode 100644 index 4261a1955b15c460ae18b722e830a39774cb3e24..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -905075e6c80f206bbe6cf1e809d2caa69f420c76 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom b/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom deleted file mode 100644 index cd281f849ebb5e26f88684ebf54168054887a9e3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom +++ /dev/null @@ -1,596 +0,0 @@ - - - - - org.apache.commons - commons-parent - 22 - - 4.0.0 - org.apache.commons - commons-lang3 - 3.1 - Commons Lang - - 2001 - - 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/lang/ - - - jira - http://issues.apache.org/jira/browse/LANG - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/lang/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/lang/trunk - http://svn.apache.org/viewvc/commons/proper/lang/trunk - - - - - 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 - - - - Phil Steitz - psteitz - - - 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 - - - - - - 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 - - - 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 - - - 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 - - - Jeff Varszegi - - - Chris Webb - - - Mario Winterer - - - Stepan Koltsov - - - Holger Hoffstatte - - - Derek C. Ashmore - - - - - - - junit - junit - 4.10 - test - - - - commons-io - commons-io - 2.1 - test - - - - org.easymock - easymock - 3.0 - test - - - - - ISO-8859-1 - UTF-8 - 1.5 - 1.5 - lang3 - 3.1 - (Java 5.0+) - LANG - 12310481 - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - plain - - - **/*Test.java - - - - - - - - maven-assembly-plugin - - - src/assembly/bin.xml - src/assembly/src.xml - - gnu - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.6 - - ${basedir}/src/site/changes/changes.xml - - %URL%/%ISSUE% - - - templates - - RELEASE-NOTES.txt - - - - - changes-report - - - - - - maven-checkstyle-plugin - 2.7 - - ${basedir}/checkstyle.xml - false - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.2 - - Normal - Default - ${basedir}/findbugs-exclude-filter.xml - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - org.codehaus.mojo - clirr-maven-plugin - 2.3 - - info - - - - maven-pmd-plugin - 2.5 - - ${maven.compile.target} - - - - - pmd - cpd - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - TODO - NOPMD - NOTE - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.0 - - - - - diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom.sha1 b/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom.sha1 deleted file mode 100644 index 6da94eaf29c5de68edb5144279b6dcb91beb6ace..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -49405dd14bd8d02991d6b9e327206500852f7bfb \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.4/_remote.repositories b/artifacts/m2/org/apache/commons/commons-lang3/3.4/_remote.repositories deleted file mode 100644 index 260b6e57c9b7ce14439a31b423c6f960c8c800d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-lang3/3.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:12 CST 2019 -commons-lang3-3.4.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar b/artifacts/m2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar deleted file mode 100644 index 8ec91d454c31f73638de2994711a8487822247c1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar.sha1 b/artifacts/m2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar.sha1 deleted file mode 100644 index fdd7040377b8ff795711e7742c38e1893ac25a3c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5fe28b9518e58819180a43a850fbc0dd24b7c050 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/11/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/11/_remote.repositories deleted file mode 100644 index 7d75adb3a7068d9e975da6d0f5f795e9519824c7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:16 CST 2019 -commons-parent-11.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/11/commons-parent-11.pom b/artifacts/m2/org/apache/commons/commons-parent/11/commons-parent-11.pom deleted file mode 100644 index 46bd873a47a219384449658c87568e68a0ac61ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/11/commons-parent-11.pom +++ /dev/null @@ -1,638 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 4 - - org.apache.commons - commons-parent - pom - - 11 - Commons Parent - http://commons.apache.org/ - 2001 - - - continuum - http://vmbuild.apache.org/continuum/ - - - - - - dummy - Dummy to avoid accidental deploys - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-11 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-11 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-11 - - - - - 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://www.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://www.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 - issues@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://markmail.org/list/org.apache.commons.issues/ - http://www.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 - commits@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/ - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-3 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.4 - - ${commons.encoding} - ${commons.docEncoding} - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - ${maven.compile.source} - ${maven.compile.target} - ${commons.encoding} - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.1 - - - org.apache.felix - maven-bundle-plugin - 1.4.0 - true - - - org.apache.commons - commons-build-plugin - 1.1 - - ${commons.release.name} - - - - - - - - maven-compiler-plugin - - - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.felix - maven-bundle-plugin - - true - target/osgi - - - <_nouses>true - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - maven-idea-plugin - - ${maven.compile.source} - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.commons - commons-build-plugin - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.4 - - false - ${maven.compile.source} - ${commons.encoding} - ${commons.docEncoding} - true - - http://java.sun.com/javase/6/docs/api/ - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - false - - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-6 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - apache.releases - Apache Release Distribution Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - package - - ${maven.compile.source} - - - - - - - - - - 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 - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-site-plugin - - - - site - - package - - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prc - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - package - - ${maven.compile.source} - - - - - - maven-assembly-plugin - - - - attached - - package - - - - - - - - - - trunks-proper - - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../io - ../jci - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../pool - ../primitives - ../proxy - ../scxml - ../transaction - ../validator - ../vfs - - - - - - - - 1.3 - 1.3 - - - ${project.artifactId}-${commons.release.version} - -bin - - - ${project.artifactId} - - - RC1 - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${pom.version} - * - - - - - target/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - - - diff --git a/artifacts/m2/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1 deleted file mode 100644 index 2d30366a9524fca1636e3a2ea14e856a53ef5292..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/11/commons-parent-11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f29657e1e3d6856344728ddbcf696477e943d59 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/17/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/17/_remote.repositories deleted file mode 100644 index 08f0b93743e68f0a45f0392bc6a74695a5027e15..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:10 CST 2019 -commons-parent-17.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/17/commons-parent-17.pom b/artifacts/m2/org/apache/commons/commons-parent/17/commons-parent-17.pom deleted file mode 100644 index 4ebbff2f71a8f8d4fa67aeba327d1876ef0d111e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/17/commons-parent-17.pom +++ /dev/null @@ -1,785 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 7 - - org.apache.commons - commons-parent - pom - - 17 - Commons Parent - http://commons.apache.org/ - - - continuum - http://vmbuild.apache.org/continuum/ - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-17 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-17 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-17 - - - - - - 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 - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - 1.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.1 - - ${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.5 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - true - ${commons.encoding} - ${commons.docEncoding} - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0 - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.0 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.1 - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${commons.surefire.version} - - - - org.apache.commons - commons-build-plugin - 1.3 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - - 1.4.3 - true - - - - - - maven-compiler-plugin - - - maven-surefire-plugin - - ${commons.surefire.java} - - - - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.felix - maven-bundle-plugin - - true - target/osgi - - - <_nouses>true - - <_removeheaders>JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - maven-idea-plugin - - - ${maven.compile.source} - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.commons - commons-build-plugin - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - true - ${maven.compile.source} - ${commons.encoding} - ${commons.docEncoding} - true - - http://java.sun.com/javase/6/docs/api/ - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - false - - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-2 - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compile.source} - - - - maven-assembly-plugin - - - - attached - - 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 - - - - attached - - package - - - - - - - - - - java-1.3 - - true - 1.3 - ${JAVA_1_3_HOME}/bin/javac - ${JAVA_1_3_HOME}/bin/java - 2.2 - - - - - - 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 - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../io - ../jci - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../pool - ../primitives - ../proxy - ../sanselan - ../scxml - ../validator - ../vfs - - - - - - - - 1.3 - 1.3 - - - false - - - - 2.5 - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - - - ${project.artifactId} - - - RC1 - - - 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} - - - - diff --git a/artifacts/m2/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 deleted file mode 100644 index 59f5d9d6e29e55d5921beb2768a1dca0252a3ff7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/17/commons-parent-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -84bc2f457fac92c947cde9c15c81786ded79b3c1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/22/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/22/_remote.repositories deleted file mode 100644 index 32354ae7e0d1611fea5c0ea6da681b04b4f9f60c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/22/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:17 CST 2019 -commons-parent-22.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/22/commons-parent-22.pom b/artifacts/m2/org/apache/commons/commons-parent/22/commons-parent-22.pom deleted file mode 100644 index f3e230e69b90554191b8bddb95662eb31c4431c0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/22/commons-parent-22.pom +++ /dev/null @@ -1,1053 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - - 9 - - org.apache.commons - commons-parent - pom - - 22 - Commons Parent - http://commons.apache.org/ - The Apache Commons Parent Pom provides common settings for all Apache Commons components. - - - 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.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - 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.3.2 - - - 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.1 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - 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.3 - - ${commons.release.name} - - - - org.apache.felix - maven-bundle-plugin - - 2.3.5 - true - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0 - - - - - - - - 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 - ${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.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - - true - - ?????? - - - javasvn - - - - - - - - - - - - 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} - - false - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${commons.project-info.version} - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - ${commons.surefire.version} - - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-2 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - 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 - - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - - trunks-proper - - ../beanutils - ../betwixt - ../chain - ../cli - ../codec - ../collections - ../compress - ../configuration - ../daemon - ../dbcp - ../dbutils - ../digester - ../discovery - ../el - ../email - ../exec - ../fileupload - ../io - ../jci - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../pool - ../primitives - ../proxy - ../sanselan - ../scxml - ../validator - ../vfs - - - - - - maven-3 - - - - ${basedir} - - - - - - maven-site-plugin - - - 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 - - - - - - - - - - - - - 22 - RC1 - - - 1.3 - 1.3 - - - false - - - - - - 2.9 - 2.9 - 2.8 - 0.7 - 2.6 - 2.3 - 2.3 - 2.4 - - - - ${project.artifactId}-${commons.release.version} - - -bin - ${project.artifactId}-${commons.release.2.version} - - -bin - - - ${project.artifactId} - - - RC1 - - - 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 - - - diff --git a/artifacts/m2/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1 deleted file mode 100644 index 88a4bcdb4617f12463b0d94f7dd03421d164f887..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/22/commons-parent-22.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0e895fa7ed472b3b2081ef77e2d5ece78c139d54 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/24/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/24/_remote.repositories deleted file mode 100644 index da274fe52e6a40680d191d12f24f8f2d2a786433..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/24/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:29 CST 2019 -commons-parent-24.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/24/commons-parent-24.pom b/artifacts/m2/org/apache/commons/commons-parent/24/commons-parent-24.pom deleted file mode 100644 index 17dbebe9d9e5834fe26b302dd8856d20f0658cec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/24/commons-parent-24.pom +++ /dev/null @@ -1,1187 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - - 9 - - org.apache.commons - commons-parent - pom - - 24 - 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.codehaus.mojo - buildnumber-maven-plugin - 1.0 - - - - - - - - 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-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 - - - - - - - - - - - - - 24 - RC1 - - - 1.3 - 1.3 - - - false - - - - - - 2.12 - 2.12 - 2.8.1 - 0.8 - 2.6 - 2.3 - 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/24/commons-parent-24.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 deleted file mode 100644 index 1cb71b46bc594c24d2ef9a71df855f8f639b8464..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/24/commons-parent-24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dbb7913f93b279ef889f6bad288b82dae58df237 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/3/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/3/_remote.repositories deleted file mode 100644 index 6fcd670e7d00ce5d378f118029b163ec699a0d34..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:50 CST 2019 -commons-parent-3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/3/commons-parent-3.pom b/artifacts/m2/org/apache/commons/commons-parent/3/commons-parent-3.pom deleted file mode 100644 index 0706747cce5cb34f06c9ab1a5087f8a4cd3cac27..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/3/commons-parent-3.pom +++ /dev/null @@ -1,325 +0,0 @@ - - 4.0.0 - - org.apache - apache - 4 - - org.apache.commons - commons-parent - pom - - 3 - Jakarta Commons - http://jakarta.apache.org/commons/ - 2001 - - - - - - - - - dummy - Dummy to avoid accidental deploys - - - - - - - scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/commons-parent/tags/commons-parent-3 - scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/commons-parent/tags/commons-parent-3 - http://svn.apache.org/viewvc/jakarta/commons/proper/commons-parent/tags/commons-parent-3 - - - - - Commons Dev List - commons-dev-subscribe@jakarta.apache.org - commons-dev-unsubscribe@jakarta.apache.org - commons-dev@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev - - http://www.mail-archive.com/commons-dev@jakarta.apache.org/ - http://www.nabble.com/Commons---Dev-f317.html - - - - Commons User List - commons-user-subscribe@jakarta.apache.org - commons-user-unsubscribe@jakarta.apache.org - commons-user@jakarta.apache.org - http://mail-archives.apache.org/mod_mbox/jakarta-commons-user - - http://www.mail-archive.com/commons-user@jakarta.apache.org/ - http://www.nabble.com/Commons---User-f319.html - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.3 - - - - - - - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - - - - maven-jar-plugin - - - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.source} - - - - - - maven-idea-plugin - - ${maven.compile.source} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.2 - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - - - - org.apache.maven.plugins - maven-site-plugin - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - rat-maven-plugin - - - - - - - release - - - - apache.releases - Apache Release Distribution Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - - - - - - - 1.3 - 1.3 - - - scp - - - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 deleted file mode 100644 index 88e7e962225511a27b87fe4b10bc3cf412351502..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/3/commons-parent-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc68f9bf1b52f227e82308b9157e265e05470804 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/34/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/34/_remote.repositories deleted file mode 100644 index 480a717f56b21c39229d6f861c39c584e9b750ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/34/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:30 CST 2019 -commons-parent-34.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/34/commons-parent-34.pom b/artifacts/m2/org/apache/commons/commons-parent/34/commons-parent-34.pom deleted file mode 100644 index cde9db0ea3d467e4f10cfe6521cdbcfa8f94e471..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/34/commons-parent-34.pom +++ /dev/null @@ -1,1386 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 13 - - org.apache.commons - commons-parent - pom - 34 - Apache Commons Parent - http://commons.apache.org/ - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - - - - - 3.0 - - - - continuum - https://continuum-ci.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-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - 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-deploy-plugin - 2.8.1 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.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} - true - - ${commons.javadoc.java.link} - ${commons.javadoc.javaee.link} - - - - true - true - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.4.2 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.5 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - - org.apache.maven.plugins - maven-site-plugin - ${commons.site-plugin.version} - - - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - - 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.4.0 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - maven-assembly-plugin - - - src/main/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 - 1.3.1 - - - 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 - - true - ${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 - ${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} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - ${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 - - - - - 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} - - - - - 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 - ${commons.site-plugin.version} - - - - 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} - - - - - site-content/** - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - org.codehaus.mojo - jdepend-maven-plugin - ${commons.jdepend.version} - - - - - - - - jacoco - - - - src/site/resources/profile.jacoco - - - - - - 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.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - - 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 - - - - true - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - true - - - - 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 - - - - - - java-1.8 - - true - 1.8 - ${JAVA_1_8_HOME}/bin/javac - ${JAVA_1_8_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 - ../imaging - ../io - ../jci - ../jcs - - ../jexl - ../jxpath - ../lang - ../launcher - ../logging - ../math - ../modeler - ../net - ../ognl - ../pool - ../primitives - ../proxy - ../scxml - - ../validator - ../vfs - - - - - - maven-3 - - - - ${basedir} - - - - - - maven-site-plugin - - - - org.apache.maven.wagon - wagon-ssh - ${commons.wagon-ssh.version} - - - - - attach-descriptor - - attach-descriptor - - - - - - - - - - - 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 - - - - - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - 1.3 - 1.3 - - - false - - - - - - 2.17 - 2.17 - - 2.9.1 - 0.10 - 2.9 - 2.6.1 - 2.4 - 2.7 - 2.3 - 3.3 - 0.6.4.201312101107 - 2.6 - 2.0-beta-2 - 3.1 - 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 - * - - - - - ${project.build.directory}/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - ${commons.encoding} - ${commons.encoding} - - - http://docs.oracle.com/javase/6/docs/api/ - http://docs.oracle.com/javaee/6/api/ - - - yyyy-MM-dd HH:mm:ssZ - ${scmBranch}@r${buildNumber}; ${maven.build.timestamp} - - - info - - - 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 - - https://analysis.apache.org/ - - - - diff --git a/artifacts/m2/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 deleted file mode 100644 index 201a5e59738ed4b22e27b9f02dfece592fb242e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/34/commons-parent-34.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f6be162a806d8343e3cd238dd728558532473a5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/39/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/39/_remote.repositories deleted file mode 100644 index b1dc6da2e25e0fe6ac6ed1d908b68931362ce697..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/39/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:25 CST 2019 -commons-parent-39.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/39/commons-parent-39.pom b/artifacts/m2/org/apache/commons/commons-parent/39/commons-parent-39.pom deleted file mode 100644 index 80252e97865156f90e3a374d60b88c495199c140..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/39/commons-parent-39.pom +++ /dev/null @@ -1,1503 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 16 - - org.apache.commons - commons-parent - pom - 39 - Apache Commons Parent - http://commons.apache.org/ - The Apache Commons Parent POM provides common settings for all Apache Commons components. - - - - - - 3.0.1 - - - - continuum - https://continuum-ci.apache.org/ - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-39 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-39 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-39 - - - - - - - - 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.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.5.5 - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - 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-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.6 - - - 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-release-plugin - 2.5.2 - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - 1.5 - - - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - - 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 - 2.4 - - - - 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.5.3 - true - - - org.apache.rat - apache-rat-plugin - ${commons.rat.version} - - - org.codehaus.mojo - build-helper-maven-plugin - 1.9.1 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.3 - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - - - - - - - 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 - 1.3.1 - - - 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 - ${commons.rat.version} - - - - - site-content/** - .checkstyle - .fbprefs - .pmd - src/site/resources/download_*.cgi - src/site/resources/profile.* - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - ${commons.scm-publish.version} - - ${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.* - - - - - org.codehaus.mojo - clirr-maven-plugin - ${commons.clirr.version} - - ${minSeverity} - - - - 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} - - - - 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.jacoco - jacoco-maven-plugin - ${commons.jacoco.version} - - - - - - - cobertura - - - src/site/resources/profile.cobertura - - - - - - org.codehaus.mojo - cobertura-maven-plugin - ${commons.cobertura.version} - - - - - - - - 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 - - - - true - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - javadoc - jar - - package - - - - ${maven.compiler.source} - - - - maven-assembly-plugin - true - - - - 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 - - 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.0 - - 1.14 - - - - - - site-basic - - true - true - true - true - true - true - true - true - true - true - - - - - - - - ${project.version} - RC1 - COMMONSSITE - - - - 1.3 - 1.3 - - - false - - - - - - 2.18.1 - 2.18.1 - 2.10.3 - 0.11 - 2.11 - 2.6.1 - 2.5 - 2.8 - 2.8 - 3.4 - 0.7.5.201505241946 - 2.7 - 2.0 - 3.3 - 1.1 - 2.5.5 - - 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 - - https://analysis.apache.org/ - - - - diff --git a/artifacts/m2/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 deleted file mode 100644 index cea079737c77f7e9256b086b845ef1ebbc39e5ce..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/39/commons-parent-39.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4bc32d3cda9f07814c548492af7bf19b21798d46 \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/5/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/5/_remote.repositories deleted file mode 100644 index f501fa4884d8e259d47509fb62efa0e410ac41d1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:41 CST 2019 -commons-parent-5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/5/commons-parent-5.pom b/artifacts/m2/org/apache/commons/commons-parent/5/commons-parent-5.pom deleted file mode 100644 index 3fa23e72cf03e672d91eff8559ae48686314206f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/5/commons-parent-5.pom +++ /dev/null @@ -1,420 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 4 - - org.apache.commons - commons-parent - pom - - 5 - Commons Parent - http://commons.apache.org/ - 2001 - - - continuum - http://vmbuild.apache.org/continuum/ - - - mail - -
dev@commons.apache.org
-
-
-
-
- - - - - dummy - Dummy to avoid accidental deploys - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-5 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-5 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-5 - - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - commits@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://www.mail-archive.com/commits@commons.apache.org/ - - - - 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://www.mail-archive.com/dev@commons.apache.org/ - http://www.nabble.com/Commons---Dev-f317.html - - - - Commons Issues List - issues-subscribe@commons.apache.org - issues-unsubscribe@commons.apache.org - issues@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://www.mail-archive.com/issues@commons.apache.org/ - http://www.nabble.com/Commons---Issues-f25499.html - - - - 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://www.mail-archive.com/user@commons.apache.org/ - http://www.nabble.com/Commons---User-f319.html - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0-alpha-6 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - - - - - - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - - - - maven-jar-plugin - - - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.source} - - - - - - maven-idea-plugin - - ${maven.compile.source} - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.2 - - true - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - - - - org.apache.maven.plugins - maven-site-plugin - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.3 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - apache.releases - Apache Release Distribution Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.3 - - - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.3 - - - - - - - - - - - - - - 1.3 - 1.3 - - - scp - - - -
diff --git a/artifacts/m2/org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 deleted file mode 100644 index c00afb68431931d3136358cd5dfb643210b8fb25..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/5/commons-parent-5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a0a168281558e7ae972f113fa128bc46b4973edd \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/7/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/7/_remote.repositories deleted file mode 100644 index d5de5da41759928867f57c7944f2b56cc2a34c79..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:01 CST 2019 -commons-parent-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/7/commons-parent-7.pom b/artifacts/m2/org/apache/commons/commons-parent/7/commons-parent-7.pom deleted file mode 100644 index be5059e611f8b30edbdaa12730c820514d3ae44a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/7/commons-parent-7.pom +++ /dev/null @@ -1,455 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 4 - - org.apache.commons - commons-parent - pom - - 7 - Commons Parent - http://commons.apache.org/ - 2001 - - - continuum - http://vmbuild.apache.org/continuum/ - - - mail - -
dev@commons.apache.org
-
-
-
-
- - - - - dummy - Dummy to avoid accidental deploys - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-7 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-7 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-7 - - - - - Commons Commits List - commits-subscribe@commons.apache.org - commits-unsubscribe@commons.apache.org - commits@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://commons.markmail.org/search/list:org.apache.commons.commits - http://www.mail-archive.com/commits@commons.apache.org/ - - - - 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://commons.markmail.org/search/list:org.apache.commons.dev - http://www.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 - issues@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://commons.markmail.org/search/list:org.apache.commons.issues - http://www.nabble.com/Commons---Issues-f25499.html - http://www.mail-archive.com/issues@commons.apache.org/ - - - - 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://commons.markmail.org/search/list:org.apache.commons.user - http://www.nabble.com/Commons---User-f319.html - http://www.mail-archive.com/user@commons.apache.org/ - http://news.gmane.org/gmane.comp.jakarta.commons.user - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - - org.apache.maven.plugins - maven-antrun-plugin - 1.1 - - - - - - - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - - - - maven-jar-plugin - - - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.target} - - - - - - maven-idea-plugin - - ${maven.compile.source} - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - true - ${maven.compile.source} - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-6 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.3 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - apache.releases - Apache Release Distribution Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-source-plugin - - - create-source-jar - - jar - - - - - - maven-release-plugin - - - -Prc - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - - ${maven.compile.source} - - - - - - - - - - - - - 1.3 - 1.3 - - - scp - - - -
diff --git a/artifacts/m2/org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 deleted file mode 100644 index 2e06e94b34f5cd629e3bafa4bf02b449fbc67643..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/7/commons-parent-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -95db361d9db1474346b2bde93e5402281909144c \ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/9/_remote.repositories b/artifacts/m2/org/apache/commons/commons-parent/9/_remote.repositories deleted file mode 100644 index 1734f9cc1a8e5957ec0b9eb1266ad6cbd42334be..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:36 CST 2019 -commons-parent-9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/commons/commons-parent/9/commons-parent-9.pom b/artifacts/m2/org/apache/commons/commons-parent/9/commons-parent-9.pom deleted file mode 100644 index 8c2eee9ad9102ee155c31bb22e42736233c606ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/9/commons-parent-9.pom +++ /dev/null @@ -1,567 +0,0 @@ - - 4.0.0 - - org.apache - apache - 4 - - org.apache.commons - commons-parent - pom - - 9 - Commons Parent - http://commons.apache.org/ - 2001 - - - continuum - http://vmbuild.apache.org/continuum/ - - - mail - -
dev@commons.apache.org
-
-
-
-
- - - - - dummy - Dummy to avoid accidental deploys - - - - - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-9 - scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-parent/tags/commons-parent-9 - http://svn.apache.org/viewvc/commons/proper/commons-parent/tags/commons-parent-9 - - - - - 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://commons.markmail.org/search/list:org.apache.commons.user - http://www.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://commons.markmail.org/search/list:org.apache.commons.dev - http://www.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 - issues@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-issues/ - - http://commons.markmail.org/search/list:org.apache.commons.issues - http://www.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 - commits@commons.apache.org - http://mail-archives.apache.org/mod_mbox/commons-commits/ - - http://commons.markmail.org/search/list:org.apache.commons.commits - http://www.mail-archive.com/commits@commons.apache.org/ - - - - - - - ${basedir} - META-INF - - NOTICE.txt - LICENSE.txt - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-3 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - ${commons.encoding} - ${commons.docEncoding} - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - ${maven.compile.source} - ${maven.compile.target} - ${commons.encoding} - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.1 - - - org.apache.felix - maven-bundle-plugin - 1.4.0 - true - - - org.apache.commons - commons-build-plugin - 1.0 - - ${commons.release.name} - - - - - - - - maven-compiler-plugin - - - maven-jar-plugin - - - ${commons.manifestfile} - - ${project.name} - ${project.version} - ${project.organization.name} - ${project.name} - ${project.version} - ${project.organization.name} - org.apache - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.felix - maven-bundle-plugin - - true - target/osgi - - - <_nouses>true - ${commons.osgi.symbolicName} - ${commons.osgi.export} - ${commons.osgi.private} - ${commons.osgi.import} - ${commons.osgi.dynamicImport} - ${project.url} - - - - - bundle-manifest - process-classes - - manifest - - - - - - maven-idea-plugin - - ${maven.compile.source} - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - javadoc.resources - generate-sources - - run - - - - - - - - - - - - - - - - org.apache.commons - commons-build-plugin - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - true - ${maven.compile.source} - ${commons.encoding} - ${commons.docEncoding} - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-6 - - - - navigation.xml,changes.xml - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.2 - - - org.codehaus.mojo - jdepend-maven-plugin - 2.0-beta-1 - - - org.codehaus.mojo - rat-maven-plugin - 1.0-alpha-3 - - - - - - - ci - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - release - - - apache.releases - Apache Release Distribution Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prelease - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - package - - ${maven.compile.source} - - - - - - - - - - rc - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.snapshots - Apache Development Snapshot Repository - ${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - - maven-gpg-plugin - - ${gpg.passphrase} - - - - sign-artifacts - verify - - sign - - - - - - maven-install-plugin - - true - - - - maven-site-plugin - - - - site - - package - - - - - maven-source-plugin - - - create-source-jar - - jar - - package - - - - - maven-release-plugin - - - -Prc - - - - maven-javadoc-plugin - - - create-javadoc-jar - - jar - - package - - ${maven.compile.source} - - - - - - maven-assembly-plugin - - - - attached - - package - - - - - - - - - - - - 1.3 - 1.3 - - - ${project.artifactId}-${commons.release.version} - -bin - - - ${project.artifactId} - - - org.apache.commons.${commons.componentid} - org.apache.commons.*;version=${pom.version} - * - - - - - target/osgi/MANIFEST.MF - - - scp - - - iso-8859-1 - ${commons.encoding} - - - -
\ No newline at end of file diff --git a/artifacts/m2/org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 b/artifacts/m2/org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 deleted file mode 100644 index 903fca8382ae8c3406d00bf117963e88566b666a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/commons/commons-parent/9/commons-parent-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -217cc375e25b647a61956e1d6a88163f9e3a387c \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/_remote.repositories b/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/_remote.repositories deleted file mode 100644 index eb5ab7bb1abe647b690413148b19c873c67ea5b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -httpclient-4.0.2.jar>repo.jenkins-ci.org= -httpclient-4.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar b/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar deleted file mode 100644 index 719f728e704a71f81ffb2f810a91c26cc7299af5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 b/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 deleted file mode 100644 index f7417831858b4e2e52b8a7847b9f9d08b52c8ac2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -781b68c2fd5335de914166241b8d4bfe8c2f91b7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom b/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom deleted file mode 100644 index 7ec62f9031d5a7daf43fd0eace35fe8152f70f2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom +++ /dev/null @@ -1,229 +0,0 @@ - - - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-client - 4.0.2 - - httpclient - HttpClient - - HttpComponents Client (base module) - - http://hc.apache.org/httpcomponents-client - jar - - - - Apache License - ../LICENSE.txt - repo - - - - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - commons-logging - commons-logging - ${commons-logging.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - junit - junit - ${junit.version} - test - - - - - UTF-8 - UTF-8 - 1.5 - 1.5 - true - true - - - - - - src/main/resources - false - - META-INF/* - - - - src/main/resources - true - - **/*.properties - - - - .. - META-INF - - LICENSE.txt - - - - ../src/main/resources - META-INF - true - - NOTICE.txt - - - - - - src/test/resources - false - - * - - - - .. - META-INF - - LICENSE.txt - - - - ../src/main/resources - META-INF - true - - NOTICE.txt - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - ${maven.compile.optimize} - ${maven.compile.deprecation} - - - - maven-surefire-plugin - - - maven-jar-plugin - - - - HttpComponents HttpClient - ${pom.version} - The Apache Software Foundation - HttpComponents HttpClient - ${pom.version} - The Apache Software Foundation - org.apache - ${pom.url} - - - - - - - test-jar - - - - - - - - - - - - maven-javadoc-plugin - - 1.5 - - http://java.sun.com/j2se/1.5.0/docs/api/ - http://hc.apache.org/httpcomponents-core/httpcore/apidocs/ - - - - - - javadoc - - - - - - - com.atlassian.maven.plugins - maven-clover2-plugin - - 1.5 - - - - - org.codehaus.mojo - clirr-maven-plugin - - 4.0 - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - - - diff --git a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 b/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 deleted file mode 100644 index a97e266f08d08dd705f3a7a21a2e04fdc452ff48..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f218515f169bb93b7fd6c67fab0dedbaf832a8ae \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/_remote.repositories b/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/_remote.repositories deleted file mode 100644 index a3434e4a6c95aafb43786393d5121fb81753953b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:38 CST 2019 -httpcomponents-client-4.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom b/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom deleted file mode 100644 index b7246e1f590dbb26158cdc12968ac648f364c573..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom +++ /dev/null @@ -1,244 +0,0 @@ - - - - - project - org.apache.httpcomponents - 4.1 - ../project/pom.xml - - 4.0.0 - org.apache.httpcomponents - httpcomponents-client - HttpComponents Client - 4.0.2 - Components to build client side HTTP services - http://hc.apache.org/httpcomponents-client - 1999 - pom - - - Apache Software Foundation - http://www.apache.org/ - - - - - Apache License - LICENSE.txt - repo - - - - - Jira - http://issues.apache.org/jira/browse/HTTPCLIENT - - - - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.0.2 - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.0.2 - https://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.0.2 - - - - UTF-8 - UTF-8 - 4.0.1 - 1.1.1 - 1.3 - 0.6 - 3.8.2 - - - - httpclient - httpmime - httpclient-osgi - - - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - 1.5 - - http://java.sun.com/j2se/1.5.0/docs/api/ - http://hc.apache.org/httpcomponents-core/httpcore/apidocs/ - http://james.apache.org/mime4j/apidocs/ - - - - - maven-site-plugin - - - maven-assembly-plugin - - - src/main/assembly/bin.xml - src/main/assembly/osgi-bin.xml - src/main/assembly/bin-with-deps.xml - src/main/assembly/src.xml - - gnu - - - - maven-antrun-plugin - false - - - - - - - - - - - - - - - - - - - - - - - com.atlassian.maven.plugins - maven-clover2-plugin - - threaded - 100 - 50% - - - - site - pre-site - - instrument - aggregate - save-history - - - - - - com.agilejava.docbkx - docbkx-maven-plugin - - - - generate-html - generate-pdf - - pre-site - - - - - org.docbook - docbook-xml - 4.4 - runtime - - - - index.xml - true - true - src/docbkx/resources/xsl/fopdf.xsl - src/docbkx/resources/xsl/html_chunk.xsl - css/hc-tutorial.css - - - version - ${pom.version} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - maven-project-info-reports-plugin - - - - dependencies - project-team - mailing-list - issue-tracking - scm - - - - - - - - - diff --git a/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 b/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 deleted file mode 100644 index 38fc7d14f43b29884fe85c7beccce6c4c1a89bbc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f068349e19ba323665d0bc49141333747b174f3f \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/_remote.repositories b/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/_remote.repositories deleted file mode 100644 index 696f9e753a50d6f090956c77fc720ee1e205051c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:39 CST 2019 -httpcomponents-core-4.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom b/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom deleted file mode 100644 index bf1ac3e10c0628891a26e1745e9f9d3fe225dedf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom +++ /dev/null @@ -1,263 +0,0 @@ - - - - - project - org.apache.httpcomponents - 4.0 - ../project/pom.xml - - 4.0.0 - org.apache.httpcomponents - httpcomponents-core - HttpComponents Core - 4.0.1 - Core components to build HTTP enabled services - http://hc.apache.org/httpcomponents-core/ - 2005 - pom - - - Apache Software Foundation - http://www.apache.org/ - - - - - Apache License - LICENSE.txt - repo - - - - - Jira - http://issues.apache.org/jira/browse/HTTPCORE - - - - scm:svn:http://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0.1 - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0.1 - http://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0.1 - - - - httpcore - httpcore-nio - httpcore-osgi - - - - UTF-8 - UTF-8 - - - - - - - maven-remote-resources-plugin - 1.0 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - true - - - - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - 1.5 - true - - http://java.sun.com/j2se/1.5.0/docs/api/ - - - - - maven-site-plugin - - - maven-release-plugin - - https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/ - - - - maven-assembly-plugin - 2.2-beta-3 - - - src/main/assembly/bin.xml - src/main/assembly/osgi-bin.xml - src/main/assembly/src.xml - - gnu - - - - maven-antrun-plugin - false - - - - - - - - - - - - - - - - - - - com.atlassian.maven.plugins - maven-clover2-plugin - - threaded - 100 - 50% - - - - site - pre-site - - instrument - aggregate - save-history - - - - - - com.agilejava.docbkx - docbkx-maven-plugin - 2.0.8 - - - - generate-html - generate-pdf - - pre-site - - - - - org.docbook - docbook-xml - 4.4 - runtime - - - - index.xml - true - true - src/docbkx/resources/xsl/fopdf.xsl - src/docbkx/resources/xsl/html_chunk.xsl - css/hc-tutorial.css - - - version - ${pom.version} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - maven-project-info-reports-plugin - - - - project-team - mailing-list - issue-tracking - scm - - - - - - - - - diff --git a/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 b/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 deleted file mode 100644 index af9696655e1e71b8a69a722c5e8baf9466c1b532..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2766fab80fcc4f8bfdfe4f4a7cf151140ec8e0ed \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/_remote.repositories b/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/_remote.repositories deleted file mode 100644 index 9e22703b1d7fef5045b8c8646aa1404d5d414086..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -httpcore-4.0.1.jar>repo.jenkins-ci.org= -httpcore-4.0.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar b/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar deleted file mode 100644 index 4aef35e2ffa17c332ad53caa0b360c56ae969d05..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 b/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 deleted file mode 100644 index 6e0080915f5fdf7c71531993ba5b9f7c15dafea3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e813b8722c387b22e1adccf7914729db09bcb4a9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom b/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom deleted file mode 100644 index 6af5c195b147b6c59bdbc58a4abd6073d25cda07..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom +++ /dev/null @@ -1,152 +0,0 @@ - - - - - 4.0.0 - - org.apache.httpcomponents - httpcomponents-core - 4.0.1 - - httpcore - HttpCore - 2005 - - HttpComponents Core (Java 1.3 compatible) - - http://hc.apache.org/httpcomponents-core/ - jar - - - - Apache License - http://www.apache.org/licenses/LICENSE-2.0.html - repo - - - - - - junit - junit - 3.8.1 - test - - - - - UTF-8 - UTF-8 - 1.3 - 1.3 - true - true - - - - - - src/main/resources - false - - META-INF/* - - - - src/main/resources - true - - **/*.properties - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - ${maven.compile.optimize} - ${maven.compile.deprecation} - - - - maven-surefire-plugin - - - - - - - - - maven-javadoc-plugin - - 1.5 - - http://java.sun.com/j2se/1.5.0/docs/api/ - - - - - - javadoc - - - - - - - maven-jxr-plugin - - - - maven-surefire-report-plugin - - - - org.codehaus.mojo - clirr-maven-plugin - - - - com.atlassian.maven.plugins - maven-clover2-plugin - - 1.5 - - - - - - - diff --git a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 b/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 deleted file mode 100644 index f86f31cfc51a6179caff4ae3a24227c085290360..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d965db94102b75a50bd29938ef67105da1535554 \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/project/4.0/_remote.repositories b/artifacts/m2/org/apache/httpcomponents/project/4.0/_remote.repositories deleted file mode 100644 index ca06598cb8b31b105cb0d0f947e5b86356c17876..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/project/4.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:40 CST 2019 -project-4.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/httpcomponents/project/4.0/project-4.0.pom b/artifacts/m2/org/apache/httpcomponents/project/4.0/project-4.0.pom deleted file mode 100644 index 236534817b5110df32a50a13beae819bf0ab9862..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/project/4.0/project-4.0.pom +++ /dev/null @@ -1,394 +0,0 @@ - - - - 4.0.0 - org.apache.httpcomponents - project - 4.0 - pom - HttpComponents - http://hc.apache.org/ - Components to build HTTP enabled services - 2005 - - - Apache Software Foundation - http://www.apache.org/ - - - - Jira - http://issues.apache.org/jira/ - - - - scm:svn:http://svn.apache.org/repos/asf/httpcomponents/project - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/project - http://svn.apache.org/repos/asf/httpcomponents/project - - - - - Ortwin Glueck - oglueck - oglueck -at- apache.org - - - Java Developer - PMC - - http://www.odi.ch/ - +1 - - - Oleg Kalnichevski - olegk - olegk -at- apache.org - - Java Developer - PMC - - +1 - - - Asankha C. Perera - asankha - asankha -at- apache.org - - Java Developer - PMC - - +5.5 - - - Sebastian Bazley - sebb - sebb -at- apache.org - - Java Developer - PMC - - - - - Erik Abele - erikabele - erikabele -at- apache.org - - Java Developer - PMC Chair - - http://www.codefaktor.de/ - +1 - - - Ant Elder - antelder - antelder -at- apache.org - - Java Developer - PMC - - - - - Paul Fremantle - pzf - pzf -at- apache.org - - Java Developer - PMC - - - - - Roland Weber - rolandw - rolandw -at- apache.org - - Emeritus PMC - - +1 - - - Sam Berlin - sberlin - sberlin -at- apache.org - - Committer - - -4 - - - Sean C. Sullivan - sullis - sullis -at- apache.org - - Committer - - -8 - - - - - - Julius Davies - juliusdavies -at- cucbc.com - - - Andrea Selva - selva.andre -at- gmail.com - - - Steffen Pingel - spingel -at- limewire.com - - - Quintin Beukes - quintin -at- last.za.net - - - Marc Beyerle - marc.beyerle -at- de.ibm.com - - - James Abley - james.abley -at- gmail.com - - - - - HttpClient User List - httpclient-users-subscribe@hc.apache.org - httpclient-users-unsubscribe@hc.apache.org - httpclient-users@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/ - - http://www.nabble.com/HttpClient-User-f20180.html - http://marc.info/?l=httpclient-users - http://hc.apache.org/mail/httpclient-users/ - - - - HttpComponents Dev List - dev-subscribe@hc.apache.org - dev-unsubscribe@hc.apache.org - dev@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-dev/ - - http://www.nabble.com/HttpComponents-Dev-f20179.html - http://marc.info/?l=httpclient-commons-dev - http://hc.apache.org/mail/dev/ - - - - HttpComponents Commits List - commits-subscribe@hc.apache.org - commits-unsubscribe@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-commits/ - - http://marc.info/?l=httpcomponents-commits - http://hc.apache.org/mail/commits/ - - - - - - - apache.releases - Apache Release Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache.website - Apache Website - scp://people.apache.org/www/hc.apache.org/ - - - - - - - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - - - - maven-jar-plugin - - - - Apache ${pom.name} - Apache Software Foundation - Apache Software Foundation - org.apache - ${pom.version} - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - com.atlassian.maven.plugins - maven-clover2-plugin - 2.6.3 - - - com.agilejava.docbkx - docbkx-maven-plugin - 2.0.9 - - - - generate-html - generate-pdf - - pre-site - - - - - org.docbook - docbook-xml - 4.4 - runtime - - - - index.xml - true - true - src/docbkx/resources/xsl/fopdf.xsl - src/docbkx/resources/xsl/html_chunk.xsl - css/hc-tutorial.css - - - version - ${pom.version} - - - - - - org.apache.felix - maven-bundle-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.0.1 - - - maven-surefire-report-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.1.1 - - - maven-jxr-plugin - 2.1 - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - project-team - mailing-list - issue-tracking - scm - - - - - - - - - ../httpcore - ../httpclient - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - - - - diff --git a/artifacts/m2/org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 b/artifacts/m2/org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 deleted file mode 100644 index 12d29f2a27966fd873caa8908b59f16f817d899d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/project/4.0/project-4.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -096553966ef79545593062a0c6057a821e39d284 \ No newline at end of file diff --git a/artifacts/m2/org/apache/httpcomponents/project/4.1/_remote.repositories b/artifacts/m2/org/apache/httpcomponents/project/4.1/_remote.repositories deleted file mode 100644 index c1915e6efefd84068df3d1bcc6f4c1a94ce1a174..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/project/4.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:38 CST 2019 -project-4.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/httpcomponents/project/4.1/project-4.1.pom b/artifacts/m2/org/apache/httpcomponents/project/4.1/project-4.1.pom deleted file mode 100644 index e0dd564e2c68594bca22c1ed49280b861e0b6bc7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/project/4.1/project-4.1.pom +++ /dev/null @@ -1,483 +0,0 @@ - - - - 4.0.0 - org.apache.httpcomponents - project - 4.1 - pom - HttpComponents - http://hc.apache.org/ - Components to build HTTP enabled services - 2005 - - - Apache Software Foundation - http://www.apache.org/ - - - - Jira - http://issues.apache.org/jira/ - - - - scm:svn:http://svn.apache.org/repos/asf/httpcomponents/project - scm:svn:https://svn.apache.org/repos/asf/httpcomponents/project - http://svn.apache.org/repos/asf/httpcomponents/project - - - - - Ortwin Glueck - oglueck - oglueck -at- apache.org - - - Java Developer - PMC - - http://www.odi.ch/ - +1 - - - Oleg Kalnichevski - olegk - olegk -at- apache.org - - Java Developer - PMC - - +1 - - - Asankha C. Perera - asankha - asankha -at- apache.org - - Java Developer - PMC - - +5.5 - - - Sebastian Bazley - sebb - sebb -at- apache.org - - Java Developer - PMC - - - - - Erik Abele - erikabele - erikabele -at- apache.org - - Java Developer - PMC Chair - - http://www.codefaktor.de/ - +1 - - - Ant Elder - antelder - antelder -at- apache.org - - Java Developer - PMC - - - - - Paul Fremantle - pzf - pzf -at- apache.org - - Java Developer - PMC - - - - - Roland Weber - rolandw - rolandw -at- apache.org - - Emeritus PMC - - +1 - - - Sam Berlin - sberlin - sberlin -at- apache.org - - Committer - - -4 - - - Sean C. Sullivan - sullis - sullis -at- apache.org - - Committer - - -8 - - - - - - Julius Davies - juliusdavies -at- cucbc.com - - - Andrea Selva - selva.andre -at- gmail.com - - - Steffen Pingel - spingel -at- limewire.com - - - Quintin Beukes - quintin -at- last.za.net - - - Marc Beyerle - marc.beyerle -at- de.ibm.com - - - James Abley - james.abley -at- gmail.com - - - - - HttpClient User List - httpclient-users-subscribe@hc.apache.org - httpclient-users-unsubscribe@hc.apache.org - httpclient-users@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/ - - http://www.nabble.com/HttpClient-User-f20180.html - http://marc.info/?l=httpclient-users - http://hc.apache.org/mail/httpclient-users/ - - - - HttpComponents Dev List - dev-subscribe@hc.apache.org - dev-unsubscribe@hc.apache.org - dev@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-dev/ - - http://www.nabble.com/HttpComponents-Dev-f20179.html - http://marc.info/?l=httpclient-commons-dev - http://hc.apache.org/mail/dev/ - - - - HttpComponents Commits List - commits-subscribe@hc.apache.org - commits-unsubscribe@hc.apache.org - http://mail-archives.apache.org/mod_mbox/hc-commits/ - - http://marc.info/?l=httpcomponents-commits - http://hc.apache.org/mail/commits/ - - - - - - - apache.releases.https - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots.https - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - - - apache.website - Apache Website - scp://people.apache.org/www/hc.apache.org/ - - - - - - - maven-compiler-plugin - - ${maven.compile.source} - ${maven.compile.target} - - - - maven-jar-plugin - - - - Apache ${project.name} - Apache Software Foundation - Apache Software Foundation - org.apache - ${project.version} - ${maven.compile.source} - ${maven.compile.target} - - - - - - org.apache.maven.plugins - maven-site-plugin - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-antrun-plugin - 1.4 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - - true - true - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.0 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-site-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.5 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.5 - - - - com.agilejava.docbkx - docbkx-maven-plugin - 2.0.10 - - - - generate-html - generate-pdf - - pre-site - - - - - org.docbook - docbook-xml - 4.4 - runtime - - - - index.xml - true - true - src/docbkx/resources/xsl/fopdf.xsl - src/docbkx/resources/xsl/html_chunk.xsl - css/hc-tutorial.css - - - version - ${project.version} - - - - - - com.atlassian.maven.plugins - maven-clover2-plugin - 3.0.2 - - - org.apache.felix - maven-bundle-plugin - 2.1.0 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - project-team - mailing-list - issue-tracking - scm - - - - - - - - - ../httpcore - ../httpclient - - - - - release - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - - - - test-deploy - - id::default::file:target/deploy - - - - - diff --git a/artifacts/m2/org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 b/artifacts/m2/org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 deleted file mode 100644 index bcba6405dda8ab827aabd6d6fc08b5920856d645..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/httpcomponents/project/4.1/project-4.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b63ff67e6ffc1940041319e0e06d7c6b1d671fd2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/_remote.repositories deleted file mode 100644 index c9d49cb53d92d1510f78dcc95815e425733d9443..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-core-1.1.2.jar>repo.jenkins-ci.org= -doxia-core-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar deleted file mode 100644 index 542d4909c8140d603f54e68ee373c0518d770690..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar.sha1 deleted file mode 100644 index 24ccfd7741003d116c839dc2ba556d2e82e03ab0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -30b5f95ed31d612ad3c64af82904f82e6d4ab29c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom deleted file mode 100644 index be6eac27a50ebab17a3d5fd4ff0dadce28db44e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.doxia - doxia - 1.1.2 - ../pom.xml - - - doxia-core - Doxia :: Core - Doxia core classes and interfaces. - - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-logging-api - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - xerces - xercesImpl - 2.8.1 - - - commons-lang - commons-lang - 2.4 - - - commons-httpclient - commons-httpclient - 3.1 - - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.codehaus.modello - modello-maven-plugin - - - descriptor - generate-sources - - java - xpp3-reader - xpp3-writer - xsd - - - - docs - pre-site - - xdoc - xsd - - - - - 1.0.1 - - src/main/mdo/document.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom.sha1 deleted file mode 100644 index 46960f91548b03a876cb7b750bd55281f2c780d7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b1daa68be3d5596235cd59ff4017673a2a9b2be \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/_remote.repositories deleted file mode 100644 index 0376e4ad16f65ea67221730f38d986e2fd11f222..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-core-1.2.jar>repo.jenkins-ci.org= -doxia-core-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.jar deleted file mode 100644 index 143f89f187671e5ebacf8e886dd0fbf9b5053695..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.jar.sha1 deleted file mode 100644 index 56c9cdbcc4f0511f2f5c1b88022e02d37c836a03..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -58675d96dbee38691c7085d12907a9fd04ff27d3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.pom deleted file mode 100644 index f034df9d53e9b2ea43a2c163d54c0dbc35db1128..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.pom +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.doxia - doxia - 1.2 - ../pom.xml - - - doxia-core - Doxia :: Core - Doxia core classes and interfaces. - http://maven.apache.org/doxia/doxia/doxia-core/ - - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-logging-api - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - xerces - xercesImpl - 2.9.1 - - - commons-lang - commons-lang - 2.4 - - - org.apache.httpcomponents - httpclient - 4.0.2 - - - - - - - - - ${basedir}/src/main/resources/ - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.codehaus.modello - modello-maven-plugin - - - descriptor - generate-sources - - java - xpp3-reader - xpp3-writer - xsd - - - - docs - pre-site - - xdoc - xsd - - - - - 1.0.1 - - src/main/mdo/document.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.pom.sha1 deleted file mode 100644 index 5cc20c1d5cd17d8b7851a2494ce5688b59c5e5ba..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.2/doxia-core-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d3a20de5a35d5f51c06d7d85818a9dee9e6f05fc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/_remote.repositories deleted file mode 100644 index fa4debc91491438429805cbf0d60a7dfc99d400a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:05 CST 2019 -doxia-core-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.pom deleted file mode 100644 index c5035c1e19f5a2098368fe614f2b746a01a2cf89..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.pom +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.doxia - doxia - 1.4 - ../pom.xml - - - doxia-core - Doxia :: Core - Doxia core classes and interfaces. - - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-logging-api - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-component-annotations - - - xerces - xercesImpl - 2.9.1 - - - commons-lang - commons-lang - 2.4 - - - org.apache.httpcomponents - httpclient - 4.0.2 - - - org.apache.httpcomponents - httpcore - 4.0.1 - - - - - - - - - ${basedir}/src/main/resources/ - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.codehaus.modello - modello-maven-plugin - - - descriptor - generate-sources - - java - xpp3-reader - xpp3-writer - xsd - - - - docs - pre-site - - xdoc - xsd - - - - - 1.0.1 - - src/main/mdo/document.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.pom.sha1 deleted file mode 100644 index 41bc1ae616220c97e6e1254642336aec42b904e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c63b7012f6fc2f9636ed7e37c4e6cf3b59ad4021 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/_remote.repositories deleted file mode 100644 index 892d878a872d0c842cf26adacf6f80312cea13b3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-decoration-model-1.1.2.pom>repo.jenkins-ci.org= -doxia-decoration-model-1.1.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar deleted file mode 100644 index a2abaff288769e8a4fd72b52b055cdd3a6b5bc5d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar.sha1 deleted file mode 100644 index 2c5e4d62418fdd1618c7e01c7713a4cddd1725de..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -172cda539c83280c3f7a60022337f454e98c029d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom deleted file mode 100644 index 49e5b444a05279097d395e4185e30b56742112af..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - 4.0.0 - - - doxia-sitetools - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-decoration-model - - Doxia Sitetools :: Decoration Model - The Decoration Model handles the site descriptor, also known as site.xml. - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.modello - modello-maven-plugin - - - src/main/mdo/decoration.mdo - - 1.0.1 - 1.0.0 - - - - descriptor - generate-sources - - xpp3-writer - java - xpp3-reader - xsd - - - - descriptor-site - pre-site - - xdoc - xsd - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom.sha1 deleted file mode 100644 index b6ed8aa3e40075d1c7e5509d5241642dfafbae03..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -31e0c58d7cb9c3ee7ee93f3ce8a3077d0ee8edc3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/_remote.repositories deleted file mode 100644 index e469e15ce1cd541b3035d99040c5a9b159eacadb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:43 CST 2019 -doxia-decoration-model-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom deleted file mode 100644 index fa1b3c60c3de3d1d3b11ccf9a67a3612c8f8fc77..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - 4.0.0 - - - doxia-sitetools - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-decoration-model - - Doxia Sitetools :: Decoration Model - The Decoration Model handles the site descriptor, also known as site.xml. - http://maven.apache.org/doxia/doxia-sitetools/doxia-decoration-model/ - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.modello - modello-maven-plugin - - - src/main/mdo/decoration.mdo - - 1.1.0 - 1.0.0 - - - - descriptor - generate-sources - - xpp3-writer - java - xpp3-reader - xsd - - - - descriptor-site - pre-site - - xdoc - xsd - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 deleted file mode 100644 index 06ba4716282aa5ec470a160f962ead58c4ffe122..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b21179344a7a25ae86298e1a051508ecb54ff118 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/_remote.repositories deleted file mode 100644 index 4498fcef2ef4be9acc301efa89c6e6d52117b15c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-decoration-model-1.4.jar>repo.jenkins-ci.org= -doxia-decoration-model-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar deleted file mode 100644 index 30e73a7a3f022065c05e9d5e1b9ca9f4cfdf908a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar.sha1 deleted file mode 100644 index db76a040f6174ef97c28cb1813404676b234f6d6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ffa7fabafef8ba0accc794d025f9790320220e1e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.pom deleted file mode 100644 index a02880e32fb095b4181ba38888fd75cad26c133e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - 4.0.0 - - - doxia-sitetools - org.apache.maven.doxia - 1.4 - ../pom.xml - - - doxia-decoration-model - - Doxia :: Decoration Model - The Decoration Model handles the decoration descriptor for sites, also known as site.xml. - http://maven.apache.org/doxia/doxia-sitetools/doxia-decoration-model/ - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.modello - modello-maven-plugin - - - src/main/mdo/decoration.mdo - - 1.4.0 - 1.0.0 - - - - descriptor - generate-sources - - xpp3-writer - java - xpp3-reader - xsd - - - - descriptor-site - pre-site - - xdoc - xsd - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.pom.sha1 deleted file mode 100644 index 8bde6cb3872d1fb3c1a1f4bb112a8cf50d1fbc46..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -deaf255b7f237392dde3f76100300a41c8409532 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/_remote.repositories deleted file mode 100644 index efad845164793f21bd364bce8dc03fc403cfaca2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:06 CST 2019 -doxia-decoration-model-1.7.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/doxia-decoration-model-1.7.1.jar b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/doxia-decoration-model-1.7.1.jar deleted file mode 100644 index c7b506e6a366c469a0efd7a6964c2f488e5efaf0..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/doxia-decoration-model-1.7.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/doxia-decoration-model-1.7.1.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/doxia-decoration-model-1.7.1.jar.sha1 deleted file mode 100644 index 30ea4271481f53dee140f8b239e9a4e42cc3012a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-decoration-model/1.7.1/doxia-decoration-model-1.7.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -97584bb347d7cd87886d97f986f0203f5ea32970 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/_remote.repositories deleted file mode 100644 index ca696f115521909d67df557b56532733f1dc37ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:08 CST 2019 -doxia-integration-tools-1.7.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/doxia-integration-tools-1.7.1.jar b/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/doxia-integration-tools-1.7.1.jar deleted file mode 100644 index 9767eea6a3ece9fcca8d65f105d5716fb3dfda97..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/doxia-integration-tools-1.7.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/doxia-integration-tools-1.7.1.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/doxia-integration-tools-1.7.1.jar.sha1 deleted file mode 100644 index 308ca443afc27ac590e26904025bf7914b5ba29a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-integration-tools/1.7.1/doxia-integration-tools-1.7.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e82888b9d494c9a495bfca54c2bd3109b79abf3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/_remote.repositories deleted file mode 100644 index fb6db0973df0c970481732a60d051954f2c08191..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-logging-api-1.1.2.jar>repo.jenkins-ci.org= -doxia-logging-api-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar deleted file mode 100644 index 30f6bb4e79078bb0e03795f4a0fd96db7afcc91c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar.sha1 deleted file mode 100644 index 861f5202f659c57a392eb2e56f3d02ccf3a06c39..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -13b7385b902c62e0bf7d81b57115c09de92c7dfd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom deleted file mode 100644 index 4d99fb46f3224340dcf4304b2f4ce4f2ec132408..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-logging-api - Doxia :: Logging API - Doxia Logging API. - - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom.sha1 deleted file mode 100644 index 9c34323e4ac013b1495e372d6b178f79baf30120..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4b9beb2341dcf0755f60503fc210eb9d015b4fba \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories deleted file mode 100644 index e464e88b05c2fd12de3dc511b9d3b44c87d0c287..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:29 CST 2019 -doxia-logging-api-1.1.jar>repo.jenkins-ci.org= -doxia-logging-api-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar deleted file mode 100644 index 1100a25954e043cf99759474a20b2e1e4e25ca38..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar.sha1 deleted file mode 100644 index ed8b94031f7cb7260ddb6f6322a0c86a1a6eb830..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c8fe274396e40452ca3e6121f6dd00220b210d48 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom deleted file mode 100644 index 60bb7a401f8a1102ac2f9de013dcefd6ef74ea4d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.1 - ../pom.xml - - - doxia-logging-api - Doxia :: Logging API - Doxia Logging API. - - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom.sha1 deleted file mode 100644 index 01b7419c421470ca23a013b4e161d96699d3babf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -511c87192bc6c0883d077ba7ae7ddbe8a2d06fa9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/_remote.repositories deleted file mode 100644 index b876fc41d8633bc4090aa63e51c081ff792d3986..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:31 CST 2019 -doxia-logging-api-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom deleted file mode 100644 index 1ad2ecc9537927e2ac97c23c99f2ca46b54d85a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-logging-api - Doxia :: Logging API - Doxia Logging API. - http://maven.apache.org/doxia/doxia/doxia-logging-api/ - - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 deleted file mode 100644 index 10a50c5663bc59be8f895f02024506a753a14f3c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.2/doxia-logging-api-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -369a028bcaa2b7aa935cbd0fd1483d2f4a4d64f4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/_remote.repositories deleted file mode 100644 index 944398f2f097db83b2e173cd529d4a6f92d934e7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-logging-api-1.4.jar>repo.jenkins-ci.org= -doxia-logging-api-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar deleted file mode 100644 index 0c794eb9ca9b21518bacca3b80698fe1d36c0caa..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar.sha1 deleted file mode 100644 index 942a6605de06935bd020834e5b2cf13d84703a89..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd0ab30404ac0fca5f672eee70acf5d17a1ea856 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.pom deleted file mode 100644 index ddee2e0f6e9a9865d15f94ead95541ff8a85100a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.4 - ../pom.xml - - - doxia-logging-api - Doxia :: Logging API - Doxia Logging API. - - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.pom.sha1 deleted file mode 100644 index bac912c2f6a0213d66ac18ca2f82f68e22577dee..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -042598efe5bf93859b9366c333c2398af28a2bb5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/_remote.repositories deleted file mode 100644 index 64ec107c87e118f80eb2efb95ad89e49be4f15c1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:01 CST 2019 -doxia-module-apt-1.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/doxia-module-apt-1.7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/doxia-module-apt-1.7.jar deleted file mode 100644 index 59f655ca0c3c3c93089d3a603caed68b96a38d9e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/doxia-module-apt-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/doxia-module-apt-1.7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/doxia-module-apt-1.7.jar.sha1 deleted file mode 100644 index 5195cd9c0e64964a9014f530866cf0dc6db3c4bf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-apt/1.7/doxia-module-apt-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -20ad86277cddd4639e5585648f581011d6c7cb10 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/_remote.repositories deleted file mode 100644 index 74519fe32cab856093775a0bf7a0101fb16ffd70..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-module-fml-1.1.2.jar>repo.jenkins-ci.org= -doxia-module-fml-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar deleted file mode 100644 index c7b9e4f03c9ceda5f11245c950f6422917542678..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar.sha1 deleted file mode 100644 index b78ecf720d3738e7e71f186a0984551497b5f318..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -923531d55433db173b9479cd7af7ef5c2ee023da \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom deleted file mode 100644 index 95b161b1adf0b7c94598a04b9f49d229d8089e10..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - 4.0.0 - - - doxia-modules - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-module-fml - - Doxia :: FML Module - A Doxia module for FML source documents. - - - - org.codehaus.plexus - plexus-utils - - - - - org.apache.maven.doxia - doxia-test-docs - test - - - xerces - xercesImpl - 2.8.1 - test - - - - - - - org.codehaus.modello - modello-maven-plugin - - - descriptor - generate-sources - - java - - - - src/main/mdo/fml.mdo - - 1.0.0 - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - src/main/components/components.xml - target/generated-resources/plexus/META-INF/plexus/components.xml - - - - - - merge-descriptors - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-antrun-plugin - - - site - - - - - - - - - - - - - - - - - - - - run - - - - - - xsddoc - xsddoc - 1.0 - - - ant - ant - - - - - org.apache.ant - ant-apache-regexp - 1.7.1 - - - xalan - xalan - 2.7.1 - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom.sha1 deleted file mode 100644 index cb50d9b0ed324089307ce67e6646d5646926d85f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a67977d8431a26fa886640f3c465f77cbdfa8ea7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/_remote.repositories deleted file mode 100644 index 1f4eba7cad5bf5e6001ae9ea564471ece1a83ca0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:45 CST 2019 -doxia-module-fml-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2.pom deleted file mode 100644 index 3a85888fefa09e2083695d4abba130640ca02db3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2.pom +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - 4.0.0 - - - doxia-modules - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-module-fml - - Doxia :: FML Module - - A Doxia module for FML source documents. - FML format is only supported as source format. - - http://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-fml/ - - - - org.codehaus.plexus - plexus-utils - - - - - org.apache.maven.doxia - doxia-test-docs - test - - - xerces - xercesImpl - 2.9.1 - test - - - - - - - org.codehaus.modello - modello-maven-plugin - - - descriptor - generate-sources - - java - - - - src/main/mdo/fml.mdo - - 1.0.0 - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - src/main/components/components.xml - target/generated-resources/plexus/META-INF/plexus/components.xml - - - - - - merge-descriptors - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-antrun-plugin - - - site - - - - - - - - - - - - - - - - - - - - run - - - - - - xsddoc - xsddoc - 1.0 - - - ant - ant - - - - - org.apache.ant - ant-apache-regexp - 1.7.1 - - - xalan - xalan - 2.7.1 - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2.pom.sha1 deleted file mode 100644 index 1933928716656de404e0861d0e402a1b76ac2881..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.2/doxia-module-fml-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3cb507500869ea4b9e179bf2a5384707bda2c353 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/_remote.repositories deleted file mode 100644 index 3bb70f9a4c6f9e154ae48b8c74c6f43eb6945ad3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-module-fml-1.4.jar>repo.jenkins-ci.org= -doxia-module-fml-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar deleted file mode 100644 index 673d750900e343cb139c9e74b512a9723a144050..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar.sha1 deleted file mode 100644 index 2474c47cc957c31b1715f3b6d090d9d92b2f6710..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d27851cfa0a355070acdc0482de3e94c0140b5db \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.pom deleted file mode 100644 index 940ddc1342e2c2898a51f39fa63a58ef876ad888..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.pom +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - 4.0.0 - - - doxia-modules - org.apache.maven.doxia - 1.4 - ../pom.xml - - - doxia-module-fml - - Doxia :: FML Module - - A Doxia module for FML source documents. - FML format is only supported as source format. - - - - - org.codehaus.plexus - plexus-utils - - - - - org.apache.maven.doxia - doxia-test-docs - test - - - xerces - xercesImpl - 2.9.1 - test - - - - - - - org.codehaus.modello - modello-maven-plugin - - - descriptor - generate-sources - - java - - - - src/main/mdo/fml.mdo - - 1.0.0 - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-antrun-plugin - - - site - - - - - - - - - - - - - - - - - - - - run - - - - - - xsddoc - xsddoc - 1.0 - - - ant - ant - - - - - org.apache.ant - ant-apache-regexp - 1.7.1 - - - xalan - xalan - 2.7.1 - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.pom.sha1 deleted file mode 100644 index 386ce07e0a4c032f96823aff299e94aaf465e4e5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -90437de25862f0793b82ed02794633ef8a7cce7b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/_remote.repositories deleted file mode 100644 index ceb2e876d23549eece8d2b3c5d0b95ab215c5a9f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:03 CST 2019 -doxia-module-fml-1.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/doxia-module-fml-1.7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/doxia-module-fml-1.7.jar deleted file mode 100644 index abe8195998b0cdfb195249b45b896ad345732a04..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/doxia-module-fml-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/doxia-module-fml-1.7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/doxia-module-fml-1.7.jar.sha1 deleted file mode 100644 index a4dd8e0e2a08dc7b275496f646506e4e0c33b62c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-fml/1.7/doxia-module-fml-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -279b3ef8b706a0c00ffaba005022590ba63c9a04 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/_remote.repositories deleted file mode 100644 index 5581430b00f500208df7d38004a8a5b47a2ba8b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:04 CST 2019 -doxia-module-markdown-1.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/doxia-module-markdown-1.7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/doxia-module-markdown-1.7.jar deleted file mode 100644 index 632c2aa21dae67b5a8fdaf53dc2ce8cefc48bde8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/doxia-module-markdown-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/doxia-module-markdown-1.7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/doxia-module-markdown-1.7.jar.sha1 deleted file mode 100644 index eae7f1f7982549a661571ec073dcc1a9c72fd26e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-markdown/1.7/doxia-module-markdown-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5701d0dfaa0ee4eab6238e153846e5c96063f73 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/_remote.repositories deleted file mode 100644 index cf3e327e63ddc9af94f320e1b6da6f86a1601fea..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:02 CST 2019 -doxia-module-xdoc-1.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/doxia-module-xdoc-1.7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/doxia-module-xdoc-1.7.jar deleted file mode 100644 index c0afc1973efd52ae69df3e48e183a70eda20bd21..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/doxia-module-xdoc-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/doxia-module-xdoc-1.7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/doxia-module-xdoc-1.7.jar.sha1 deleted file mode 100644 index b510dc059813df8e36fcf0a9a2309af5e3859387..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xdoc/1.7/doxia-module-xdoc-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ee94fd64872464c08c144420d38328e87043222a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/_remote.repositories deleted file mode 100644 index 6f4f63b5347fba06da0b719aff27362e5ebccc0a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-module-xhtml-1.1.2.jar>repo.jenkins-ci.org= -doxia-module-xhtml-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar deleted file mode 100644 index ae928c89441fbae559f2aaf4685221ebde49b72e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar.sha1 deleted file mode 100644 index 7cbbd30bba47da44c03dbaae6c67744adecbb4ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -11566856aa0bd7780842de4be791d583df8ad8bf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom deleted file mode 100644 index 6e838b8f45e7150b1f5da21857324964706224f5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - 4.0.0 - - - doxia-modules - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-module-xhtml - - Doxia :: XHTML Module - A Doxia module for Xhtml source documents. - - - - org.codehaus.plexus - plexus-utils - - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom.sha1 deleted file mode 100644 index 502409cda51d628a28624b52987d7d3611d2e2d7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bc83b22bf4b654b2ed2c1b902b0cabde23c0e4c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/_remote.repositories deleted file mode 100644 index 6a544731c52166304e7066e7554f0d2a0bce8c1b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:44 CST 2019 -doxia-module-xhtml-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.pom deleted file mode 100644 index 068b002b9090b1880237c9b2e28babd1176db29d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - 4.0.0 - - - doxia-modules - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-module-xhtml - - Doxia :: XHTML Module - - A Doxia module for Xhtml source documents. - Xhtml format is supported both as source and target formats. - - http://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-xhtml/ - - - - org.codehaus.plexus - plexus-utils - - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.pom.sha1 deleted file mode 100644 index 7236e3bf2631718ea4d3c3806bb49091f170d912..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -da521780a03c3ef10917fd918e33ee19f2756510 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/_remote.repositories deleted file mode 100644 index d571c97cd021d429f4ccd766c0ccf62058b8d84e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-module-xhtml-1.4.jar>repo.jenkins-ci.org= -doxia-module-xhtml-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar deleted file mode 100644 index 7e2e8a1c141f9ee10be3513aac618c07ba48827b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar.sha1 deleted file mode 100644 index 4c333dee243225e9e346eb6efa6fe246a1cc0544..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -109b0b6b49fdd166b036c7fce93393fa98002c66 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.pom deleted file mode 100644 index 9321253142fbb6d91751360098756c8e6cb1dd11..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - 4.0.0 - - - doxia-modules - org.apache.maven.doxia - 1.4 - ../pom.xml - - - doxia-module-xhtml - - Doxia :: XHTML Module - - A Doxia module for Xhtml source documents. - Xhtml format is supported both as source and target formats. - - - - - org.codehaus.plexus - plexus-utils - - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.pom.sha1 deleted file mode 100644 index ed66db0918d7f99b37e040a0c9a9657053e14d9c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -98902234bd791acb345e987a0513b25daf061196 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/_remote.repositories deleted file mode 100644 index 84b43023494273bf37d1503f68196aeea05a6218..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:01 CST 2019 -doxia-module-xhtml-1.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar deleted file mode 100644 index c14bd1de3572f0c6fce24ca24fe98ffe936efe65..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar.sha1 deleted file mode 100644 index b4b07f633e09133b5811707e7bb8d8ddbb6f1fe5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -feb193a7bf81cca98270657c8757273016abac8a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/_remote.repositories deleted file mode 100644 index c662a89afaf7f35807670697d2174f2cadc3b112..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:20 CST 2019 -doxia-modules-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom deleted file mode 100644 index fdf7550b94941b077b2a3b0325e79802617599f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-modules - - Doxia :: Modules - pom - - Doxia modules for several markup languages. - - - doxia-module-apt - doxia-module-confluence - doxia-module-docbook-simple - doxia-module-fml - doxia-module-fo - doxia-module-itext - doxia-module-latex - doxia-module-rtf - doxia-module-twiki - doxia-module-xdoc - doxia-module-xhtml - - - - - org.apache.maven.doxia - doxia-core - - - org.apache.maven.doxia - doxia-sink-api - - - - - org.apache.maven.doxia - doxia-core - test-jar - test - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom.sha1 deleted file mode 100644 index 9e6f9778793169fd070a8a13e1d2ef74b77dc40f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -140b04b333b6c55dc713e3d6903af857bec7148f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/_remote.repositories deleted file mode 100644 index 744ce179d3a76b50d68327e9b7ff9ae14cebb099..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:44 CST 2019 -doxia-modules-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2.pom deleted file mode 100644 index 4e1ef5ce4ec76cc50e5a027f9f99a9f31cc10a00..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-modules - - Doxia :: Modules - pom - - Doxia modules for several markup languages. - http://maven.apache.org/doxia/doxia/doxia-modules/ - - - doxia-module-apt - doxia-module-confluence - doxia-module-docbook-simple - doxia-module-fml - doxia-module-fo - doxia-module-itext - doxia-module-latex - doxia-module-rtf - doxia-module-twiki - doxia-module-xdoc - doxia-module-xhtml - - - - - org.apache.maven.doxia - doxia-core - - - org.apache.maven.doxia - doxia-sink-api - - - - - org.apache.maven.doxia - doxia-core - test-jar - test - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2.pom.sha1 deleted file mode 100644 index b5eb3ad95153bf19974b524f69aa5cd06dbe25fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.2/doxia-modules-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0fce38d9ab92c6e5bd6decdc4a7713cec1bff714 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/_remote.repositories deleted file mode 100644 index 4f24a9cdd4b602881f203965398cac9462c373fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:12 CST 2019 -doxia-modules-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4.pom deleted file mode 100644 index 285771ed3f13ccbfdeba4b271bad75295168f342..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.4 - ../pom.xml - - - doxia-modules - - Doxia :: Modules - pom - - Doxia modules for several markup languages. - - - doxia-module-apt - doxia-module-confluence - doxia-module-docbook-simple - doxia-module-fml - doxia-module-fo - doxia-module-itext - doxia-module-latex - doxia-module-rtf - doxia-module-twiki - doxia-module-xdoc - doxia-module-xhtml - - doxia-module-markdown - - - - - org.apache.maven.doxia - doxia-core - - - org.apache.maven.doxia - doxia-sink-api - - - org.codehaus.plexus - plexus-component-annotations - - - - - org.apache.maven.doxia - doxia-core - test-jar - test - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4.pom.sha1 deleted file mode 100644 index f85b5c1db1f49293a8282fd9d20d20737fe1371a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-modules/1.4/doxia-modules-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4a72322c7c467a8a4b67993c2d0eee076a294c7c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/_remote.repositories deleted file mode 100644 index 22f7d05217489eafe19e54fd7b49fe952861f01c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -doxia-sink-api-1.0-alpha-7.jar>repo.jenkins-ci.org= -doxia-sink-api-1.0-alpha-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar deleted file mode 100644 index 8ca52a7e50817dad610bb41992759ce02cd970ed..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 deleted file mode 100644 index 518769587bb3cab91cf1c6560a95425692a3d0df..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -68464d54384c35119c70684d5d609b64635d1bbd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom deleted file mode 100644 index 750bf674bebbff6d171785139e1651c02fa4e6d5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom +++ /dev/null @@ -1,14 +0,0 @@ - - - doxia - org.apache.maven.doxia - 1.0-alpha-7 - - 4.0.0 - doxia-sink-api - Doxia Sink API - 1.0-alpha-7 - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 deleted file mode 100644 index 3be1832a5c479474f9999af24b9f5703b591ebf8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d8e08f33563f684917311978da2ff03a9d0022ab \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/_remote.repositories deleted file mode 100644 index 2dfcf511cc3483c199c09390e9af73fce02e795e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-sink-api-1.0.jar>repo.jenkins-ci.org= -doxia-sink-api-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar deleted file mode 100644 index 577b8eb0a5caf6ce0d483158fd7e0d1b34a27e1d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 deleted file mode 100644 index 99b0f4d1cc7d10ef79537df48581bee0baaef83e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -13f502f2fb1d4e2db6f19352c85b83277084bb98 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom deleted file mode 100644 index 61a73010ebc70ed19afacbf5885834af4544417e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.0 - ../pom.xml - - - doxia-sink-api - Doxia :: Sink API - Doxia Sink API. - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 deleted file mode 100644 index 02ac303729af34911df025a9941b61259349bfd4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d842372fdb4c42d78824141f7be4c0d541c983f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/_remote.repositories deleted file mode 100644 index 39ab6503d25296e0f3dc4fada66dbb2f9f07f805..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:03 CST 2019 -doxia-sink-api-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom deleted file mode 100644 index 98987e0185e311877bca328d36717698b3783bcc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-sink-api - Doxia :: Sink API - Doxia Sink API. - - - - org.apache.maven.doxia - doxia-logging-api - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom.sha1 deleted file mode 100644 index b98a7d52a44c0be5780d1b63027090b5663b3c75..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -75136eed3dde652c62a0e6381e9a2c9aa7d4e406 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories deleted file mode 100644 index 9a39d844023b76a519cb00b7f03db27d0a6e46bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:29 CST 2019 -doxia-sink-api-1.1.jar>repo.jenkins-ci.org= -doxia-sink-api-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar deleted file mode 100644 index 7b2752c2e9161ae916f64c4753d763d2675854b6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar.sha1 deleted file mode 100644 index e7b9539a487ccafbc3d1eeaab220a2908f1fa99e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9fc15c69e09a14fd07acba7300009eff6e692a44 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom deleted file mode 100644 index 643c755d5214a396478fee8435bbcdd7c0743c45..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.1 - ../pom.xml - - - doxia-sink-api - Doxia :: Sink API - Doxia Sink API. - - - - org.apache.maven.doxia - doxia-logging-api - - - - - - reporting - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - 1.0 - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom.sha1 deleted file mode 100644 index 98a2e2b50a2231b034a2707c2bfa750b8abbb922..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a73bb471bb8fe69ed25d59c348139e6afb834bc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/_remote.repositories deleted file mode 100644 index 7f2c4cf366d844747059d6d7de33f23e26f7412e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:29 CST 2019 -doxia-sink-api-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/doxia-sink-api-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/doxia-sink-api-1.2.pom deleted file mode 100644 index f34ca6d57ab7358c948822c7b5131ce96244e6d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/doxia-sink-api-1.2.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-sink-api - Doxia :: Sink API - Doxia Sink API. - http://maven.apache.org/doxia/doxia/doxia-sink-api/ - - - - org.apache.maven.doxia - doxia-logging-api - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/doxia-sink-api-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/doxia-sink-api-1.2.pom.sha1 deleted file mode 100644 index 3d69450723027fa77868a18e01df41df5dc86d82..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.2/doxia-sink-api-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d50511019c3eae662d803f6722d353fd0af2e37d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/_remote.repositories deleted file mode 100644 index f4ea18dff8470ca8800bee4a39b15da1db30bdcc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-sink-api-1.4.jar>repo.jenkins-ci.org= -doxia-sink-api-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar deleted file mode 100644 index 16052a5fb473dd247d816143b4433448056c101c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar.sha1 deleted file mode 100644 index 3c880118bb43d5e76a3e81b544f19f28b1c45308..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3cfed174cabb086426a9043da49a70526ff40d16 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.pom deleted file mode 100644 index 94c96da6a74139aff8278bc72cb64176db6bf014..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - 4.0.0 - - - doxia - org.apache.maven.doxia - 1.4 - ../pom.xml - - - doxia-sink-api - Doxia :: Sink API - Doxia Sink API. - - - - org.apache.maven.doxia - doxia-logging-api - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.pom.sha1 deleted file mode 100644 index 9677546fd2d8fc62aefb030c55d2912b4dbc24b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a613738017689a91136272266089def6a2b3db49 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/_remote.repositories deleted file mode 100644 index e37680324fec2517d88df51ea9d518cd30d997b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:00 CST 2019 -doxia-sink-api-1.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar deleted file mode 100644 index 80e6ec3d4c37a04c4a1441c6ea916cf33ddb9469..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar.sha1 deleted file mode 100644 index 8aa6ea8f2aaba9955cf025045f3de69558ace444..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -64482f540f8f45c0749b2febdb78ee3148a52b58 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/_remote.repositories deleted file mode 100644 index 589066e9cda3260caf6a52f10533061a325bbece..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -doxia-site-renderer-1.1.2.jar>repo.jenkins-ci.org= -doxia-site-renderer-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar deleted file mode 100644 index a4969b82d49623ebf91d012ccfc8034b76e0c678..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar.sha1 deleted file mode 100644 index b9eefa22e3f47d608ba535d98a72709a4e80c20a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3b089bbe153468845e6caabd35c2a8b879939ee4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom deleted file mode 100644 index 96ea5acf739693b629a30f61f1d9224ae05de3f1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - 4.0.0 - - - doxia-sitetools - org.apache.maven.doxia - 1.1.2 - ../pom.xml - - - doxia-site-renderer - Doxia Sitetools :: Site Renderer Component - The Site Renderer handles the rendering of sites. - - - - Vincent Siveton - vsiveton@apache.org - Apache Software Foundation - - Java Developer - - -5 - - - - - - - org.apache.maven.doxia - doxia-core - - - org.apache.maven.doxia - doxia-logging-api - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-decoration-model - - - - org.apache.maven.doxia - doxia-module-apt - test - - - org.apache.maven.doxia - doxia-module-confluence - test - - - org.apache.maven.doxia - doxia-module-docbook-simple - test - - - org.apache.maven.doxia - doxia-module-xdoc - test - - - org.apache.maven.doxia - doxia-module-xhtml - - - org.apache.maven.doxia - doxia-module-fml - - - - - org.codehaus.plexus - plexus-i18n - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-velocity - 1.1.7 - - - commons-collections - commons-collections - - - org.codehaus.plexus - plexus-component-api - - - velocity - velocity - - - - - org.codehaus.plexus - plexus-utils - - - - - org.apache.velocity - velocity - 1.5 - - - commons-collections - commons-collections - 3.2 - - - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - test-jar - test - - - htmlunit - htmlunit - 1.13 - test - - - - - - reporting - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - de - en - es - fr - it - ja - nl - pl - pt_BR - zh_CN - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom.sha1 deleted file mode 100644 index 8baabbb7619d4912936c0a7cc1ea48a73ff9339a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d573268a39d0a32d2953c64cb50a41310a4a0e54 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/_remote.repositories deleted file mode 100644 index 174d63795fda77a813cff7c46c65bf8f17df363b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:42 CST 2019 -doxia-site-renderer-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.pom deleted file mode 100644 index cae7a4b17bcb335ddeae52da41e5542aa3ab9630..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.pom +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - 4.0.0 - - - doxia-sitetools - org.apache.maven.doxia - 1.2 - ../pom.xml - - - doxia-site-renderer - Doxia Sitetools :: Site Renderer Component - The Site Renderer handles the rendering of sites. - http://maven.apache.org/doxia/doxia-sitetools/doxia-site-renderer/ - - - - Vincent Siveton - vsiveton@apache.org - Apache Software Foundation - - Java Developer - - -5 - - - - - - - org.apache.maven.doxia - doxia-core - - - org.apache.maven.doxia - doxia-logging-api - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-decoration-model - - - - org.apache.maven.doxia - doxia-module-apt - test - - - org.apache.maven.doxia - doxia-module-confluence - test - - - org.apache.maven.doxia - doxia-module-docbook-simple - test - - - org.apache.maven.doxia - doxia-module-xdoc - test - - - org.apache.maven.doxia - doxia-module-xhtml - - - org.apache.maven.doxia - doxia-module-fml - - - - - org.codehaus.plexus - plexus-i18n - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-velocity - 1.1.7 - - - commons-collections - commons-collections - - - org.codehaus.plexus - plexus-component-api - - - velocity - velocity - - - - - org.codehaus.plexus - plexus-utils - - - - - org.apache.velocity - velocity - 1.5 - - - commons-collections - commons-collections - 3.2.1 - - - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - test-jar - test - - - htmlunit - htmlunit - 1.13 - test - - - - - - reporting - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - de - en - es - fr - it - ja - nl - pl - pt_BR - sv - zh_CN - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.pom.sha1 deleted file mode 100644 index 3ac4ddf6a485d646f6c8ae31801a968bf5162765..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -02d945960abfc9ff27d0b0ad76a5e806c7c776a1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/_remote.repositories deleted file mode 100644 index b23e78aecb34f8396183e13d4e71d15132617fea..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -doxia-site-renderer-1.4.jar>repo.jenkins-ci.org= -doxia-site-renderer-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar deleted file mode 100644 index 65d2005cc2ca55aa3b09f21d2e29266ca45bb5c4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar.sha1 deleted file mode 100644 index e9ef58b30b94af6e68d9d6479a6fd71d8786fc4a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -91acd32a131407bccefd2971c1103c5d16002da2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.pom deleted file mode 100644 index f9fed6afa63595c2b701af71f67a0764d9aaddee..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.pom +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.doxia - doxia-sitetools - 1.4 - ../pom.xml - - - doxia-site-renderer - - Doxia :: Site Renderer - The Site Renderer handles the rendering of sites, merging site decoration with document content. - http://maven.apache.org/doxia/doxia-sitetools/doxia-site-renderer/ - - - - - - org.apache.maven.doxia - doxia-core - - - org.apache.maven.doxia - doxia-logging-api - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-decoration-model - - - - org.apache.maven.doxia - doxia-module-apt - test - - - org.apache.maven.doxia - doxia-module-confluence - test - - - org.apache.maven.doxia - doxia-module-docbook-simple - test - - - org.apache.maven.doxia - doxia-module-xdoc - test - - - org.apache.maven.doxia - doxia-module-xhtml - - - org.apache.maven.doxia - doxia-module-fml - - - - - org.codehaus.plexus - plexus-i18n - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-velocity - 1.1.7 - - - commons-collections - commons-collections - - - org.codehaus.plexus - plexus-component-api - - - velocity - velocity - - - - - org.codehaus.plexus - plexus-utils - - - - - org.apache.velocity - velocity - 1.5 - - - org.apache.velocity - velocity-tools - 2.0 - - - commons-collections - commons-collections - 3.2.1 - - - - - commons-io - commons-io - 1.4 - test - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - test-jar - test - - - net.sourceforge.htmlunit - htmlunit - 2.7 - test - - - - - - reporting - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - de - en - es - fr - it - ja - nl - pl - pt_BR - sv - zh_CN - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.pom.sha1 deleted file mode 100644 index cb5d7bdc3b76a4f4ebb09837d834e92964de03dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -467421ba1c1e1a64e5f201e72c777e5d97abf52d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/_remote.repositories deleted file mode 100644 index 3e4baff5556badf6bac6172837e779a4496172ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:07 CST 2019 -doxia-site-renderer-1.7.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/doxia-site-renderer-1.7.1.jar b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/doxia-site-renderer-1.7.1.jar deleted file mode 100644 index a9ebda6d86dab8d03c00e4f34140d20f1802e00f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/doxia-site-renderer-1.7.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/doxia-site-renderer-1.7.1.jar.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/doxia-site-renderer-1.7.1.jar.sha1 deleted file mode 100644 index fa18298f6da8bafab91f3e8f27a957d1e07ed19c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-site-renderer/1.7.1/doxia-site-renderer-1.7.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f54dcda83a0f80d1f9bd32c2466749d0058d8491 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/_remote.repositories deleted file mode 100644 index 0f5df20c73fcb8b68d5e8f0a19c5a60472f49417..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:14 CST 2019 -doxia-sitetools-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom deleted file mode 100644 index 85878cd42cf9f730caf5e2cba84062dddd1c232d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom +++ /dev/null @@ -1,411 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 15 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia-sitetools - 1.1.2 - pom - - Doxia Sitetools - Doxia Sitetools generates sites, consisting of static and dynamic content that was generated by Doxia. - http://maven.apache.org/doxia/doxia-sitetools - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://maven.doxia.dev.markmail.org/ - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://maven.doxia.users.markmail.org/ - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://maven.doxia.commits.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - - - 2.0.4 - - - - doxia-decoration-model - doxia-doc-renderer - doxia-site-renderer - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.1.2 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.1.2 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.1.2 - - - jira - http://jira.codehaus.org/browse/DOXIASITETOOLS - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia-sitetools - - - - - ${project.version} - 1.1.2 - - - - - - - org.apache.maven.doxia - doxia-logging-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-apt - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-confluence - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-fml - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-xdoc - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-xhtml - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-decoration-model - ${projectVersion} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-i18n - 1.0-beta-7 - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-utils - 1.5.12 - - - - - - junit - junit - 3.8.2 - test - - - - - - - src/main/resources - - - ${build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-4 - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - org.codehaus.modello - modello-maven-plugin - 1.1 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - 1.1 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.6.1 - - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - verify - - check - - - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - apache-release - - - - org.apache.maven.plugins - maven-assembly-plugin - - - - single - - package - - - src/assembly/source-release.xml - - gnu - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/maven/doxia/doxia/trunk/src/main/resources/config/doxia_checkstyle.xml - - - - org.codehaus.mojo - clirr-maven-plugin - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - aggregate - test-aggregate - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom.sha1 deleted file mode 100644 index a9229fbfb5f5e0d559c09e62bcd8538beed7f228..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd8d1ffc9be982aa9522fa7919e31bf3db453941 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/_remote.repositories deleted file mode 100644 index 0bd9db2fdc52fe545360f6c7f7e0f15b0219e7fe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:43 CST 2019 -doxia-sitetools-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom deleted file mode 100644 index f7cc92d98c577ed8d8d1407228e235070d11a908..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 19 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia-sitetools - 1.2 - pom - - Doxia Sitetools - Doxia Sitetools generates sites, consisting of static and dynamic content that was generated by Doxia. - http://maven.apache.org/doxia/doxia-sitetools/ - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://markmail.org/list/org.apache.maven.doxia-dev - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://markmail.org/list/org.apache.maven.doxia-users - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://markmail.org/list/org.apache.maven.doxia-commits - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://markmail.org/list/org.apache.maven.issues - - - - - - 2.0.4 - - - - doxia-decoration-model - doxia-doc-renderer - doxia-site-renderer - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.2 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.2 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.2 - - - - jira - http://jira.codehaus.org/browse/DOXIASITETOOLS - - - - Jenkins - https://builds.apache.org/hudson/job/doxia-sitetools/ - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia-sitetools - - - - - ${project.version} - 1.2 - - - - - - - org.apache.maven.doxia - doxia-logging-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-apt - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-confluence - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-fml - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-xdoc - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-xhtml - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-decoration-model - ${projectVersion} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-i18n - 1.0-beta-7 - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-utils - 2.0.5 - - - - - - junit - junit - 3.8.2 - test - - - - - - - src/main/resources - - - ${project.build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.codehaus.modello - modello-maven-plugin - - true - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags - - - - - org.codehaus.mojo - clirr-maven-plugin - - 1.1 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - 1.5 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/doxia/doxia-sitetools-${project.version} - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - verify - - check - - - - org/apache/maven/doxia/site/decoration/* - - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.5 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - maven-pmd-plugin - 2.5 - - 1.5 - - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - 1.5 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - - aggregate - test-aggregate - - - - - - - - - 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/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 deleted file mode 100644 index 10c2da0329fd19db528b8823e033e39a683d114e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.2/doxia-sitetools-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -78990d3ce17fbf65b8e4290b043bac7868a3e51d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/_remote.repositories deleted file mode 100644 index 95186a953ce3ebdeda3703cb1b24e5986de62f58..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:04 CST 2019 -doxia-sitetools-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4.pom deleted file mode 100644 index e413974f6e4769e438e19c68bdde52ed8945ea19..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4.pom +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia-sitetools - 1.4 - pom - - Doxia :: Sitetools - Doxia Sitetools generates sites, consisting of static and dynamic content that was generated by Doxia. - http://maven.apache.org/doxia/doxia-sitetools/ - 2005 - - - - 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://oldnabble.com/Maven---Users-f178.html - http://markmail.org/list/org.apache.maven.users - - - - 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://old.nabble.com/Maven-Developers-f179.html - http://markmail.org/list/org.apache.maven.dev - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://old.nabble.com/Maven---Commits-f15575.html - http://markmail.org/list/org.apache.maven.commits - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://old.nabble.com/Maven---Issues-f15573.html - http://markmail.org/list/org.apache.maven.issues - - - - Old Doxia Developer List (closed) - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://markmail.org/list/org.apache.maven.doxia-dev - - - - Old Doxia User List (closed) - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://markmail.org/list/org.apache.maven.doxia-users - - - - Old Doxia Commits List (closed) - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://markmail.org/list/org.apache.maven.doxia-commits - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://markmail.org/list/org.apache.maven.issues - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announces - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - 2.0.4 - - - - doxia-decoration-model - doxia-doc-renderer - doxia-site-renderer - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.4 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.4 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-sitetools/tags/doxia-sitetools-1.4 - - - jira - http://jira.codehaus.org/browse/DOXIASITETOOLS - - - Jenkins - https://builds.apache.org/job/doxia-sitetools/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven-doxia/content/${maven.site.path} - - - - - 1.4 - doxia-sitetools-archives/doxia-sitetools-LATEST - - - - - Michael Osipov - - - - - - - - org.apache.maven.doxia - doxia-logging-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-apt - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-confluence - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-fml - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-xdoc - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-module-xhtml - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-decoration-model - ${project.version} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-i18n - 1.0-beta-7 - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-utils - 3.0.10 - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - - - - org.codehaus.plexus - plexus-component-annotations - - - junit - junit - 3.8.2 - test - - - - - - - src/main/resources - - - ${project.build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/tags - true - - - - - org.codehaus.mojo - clirr-maven-plugin - - 1.1 - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.build.directory}/staging - ${maven.site.cache}/doxia/${maven.site.path} - true - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - verify - - check - - - - org/apache/maven/doxia/site/decoration/* - - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - 2.6 - false - - Type,Key,Summary,Resolution,Assignee - 1000 - true - Key - - - - - jira-report - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - non-aggregate - - jxr - - - - aggregate - - aggregate - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - - - Doxia Document Renderer - org.apache.maven.doxia.docrenderer* - - - Doxia Site Renderer - org.apache.maven.doxia.siterenderer* - - - Doxia Decoration Model - org.apache.maven.doxia.site.decoration* - - - - - - non-aggregate - - javadoc - - - - aggregate - - aggregate - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4.pom.sha1 deleted file mode 100644 index f6e7a0f7c351eea781621660361e5f41d5a040a7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia-sitetools/1.4/doxia-sitetools-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -09cf8365031618c2d39ea0118e1a75be6ba18b66 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories deleted file mode 100644 index ccea41ca12310856238a7c59272bb3adfc0d15fc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:23 CST 2019 -doxia-1.0-alpha-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom b/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom deleted file mode 100644 index 8f6ee854bbb69007e053ff042293f64778df2c2c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom +++ /dev/null @@ -1,109 +0,0 @@ - - 4.0.0 - org.apache.maven.doxia - doxia - pom - Doxia - 1.0-alpha-7 - http://maven.apache.org/doxia - - jira - http://jira.codehaus.org/browse/DOXIA - - - continuum - - -
doxia-dev@maven.apache.org
-
-
-
- - - Doxia Developer List - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - - Doxia User List - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - - - - Jason van Zyl - jason@maven.org - - Developer - - -5 - - - Brett Porter - brett@apache.org - - Developer - - +10 - - - Emmanuel Venisse - emmanuel@venisse.net - - Developer - - 1 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/tags/doxia-1.0-alpha-7 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/tags/doxia-1.0-alpha-7 - http://svn.apache.org/viewcvs.cgi/maven/doxia/tags/doxia-1.0-alpha-7 - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - - - doxia-core - doxia-sink-api - doxia-site-renderer - doxia-decoration-model - - - - repo1 - Maven Central Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 - - - snapshots - Maven Central Development Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 - - - website - scp://minotaur.apache.org/www/maven.apache.org/doxia/ - - -
\ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 deleted file mode 100644 index b49bdaacc04532e0a4f9ced33117d1e52e141599..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fff8727b6ff366d624669f4b8dc4d4c7316bbb0c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.0/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia/1.0/_remote.repositories deleted file mode 100644 index c98198ff26145bcb7f2ca467ffdd9b81b3872e8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:25 CST 2019 -doxia-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom b/artifacts/m2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom deleted file mode 100644 index 95a6b5e889bd9104cdda82e46a7844e69daffb65..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 10 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia - 1.0 - pom - - Doxia - Doxia is a content generation framework that provides powerful techniques for generating static and dynamic content, supporting a variety of markup languages. - http://maven.apache.org/doxia/doxia - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://maven.doxia.dev.markmail.org/ - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://maven.doxia.users.markmail.org/ - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://maven.doxia.commits.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - - - doxia-core - doxia-sink-api - doxia-modules - doxia-book - doxia-maven-plugin - - - - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.0 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.0 - https://svn.apache.org/viewvc/maven/doxia/doxia/tags/doxia-1.0 - - - jira - http://jira.codehaus.org/browse/DOXIA - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia-1.0.x - - - - - ${project.version} - - - - - - org.apache.maven.doxia - doxia-sink-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - test-jar - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-utils - 1.5.7 - - - - - - junit - junit - 3.8.2 - test - - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - true - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia/tags - - - - maven-surefire-plugin - - never - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - true - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 deleted file mode 100644 index d73839b66ebe7ecaab7fe1e59541caf25e514884..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -250d5a027daedc96539e3b3def7da7911feb6aae \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/_remote.repositories deleted file mode 100644 index d9a28c3a1b1db314614bcd248011e027b3f42343..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:04 CST 2019 -doxia-1.1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom deleted file mode 100644 index cade04e6d6a99b2be84091d05df931be8c9a21af..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 15 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia - 1.1.2 - pom - - Doxia - Doxia is a content generation framework that provides powerful techniques for generating static and dynamic content, supporting a variety of markup languages. - http://maven.apache.org/doxia/doxia - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://maven.doxia.dev.markmail.org/ - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://maven.doxia.users.markmail.org/ - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://maven.doxia.commits.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - - - 2.0.6 - - - - doxia-logging-api - doxia-sink-api - doxia-test-docs - doxia-core - doxia-modules - doxia-book - doxia-maven-plugin - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.1.2 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.1.2 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia/tags/doxia-1.1.2 - - - jira - http://jira.codehaus.org/browse/DOXIA - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia - - - - - ${project.version} - - - - - - - org.apache.maven.doxia - doxia-sink-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-logging-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-test-docs - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - test-jar - - - - - org.apache.maven.doxia - doxia-module-apt - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-confluence - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-fml - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-fo - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-latex - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-itext - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-rtf - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-twiki - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-xdoc - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-xhtml - ${projectVersion} - - - - - org.apache.maven.doxia - doxia-book - ${projectVersion} - - - org.apache.maven.doxia - doxia-maven-plugin - ${projectVersion} - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-utils - 1.5.12 - - - - - - junit - junit - 3.8.2 - test - - - - - - - src/main/resources - - - ${build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-4 - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia/tags - - - - - org.codehaus.plexus - plexus-maven-plugin - - 1.3.5 - - - org.codehaus.modello - modello-maven-plugin - 1.1 - - - maven-project-info-reports-plugin - 2.1.2 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - 1.1 - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.6.1 - - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - verify - - check - - - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - apache-release - - - - org.apache.maven.plugins - maven-assembly-plugin - - - - single - - package - - - src/assembly/source-release.xml - - gnu - - - - - - - - - - remove-temp - - - - maven-antrun-plugin - - - clean-download - clean - - - - - - - - - run - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/maven/doxia/doxia/trunk/src/main/resources/config/doxia_checkstyle.xml - - - - org.codehaus.mojo - clirr-maven-plugin - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - aggregate - test-aggregate - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom.sha1 deleted file mode 100644 index ab53fcd04cb0c5e6950054ea97725c1c976934f7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -668f8032acaaab3e4afd14ddc2553e60cb583d46 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.1/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia/1.1/_remote.repositories deleted file mode 100644 index 8161ec862d07b1d68a21dd113462fd1aac8444ea..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:09 CST 2019 -doxia-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom b/artifacts/m2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom deleted file mode 100644 index affc205465cb6d02ef70cae75814cbd3c831363a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 11 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia - 1.1 - pom - - Doxia - Doxia is a content generation framework that provides powerful techniques for generating static and dynamic content, supporting a variety of markup languages. - http://maven.apache.org/doxia/doxia - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://maven.doxia.dev.markmail.org/ - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://maven.doxia.users.markmail.org/ - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://maven.doxia.commits.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - - - 2.0.6 - - - - doxia-logging-api - doxia-sink-api - doxia-test-docs - doxia-core - doxia-modules - doxia-book - doxia-maven-plugin - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.1 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.1 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia/tags/doxia-1.1 - - - jira - http://jira.codehaus.org/browse/DOXIA - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia - - - - - ${project.version} - - - - - - - org.apache.maven.doxia - doxia-sink-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-logging-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-test-docs - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - test-jar - - - - - org.apache.maven.doxia - doxia-module-apt - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-confluence - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-fml - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-fo - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-latex - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-itext - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-rtf - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-twiki - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-xdoc - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-xhtml - ${projectVersion} - - - - - org.apache.maven.doxia - doxia-book - ${projectVersion} - - - org.apache.maven.doxia - doxia-maven-plugin - ${projectVersion} - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-utils - 1.5.7 - - - - - - junit - junit - 3.8.2 - test - - - - - - - src/main/resources - - - ${build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia/tags - - - - maven-surefire-plugin - - never - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - org.codehaus.modello - modello-maven-plugin - 1.0 - - - maven-project-info-reports-plugin - 2.1.1 - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - - - - - - maven-project-info-reports-plugin - 2.1.1 - - - - - - - - remove-temp - - - - maven-antrun-plugin - - - clean-download - clean - - - - - - - - - run - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - 1.4 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - aggregate - test-aggregate - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom.sha1 deleted file mode 100644 index f03b39846de53dfb10c44930018e7bea2b1ef3f5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b2306ce11082ee839fa2deee1fe4f1122c15227c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia/1.2/_remote.repositories deleted file mode 100644 index e0adb448822dd06912fb7af96b0f176510b3d461..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:29 CST 2019 -doxia-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom b/artifacts/m2/org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom deleted file mode 100644 index 4eff88ec50b1d5ceb2f30b9be23f1d8cba3f06c3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom +++ /dev/null @@ -1,513 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 19 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia - 1.2 - pom - - Doxia - Doxia is a content generation framework that provides powerful techniques for generating static and dynamic content, supporting a variety of markup languages. - http://maven.apache.org/doxia/doxia/ - 2005 - - - - Doxia Developer List - doxia-dev@maven.apache.org - doxia-dev-subscribe@maven.apache.org - doxia-dev-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://markmail.org/list/org.apache.maven.doxia-dev - - - - Doxia User List - doxia-users@maven.apache.org - doxia-users-subscribe@maven.apache.org - doxia-users-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://markmail.org/list/org.apache.maven.doxia-users - - - - Doxia Commits List - doxia-commits-subscribe@maven.apache.org - doxia-commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://markmail.org/list/org.apache.maven.doxia-commits - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://markmail.org/list/org.apache.maven.issues - - - - - - 2.0.6 - - - - doxia-logging-api - doxia-sink-api - doxia-test-docs - doxia-core - doxia-modules - doxia-book - doxia-maven-plugin - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.2 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.2 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia/tags/doxia-1.2 - - - - jira - http://jira.codehaus.org/browse/DOXIA - - - - Jenkins - https://builds.apache.org/hudson/job/doxia/ - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/doxia/doxia - - - - - ${project.version} - - - - - - - org.apache.maven.doxia - doxia-sink-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-logging-api - ${projectVersion} - - - org.apache.maven.doxia - doxia-test-docs - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - - - org.apache.maven.doxia - doxia-core - ${projectVersion} - test-jar - - - - - org.apache.maven.doxia - doxia-module-apt - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-confluence - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-fml - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-fo - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-latex - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-itext - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-rtf - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-twiki - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-xdoc - ${projectVersion} - - - org.apache.maven.doxia - doxia-module-xhtml - ${projectVersion} - - - - - org.apache.maven.doxia - doxia-book - ${projectVersion} - - - org.apache.maven.doxia - doxia-maven-plugin - ${projectVersion} - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-utils - 2.0.5 - - - - - - junit - junit - 3.8.2 - test - - - - - - - src/main/resources - - - ${build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia/tags - - - - org.codehaus.plexus - plexus-maven-plugin - - 1.3.5 - - - org.codehaus.modello - modello-maven-plugin - - true - - - - org.codehaus.mojo - clirr-maven-plugin - - 1.1 - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.5 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/doxia/doxia-${project.version} - - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - - descriptor - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - verify - - check - - - - org/apache/maven/doxia/document/* - - - - - - - - - - - - remove-temp - - - - maven-antrun-plugin - - - clean-download - clean - - - - - - - - - run - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 1.5 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - maven-pmd-plugin - 2.5 - - 1.5 - - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - 1.5 - - http://java.sun.com/j2se/1.4.2/docs/api/ - http://plexus.codehaus.org/plexus-utils/apidocs/ - http://junit.sourceforge.net/javadoc/ - - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - - aggregate - test-aggregate - - - - - - - - - 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/doxia/doxia/1.2/doxia-1.2.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 deleted file mode 100644 index a8dbe7c4fa99354ba40024dac84c2b85aea3a35f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.2/doxia-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1cd5c098f618eec281c1b8716f90fa2680c5d26a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/doxia/doxia/1.4/_remote.repositories deleted file mode 100644 index a91bb4af5f9fb858883546e6953e9cc4607c8841..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:02 CST 2019 -doxia-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.4/doxia-1.4.pom b/artifacts/m2/org/apache/maven/doxia/doxia/1.4/doxia-1.4.pom deleted file mode 100644 index 754f65d38bee37ec4c527b1f698b5b63732f5ca1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.4/doxia-1.4.pom +++ /dev/null @@ -1,474 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../../pom/maven/pom.xml - - - org.apache.maven.doxia - doxia - 1.4 - pom - - Doxia - Doxia is a content generation framework that provides powerful techniques for generating static and dynamic content, supporting a variety of markup languages. - http://maven.apache.org/doxia/doxia/ - 2005 - - - - 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://oldnabble.com/Maven---Users-f178.html - http://markmail.org/list/org.apache.maven.users - - - - 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://old.nabble.com/Maven-Developers-f179.html - http://markmail.org/list/org.apache.maven.dev - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://old.nabble.com/Maven---Commits-f15575.html - http://markmail.org/list/org.apache.maven.commits - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://old.nabble.com/Maven---Issues-f15573.html - http://markmail.org/list/org.apache.maven.issues - - - - Old Doxia Developer List (closed) - http://mail-archives.apache.org/mod_mbox/maven-doxia-dev/ - - http://www.mail-archive.com/doxia-dev@maven.apache.org - http://www.nabble.com/Doxia---dev-f11816.html - http://markmail.org/list/org.apache.maven.doxia-dev - - - - Old Doxia User List (closed) - http://mail-archives.apache.org/mod_mbox/maven-doxia-users/ - - http://www.mail-archive.com/doxia-users@maven.apache.org - http://www.nabble.com/Doxia---Users-f14483.html - http://markmail.org/list/org.apache.maven.doxia-users - - - - Old Doxia Commits List (closed) - http://mail-archives.apache.org/mod_mbox/maven-doxia-commits/ - - http://www.mail-archive.com/doxia-commits@maven.apache.org - http://markmail.org/list/org.apache.maven.doxia-commits - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://markmail.org/list/org.apache.maven.issues - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announces - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - - Valters Vingolds - - - Manuel Blechschmidt - - - - - ${mavenVersion} - - - - doxia-logging-api - doxia-sink-api - doxia-test-docs - doxia-core - doxia-modules - - - - scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.4 - scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia/tags/doxia-1.4 - http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia/tags/doxia-1.4 - - - jira - http://jira.codehaus.org/browse/DOXIA - - - Jenkins - https://builds.apache.org/job/doxia/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven-doxia/content/${maven.site.path} - - - - - 2.0.6 - doxia-archives/doxia-LATEST - - - - - - - org.apache.maven.doxia - doxia-sink-api - ${project.version} - - - org.apache.maven.doxia - doxia-logging-api - ${project.version} - - - org.apache.maven.doxia - doxia-test-docs - ${project.version} - - - org.apache.maven.doxia - doxia-core - ${project.version} - - - org.apache.maven.doxia - doxia-core - ${project.version} - test-jar - - - - - org.apache.maven.doxia - doxia-module-apt - ${project.version} - - - org.apache.maven.doxia - doxia-module-confluence - ${project.version} - - - org.apache.maven.doxia - doxia-module-docbook-simple - ${project.version} - - - org.apache.maven.doxia - doxia-module-fml - ${project.version} - - - org.apache.maven.doxia - doxia-module-fo - ${project.version} - - - org.apache.maven.doxia - doxia-module-latex - ${project.version} - - - org.apache.maven.doxia - doxia-module-itext - ${project.version} - - - org.apache.maven.doxia - doxia-module-rtf - ${project.version} - - - org.apache.maven.doxia - doxia-module-twiki - ${project.version} - - - org.apache.maven.doxia - doxia-module-xdoc - ${project.version} - - - org.apache.maven.doxia - doxia-module-xhtml - ${project.version} - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-30 - - - org.codehaus.plexus - plexus-utils - 3.0.10 - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - - - - junit - junit - 4.10 - test - - - - - - - src/main/resources - - - ${project.build.directory}/generated-site/xsd - - **/*.xsd - - - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/doxia/doxia/tags - true - - - - org.codehaus.mojo - clirr-maven-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.build.directory}/staging - ${maven.site.cache}/doxia/${maven.site.path} - true - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - verify - - check - - - - org/apache/maven/doxia/document/* - org/apache/maven/doxia/module/markdown/MarkdownToDoxiaHtmlSerializer - - - - - - - - - - - - remove-temp - - - - maven-antrun-plugin - - - clean-download - clean - - - - - - - - - run - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - 2.6 - - Type,Key,Summary,Resolution,Assignee - 1000 - true - Key - - - - - jira-report - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - non-aggregate - - jxr - - - - aggregate - - aggregate - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - non-aggregate - - javadoc - - - - aggregate - - aggregate - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/doxia/doxia/1.4/doxia-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/doxia/doxia/1.4/doxia-1.4.pom.sha1 deleted file mode 100644 index 836486902c5e340e66b68c0c68f43037052bf42c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/doxia/doxia/1.4/doxia-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -121c5566d364de8190fcab422b41870acb86f2de \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/_remote.repositories deleted file mode 100644 index f9952812a0abe664ce199469226afc575c47c3d2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-aether-provider-3.0.pom>repo.jenkins-ci.org= -maven-aether-provider-3.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar b/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar deleted file mode 100644 index adb55ec70858a89a56ca286e4d56d4668b4415a6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar.sha1 deleted file mode 100644 index eccee164c1d858e52c3596e9b9177c9585a8ff98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -419f5eb63cf743a1a0f2a80ea5dde37fd1a4fec0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom b/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom deleted file mode 100644 index 6314d16da6c064ae0161dccb3fa6f2ca397d2faf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-aether-provider - - Maven Aether Provider - - This module provides extensions to Aether for utilizing the Maven POM and Maven metadata. - - - - - org.apache.maven - maven-model-builder - - - org.apache.maven - maven-repository-metadata - - - org.sonatype.aether - aether-api - - - org.sonatype.aether - aether-util - - - org.sonatype.aether - aether-impl - - - org.codehaus.plexus - plexus-component-annotations - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 deleted file mode 100644 index 945c00a24c4b32dfadcd1ee12e94e5b969ee0af2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a3e7fa0d4d0d26f901c919173681bab824c5588c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/_remote.repositories deleted file mode 100644 index b48131b38f027d47fe8afedc05ff29d17a9a900e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-aether-provider-3.2.1.jar>repo.jenkins-ci.org= -maven-aether-provider-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar b/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar deleted file mode 100644 index f53f35dfe5566eace3251da61185e4a634c303ba..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar.sha1 deleted file mode 100644 index 72165ba0635963ea4691c8dfb8232c730a039c01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ab57cafec4e9c2650df963d83cb173d311fcadf0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom b/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom deleted file mode 100644 index f9f16737ee9065a0bdfdac267a791487bc6271d0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.2.1 - - - maven-aether-provider - - Maven Aether Provider - Extensions to Aether for utilizing Maven POM and repository metadata. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.2.1 - - - - - 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 - - - org.sonatype.sisu - sisu-guice - no_aop - true - - - aopalliance - aopalliance - - - - - - org.eclipse.aether - aether-connector-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.2.1/maven-aether-provider-3.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom.sha1 deleted file mode 100644 index 0ea731831979ca973ec802fde4333b82dcc432c9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f23de711bad770bc374fa4d3c669bb2e1942f705 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-archiver/2.5/_remote.repositories deleted file mode 100644 index 906864b67080045323fd2d742fa3649a5e7af977..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-archiver/2.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:58 CST 2019 -maven-archiver-2.5.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar b/artifacts/m2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar deleted file mode 100644 index 95e716e1681a2f650145af81caa7862400890f90..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 deleted file mode 100644 index 63fbb3c4da1f933fa2414294376d9beb54c7f57b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-archiver/2.5/maven-archiver-2.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c999ae305f22ecfc5a000dca12a39b9491778bd5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-archiver/2.6/_remote.repositories deleted file mode 100644 index 1864af683d98e4cf8ba3423d8e1310f877157d39..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-archiver/2.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:24 CST 2019 -maven-archiver-2.6.jar>repo.jenkins-ci.org= -maven-archiver-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar b/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar deleted file mode 100644 index 794f689087dd3b0bc12d8c151dd3525f76f2cdf4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar.sha1 deleted file mode 100644 index 71968e608af69bd5f164bf3a6112e72e3916a3ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0f87fd4d03b9f0c09908c4d0c398acd501a11d8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom b/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom deleted file mode 100644 index 905b4bc890a65eeedecf2f61bb15b43a0e665b5f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom +++ /dev/null @@ -1,118 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 20 - ../maven-shared-components/pom.xml - - - org.apache.maven - maven-archiver - 2.6 - - Apache Maven Archiver - Provides utility methods for creating JARs and other archive files from a Maven project. - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-archiver-2.6 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-archiver-2.6 - http://svn.apache.org/viewvc/maven/shared/tags/maven-archiver-2.6 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13268 - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - - - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - provided - - - org.apache.maven - maven-artifact-manager - - - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven.shared - maven-shared-utils - 0.7 - - - - org.codehaus.plexus - plexus-archiver - 2.8.1 - - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.codehaus.plexus - plexus-interpolation - 1.21 - - - junit - junit - 4.10 - test - - - - diff --git a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom.sha1 deleted file mode 100644 index d25ec7e9dc8a41a8287b811b1db64c91a434f872..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4ec1cabb4e850b9f5c36761dbf07915f2445d8c1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/_remote.repositories deleted file mode 100644 index a1694f671b6245b7d49541b7193b39fa0b420f8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:55 CST 2019 -maven-artifact-manager-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom deleted file mode 100644 index 8e8100f2018e4f5513bf052613692d15fb6bbd26..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-artifact-manager - Maven Artifact Manager - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven.wagon - wagon-file - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom.sha1 deleted file mode 100644 index 55ba444c57ea92c34d92feae75ccaab1c5298a51..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -46d1bab9afd325c06e6c26510215949f955e7636 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/_remote.repositories deleted file mode 100644 index e62835dfdf51c7938c67a35aff0e116979f8dd17..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-artifact-manager-2.0.2.jar>repo.jenkins-ci.org= -maven-artifact-manager-2.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar deleted file mode 100644 index 717d59ae212029b4fcea09b634b6a6a4bffff7db..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar.sha1 deleted file mode 100644 index fcabd0d5bba46492ddb01457b51e57506431b3b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -982eee8d0feb92587beb60874c731febc6d9ed9d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom deleted file mode 100644 index 7b7d0214623671eb18aaac7c6e51bea3b9bf7360..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - maven - org.apache.maven - 2.0.2 - - 4.0.0 - org.apache.maven - maven-artifact-manager - Maven Artifact Manager - 2.0.2 - http://maven.apache.org - - - org.apache.maven - maven-repository-metadata - 2.0.2 - - - org.apache.maven.wagon - wagon-file - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - 2.0.2 - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 deleted file mode 100644 index c6ffd843b0c501b9df67a38c94a44d8860b840e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -157c24fb3ec09b9a693f88dc571fc17ed0669cca \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/_remote.repositories deleted file mode 100644 index 4be77943580f822ab77692394f965d586ca51794..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:49 CST 2019 -maven-artifact-manager-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom deleted file mode 100644 index 2efd193fe313fdb20df6523a92e0958a20b05ff5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-artifact-manager - Maven Artifact Manager - 2.0.5 - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - - - org.apache.maven - maven-repository-metadata - 2.0.5 - - - org.apache.maven.wagon - wagon-file - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - 2.0.5 - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - easymock - easymock - 1.2_Java1.3 - test - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 deleted file mode 100644 index d6a405fbf111679ea4da2116d178374f7028df76..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc2c71211f52ada0389f3d2c9de16dd1429eccd7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories deleted file mode 100644 index 83bfc1e64159319ef66f1794c1009645e9c32520..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-artifact-manager-2.0.6.jar>repo.jenkins-ci.org= -maven-artifact-manager-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar deleted file mode 100644 index c2ac7f8b83bf34921718da21aef2d155700a6d31..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar.sha1 deleted file mode 100644 index 217d83d1572184f32a443d25fb1169187f8ca41d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -dc326c3a989c10618e09a7b77cadeff297591942 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom deleted file mode 100644 index 1ba599298ba9e900cb46bbdbac7f1fdd6761214b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-artifact-manager - Maven Artifact Manager - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven.wagon - wagon-file - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 deleted file mode 100644 index 14cb0bcc599ddd08702679c112a1b27e540680cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8cb8b1dc4d9f7fbd90be4e9c8e9a1d353e28666c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/_remote.repositories deleted file mode 100644 index 446116118aea3c7b8ba4729dd75f53a724a79d92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-artifact-manager-2.0.8.jar>repo.jenkins-ci.org= -maven-artifact-manager-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar deleted file mode 100644 index 9a952bd5412e64c7f91259a96a8740a9b9dd6716..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar.sha1 deleted file mode 100644 index 1d5232eae226e09324203ce9d00d92412617fe5a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -bb5ba069e3460450b139075b91f27f7bd4007877 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom deleted file mode 100644 index f03f376bbddeba43b1fc096665a99a372fc2c3da..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-artifact-manager - Maven Artifact Manager - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven.wagon - wagon-file - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 deleted file mode 100644 index 5d0bc60dd36168015af558dc646211a550b42236..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5c9b2820e6abe0c070c0dedfdacf642a85abf2e6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories deleted file mode 100644 index ef4e46c32736625199cb49960e2843b0a5384b77..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-artifact-manager-2.0.9.jar>repo.jenkins-ci.org= -maven-artifact-manager-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar deleted file mode 100644 index afef6049547b70c329bbcdcd28f052d1a9da6ba6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar.sha1 deleted file mode 100644 index d4d45460d1815f2917c8beb3e42f00aa2485ed09..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -53224a5254101fb9b6d561d5a53c6d0817036d94 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom deleted file mode 100644 index f64db8e2616102a8de55ba1f557ac465342af45b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-artifact-manager - Maven Artifact Manager - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven.wagon - wagon-file - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 deleted file mode 100644 index 974c4bbf2347c0dae198bc30ccbb3d3ed3054fb9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -84c14dcd1d85eebccbba665f95057b5748f51d83 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/_remote.repositories deleted file mode 100644 index 0bb8117c7802b08eb07ef12980f0e801c61ec106..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:45 CST 2019 -maven-artifact-manager-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom deleted file mode 100644 index b185761a40033eb68831dd05b04f2250dc631497..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.0 - - - maven-artifact-manager - - Maven Artifact Manager - - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven.wagon - wagon-file - test - - - org.apache.maven.wagon - wagon-http - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - backport-util-concurrent - backport-util-concurrent - - - easymock - easymock - 1.2_Java1.3 - test - - - edu.umd.cs.mtc - multithreadedtc-jdk14 - 1.01 - test - - - - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 deleted file mode 100644 index bbf056deca229187f9d58cceb391f3b5ddc3ff91..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -91b2c4b9a4cb63846da595ff15df78ebc7f1b31f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories deleted file mode 100644 index 1400f4313b4d1caaaa33ff8e30b72edef83c2b26..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-artifact-manager-2.2.1.jar>repo.jenkins-ci.org= -maven-artifact-manager-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar deleted file mode 100644 index 181bc39b65bd8b39dbb6afc04384f0af61d40910..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar.sha1 deleted file mode 100644 index 62da1572c966aeeee612d62e8c170906e487258c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ec355b913c34d37080810f98e3f51abecbe1572b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom deleted file mode 100644 index 81ab2d2e21d9b15915344de368820d014133ef4c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-artifact-manager - - Maven Artifact Manager - - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven.wagon - wagon-file - test - - - org.apache.maven.wagon - wagon-http - test - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven.wagon - wagon-provider-api - - - backport-util-concurrent - backport-util-concurrent - - - easymock - easymock - 1.2_Java1.3 - test - - - edu.umd.cs.mtc - multithreadedtc-jdk14 - 1.01 - test - - - - - - - - maven-surefire-plugin - - - **/testutils/** - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom.sha1 deleted file mode 100644 index af578819cf40380ab7beb18592d6c7cdcd8d8148..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -062f05a1fc0a40a6ea8fc8f0a1e9e2c02057ebaf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/_remote.repositories deleted file mode 100644 index 5e6b2363767a9e5e1c8805e8d571e3293292cc52..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:57 CST 2019 -maven-artifact-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom deleted file mode 100644 index 5354489585214fed770afafcd1b39d9548d46736..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-artifact - Maven Artifact - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom.sha1 deleted file mode 100644 index 7f5c1073029f6a53ec167e6adf19bf56b67e2c34..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -79570a5cf88d69f6472f9b65f86372b6d84a4254 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/_remote.repositories deleted file mode 100644 index 58c171cb4042f32b3f232d83e1d480e1e047e003..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:36 CST 2019 -maven-artifact-2.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom deleted file mode 100644 index b08ef7db9b21e8ff4b2f7387db21329008a22ce2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom +++ /dev/null @@ -1,26 +0,0 @@ - - - maven - org.apache.maven - 2.0.2 - - 4.0.0 - org.apache.maven - maven-artifact - Maven Artifact - 2.0.2 - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 deleted file mode 100644 index 28b8def612588d59ccd1d86809402d45a32bc922..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a8b0aa4f932e948f979c872326a5ac9d7f4e123c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/_remote.repositories deleted file mode 100644 index 159001e4ba94aeb65b3e75de877f46bcb6184ba7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:50 CST 2019 -maven-artifact-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom deleted file mode 100644 index 60889b98d0565e57ea1a7c00c49103c2cd8f51fc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom +++ /dev/null @@ -1,25 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-artifact - Maven Artifact - 2.0.5 - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 deleted file mode 100644 index 015b51f5972f27e10e5e6679c14f7af1b69d0780..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d4b90628e1e33c3d2319aa3279f6498905fb7bd8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/_remote.repositories deleted file mode 100644 index 5d64eeca58246278f9b53d08395f42d2e4639788..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:17 CST 2019 -maven-artifact-2.0.6.jar>repo.jenkins-ci.org= -maven-artifact-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar deleted file mode 100644 index e6f60b75ab2d74b95a199a8246f47428be34bbdc..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar.sha1 deleted file mode 100644 index d0e2c44287e1a78de6eec1be9fab46b9018396b3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fcbf6e26a6d26ecaa25c199b6f16bf168b2f28dc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom deleted file mode 100644 index b351bc253abdd87781123597078fb02fc2912f99..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-artifact - Maven Artifact - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 deleted file mode 100644 index f1af079fcdd6510b45f79549cf67aae2bad104e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -973c14299a051daf4e767cc60f15788b50c887f2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/_remote.repositories deleted file mode 100644 index 305220cbe26f8329bd7ca9c46daa662c1de4af01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:54 CST 2019 -maven-artifact-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom deleted file mode 100644 index 9f6cf3def07eafdba93a30d00a49e1f116d2ae96..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-artifact - Maven Artifact - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 deleted file mode 100644 index 7df4a43a33906f7d742434a9ece137e0a5fd6726..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -351f42403e36c8661e8f0a8489bf537ba31ab17a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/_remote.repositories deleted file mode 100644 index 4b2ab425ab05d9e0002c67adffc48c4cbcb8fe6f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:39 CST 2019 -maven-artifact-2.0.9.jar>repo.jenkins-ci.org= -maven-artifact-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar deleted file mode 100644 index 3df080b1a8394c3e7d52f5057ec55bdde5cb0bfc..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar.sha1 deleted file mode 100644 index 19da421fd18fbac89a2ab8a73a67eacdb7797da2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -66f0c8baa789fffdf54924cf395b26bbc2130435 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom deleted file mode 100644 index c76bdec2256952bd735696bb5f7d567c8bf122e3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-artifact - Maven Artifact - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 deleted file mode 100644 index 6264aafefa4f211b0aef2bf08591c9dacb55d8d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ffc6bb3eabd75a28d704e0431e7a44e7b4dff9bd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/_remote.repositories deleted file mode 100644 index e8f0902df101568962c8f0297ac3e9f3fcbe18e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-artifact-2.2.1.jar>repo.jenkins-ci.org= -maven-artifact-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar deleted file mode 100644 index abab479b6ce79bcce185a43af4568f8464c40446..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar.sha1 deleted file mode 100644 index a75c6540e6b0bb55b42ab95f626e43eec2b3064e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -23600f790d4dab2cb965419eaa982e3e84c428f8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom deleted file mode 100644 index c77eabcfd5c62474f0c900a2d41e707bfb8c1003..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom +++ /dev/null @@ -1,43 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-artifact - - Maven Artifact - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 deleted file mode 100644 index 6919fb327a8c84acf041df98fc291545084c3e2e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e37430ef3c3ee1d33817fdb45a0e538f49932c0a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/3.0/_remote.repositories deleted file mode 100644 index 7d296b23e5be57767e62736515f8a1e42c1bf3ff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-artifact-3.0.jar>repo.jenkins-ci.org= -maven-artifact-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar b/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar deleted file mode 100644 index 824aec540cdde7740e2c2eb54b83d6162747f9c1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar.sha1 deleted file mode 100644 index f20a6a5d64834af196694955863eaf8d6c6021b3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c29cfa43ce2ba09975a07c40d7241655d7c2fa29 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom b/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom deleted file mode 100644 index 238008276cd936ec84a2bbd67c8d66be593b94fb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-artifact - - Maven Artifact - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 deleted file mode 100644 index 8dd6677b51546ff33b76ea1dd1c50ee4545a2666..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6823c7ad1a5557c2f96bd2fd312948513af8e524 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/_remote.repositories deleted file mode 100644 index e96cf4fbbea03d5b880f1d4b01a2d1a74948b702..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:36 CST 2019 -maven-artifact-3.1.1.jar>repo.jenkins-ci.org= -maven-artifact-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar deleted file mode 100644 index c44f71b7d0a5f5b1c754254fd6d3e7a26556dd98..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar.sha1 deleted file mode 100644 index 3644536a3db49b6b53592423a5bf4705ae014161..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -dbd94f0744545e17caa51db6fc493fc736361837 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom deleted file mode 100644 index 673540c62affb9fa7c0db7938d70762ce7b3c0ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-artifact - - Maven Artifact - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - diff --git a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom.sha1 deleted file mode 100644 index d6760b6d290fd90f63b96cb3eef03b6355f3ab7e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -46d62b88179ee741c0772f4eb959dc23ef403a03 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-compat/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-compat/3.0/_remote.repositories deleted file mode 100644 index 30806f1ccd6a2670faba9bbe770421f93bae4b82..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-compat/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-compat-3.0.jar>repo.jenkins-ci.org= -maven-compat-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar b/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar deleted file mode 100644 index 29c4db13f55218a53ba24a3ff2d7dd03dd7619c4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar.sha1 deleted file mode 100644 index d91749857b03927ed9f0c0732924f4a4a6907607..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -475f94b86858a1d4660c4b4523aa3362f28d9317 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom b/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom deleted file mode 100644 index c2ef3b4d485c481d36d57519a5e3c14d4e4163ac..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-compat - - Maven Compat - - - - org.apache.maven - maven-model - - - org.apache.maven - maven-model-builder - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact - - - org.apache.maven - maven-core - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-interpolation - - - org.sonatype.sisu - sisu-inject-plexus - - - org.codehaus.plexus - plexus-component-annotations - - - org.apache.maven.wagon - wagon-provider-api - - - org.apache.maven.wagon - wagon-file - test - - - org.sonatype.aether - aether-connector-wagon - ${aetherVersion} - test - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/profiles.mdo - src/main/mdo/paramdoc.mdo - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 deleted file mode 100644 index 06bbf3560855f285b1f14fad89556896841f5832..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d80e73e5627180e3eaf021d63fabaddd6a75a6f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-core/2.0.6/_remote.repositories deleted file mode 100644 index 2a592306feb2d30a259d3751c86df42e5f2b3014..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:18 CST 2019 -maven-core-2.0.6.jar>repo.jenkins-ci.org= -maven-core-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar deleted file mode 100644 index 3710864996a461cc3c29ddb36d5ae101383b1c5c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar.sha1 deleted file mode 100644 index b5faad4d1d30d2038ab99a55f6ce1b20cd7715ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -33b78ed70029bfca9fadee5c8e7c9b27b9a39443 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom deleted file mode 100644 index 15446099e072ee97f10265406b4aad27b9a40863..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-core - Maven Core - - - - maven-assembly-plugin - - src/assemble/bin.xml - maven-${version} - - - - install - - attached - - - - - - shade-maven-plugin - org.codehaus.mojo - - - package - - shade - - - - - classworlds:classworlds - junit:junit - jmock:jmock - xml-apis:xml-apis - - - - - org.codehaus.plexus.util - - org.codehaus.plexus.util.xml.Xpp3Dom - org.codehaus.plexus.util.xml.pull.* - - - - - - - - - - - - org.apache.maven - maven-settings - - - org.apache.maven.wagon - wagon-file - runtime - - - org.apache.maven - maven-plugin-parameter-documenter - - - org.apache.maven.wagon - wagon-http-lightweight - runtime - - - org.apache.maven.reporting - maven-reporting-api - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact - - - org.apache.maven.wagon - wagon-provider-api - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven - maven-repository-metadata - 2.0.6 - - - org.apache.maven - maven-error-diagnostics - 2.0.6 - - - org.apache.maven - maven-project - - - commons-cli - commons-cli - 1.0 - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven.wagon - wagon-ssh-external - runtime - - - org.apache.maven - maven-plugin-descriptor - 2.0.6 - - - org.codehaus.plexus - plexus-interactivity-api - 1.0-alpha-4 - - - plexus-utils - plexus - - - plexus-container-default - org.codehaus.plexus - - - - - org.apache.maven - maven-artifact-manager - - - org.apache.maven - maven-monitor - - - org.apache.maven.wagon - wagon-ssh - runtime - - - org.codehaus.plexus - plexus-utils - - - classworlds - classworlds - - - diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 deleted file mode 100644 index b83597dc37516b73036494dc6f0c4e37043e32c0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b02365ee1822cff5839d9f85bc9b1cbfab9f5674 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-core/2.0.9/_remote.repositories deleted file mode 100644 index d9ca90838aa1ed9d9b2943e30ac975972e483c94..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:40 CST 2019 -maven-core-2.0.9.jar>repo.jenkins-ci.org= -maven-core-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar deleted file mode 100644 index 7f22694f3ea1a4cc4db58c892aa70fcbaf539347..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar.sha1 deleted file mode 100644 index 9206b49f7873359d35e3b00958fc1121752b4845..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e1003a0a66dae77515259c5e591ea1cfd73c2859 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom deleted file mode 100644 index 227a62291709241bd30a0ca1c50e561a6310ff46..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom +++ /dev/null @@ -1,227 +0,0 @@ - - - 4.0.0 - - maven - org.apache.maven - 2.0.9 - - - maven-core - Maven Core - - - - - - org.apache.maven - maven-settings - - - org.apache.maven.wagon - wagon-file - runtime - - - org.apache.maven - maven-plugin-parameter-documenter - - - org.apache.maven.wagon - wagon-webdav - runtime - - - org.apache.maven.wagon - wagon-http-lightweight - runtime - - - org.apache.maven.reporting - maven-reporting-api - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact - - - org.apache.maven.wagon - wagon-provider-api - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven - maven-error-diagnostics - - - org.apache.maven - maven-project - - - commons-cli - commons-cli - 1.0 - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven.wagon - wagon-ssh-external - runtime - - - org.apache.maven - maven-plugin-descriptor - - - org.codehaus.plexus - plexus-interactivity-api - 1.0-alpha-4 - - - plexus-utils - plexus - - - plexus-container-default - org.codehaus.plexus - - - - - org.apache.maven - maven-artifact-manager - - - org.apache.maven - maven-monitor - - - org.apache.maven.wagon - wagon-ssh - runtime - - - org.codehaus.plexus - plexus-utils - - - classworlds - classworlds - - - - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-1 - - - el - de - es - fr - ja - nl - no - pl - zh_CN - - - - - - - - - include-site - - - - org.apache.maven.plugins - maven-scm-plugin - - scm:svn:http://svn.apache.org/repos/asf/maven/site/trunk - ${project.build.directory}/maven-site - - - - initialize - - checkout - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${project.build.directory}/maven-site - ${project.build.directory}/maven-site/pom.xml - - clean - site - - - - - initialize - initialize - - run - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 deleted file mode 100644 index df704ff9360f0e8ff92add16506dedf866fb8d5b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6a37522ee27ae8c8d031d765aabde8da7c975baa \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-core/2.2.1/_remote.repositories deleted file mode 100644 index a1006df21c177535d7f4c1da412bb3a7a11dcf4b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-core-2.2.1.jar>repo.jenkins-ci.org= -maven-core-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar deleted file mode 100644 index 2d299621db9cf4fc1e621d21587207b0f403087f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar.sha1 deleted file mode 100644 index 03f33e9a7d576b358cc567940d51acc937bee2a7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6f488e461188496c62e161f32160b3465ce5901e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom deleted file mode 100644 index e1bcb30b560c947e0dcacf470b8f43641a2b01d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom +++ /dev/null @@ -1,369 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-core - - Maven Core - - - - org.apache.maven - maven-settings - - - org.apache.maven.wagon - wagon-file - runtime - - - org.apache.maven - maven-plugin-parameter-documenter - - - - org.apache.maven.wagon - wagon-http-lightweight - - - org.apache.maven.wagon - wagon-http - - - commons-logging - commons-logging - - - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - runtime - - - commons-logging - commons-logging - - - - - org.slf4j - slf4j-jdk14 - runtime - - - org.slf4j - jcl-over-slf4j - runtime - - - org.apache.maven.reporting - maven-reporting-api - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact - - - org.apache.maven.wagon - wagon-provider-api - - - org.codehaus.plexus - plexus-container-default - - - org.apache.maven - maven-repository-metadata - - - org.apache.maven - maven-error-diagnostics - - - org.apache.maven - maven-project - - - commons-cli - commons-cli - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven.wagon - wagon-ssh-external - runtime - - - org.apache.maven - maven-plugin-descriptor - - - org.codehaus.plexus - plexus-interactivity-api - 1.0-alpha-4 - - - plexus-utils - plexus - - - plexus-container-default - org.codehaus.plexus - - - - - org.apache.maven - maven-artifact-manager - - - org.apache.maven - maven-monitor - - - org.apache.maven.wagon - wagon-ssh - - - - org.codehaus.plexus - plexus-utils - - - classworlds - classworlds - - - org.sonatype.plexus - plexus-sec-dispatcher - - - - - - - src/main/resources - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - - default - - 1.5 - 1.5 - - **/cli/*.java - - - - - cli - - compile - testCompile - - - 1.4 - 1.4 - - **/cli/*.java - - - - - - - - - - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-1 - - - el - de - es - fr - ja - nl - no - pl - zh_CN - - - - - - - - - include-site - - - - org.apache.maven.plugins - maven-scm-plugin - - scm:svn:http://svn.apache.org/repos/asf/maven/site/trunk - ${project.build.directory}/maven-site - - - - initialize - - checkout - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${project.build.directory}/maven-site - ${project.build.directory}/maven-site/pom.xml - - clean - site - - - - - initialize - initialize - - run - - - - - - - - - canonical-buildnumber - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0-beta-1 - - - generate-resources - - create - - - - - false - false - - - - - - - non-canonical-buildnumber - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0-beta-1 - - - generate-resources - - create - - - - - false - false - NON-CANONICAL_{0,date,yyyy-MM-dd_HH-mm}_{1} - - timestamp - ${user.name} - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom.sha1 deleted file mode 100644 index 56221fcc1fb2cb44f143cab2e19dfcd366a744d6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c7312a507d519047be160bab5cbb56c07d0247a1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-core/3.0/_remote.repositories deleted file mode 100644 index 5654025c5dd525428ed97bb876ccf118e8e094e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:40 CST 2019 -maven-core-3.0.jar>repo.jenkins-ci.org= -maven-core-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar b/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar deleted file mode 100644 index 9698cdd005ef2b99385344875afc4a1b155d2eb2..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar.sha1 deleted file mode 100644 index 6907cd677fc5eb21a016c16cb5a330eef075ec0b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -73728ce32c9016c8bd05584301fa3ba3a6f5d20a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom b/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom deleted file mode 100644 index db9e82eb6c1033cb8762ec6910f71df959efde1c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-core - - Maven Core - - - - - 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 - runtime - - - org.sonatype.aether - aether-impl - ${aetherVersion} - - - org.sonatype.aether - aether-api - ${aetherVersion} - - - org.sonatype.aether - aether-util - ${aetherVersion} - - - - org.sonatype.sisu - sisu-inject-plexus - - - 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 - - - commons-jxpath - commons-jxpath - test - - - - - - - src/main/resources - true - - - - - org.codehaus.plexus - plexus-component-metadata - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/toolchains.mdo - - - - - - - - - svn-buildnumber - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0-beta-4 - - - generate-resources - - create - - - - - false - false - - javasvn - - - - - - - - non-canonical-buildnumber - - - .svn - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0-beta-1 - - - generate-resources - - create - - - - - false - false - NON-CANONICAL_{0,date,yyyy-MM-dd_HH-mm}_{1} - - timestamp - ${user.name} - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 deleted file mode 100644 index e61336188b811814651b7d0bd330cbc471f895bd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3727542038487060064a4a14b74c7590d364c45b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-core/3.1.1/_remote.repositories deleted file mode 100644 index 14fecec56fb1ab6e8f6d39957cf189d6da5ea145..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:39 CST 2019 -maven-core-3.1.1.jar>repo.jenkins-ci.org= -maven-core-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar deleted file mode 100644 index 3c16d621c77daf9104298bcde530be262f96e940..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar.sha1 deleted file mode 100644 index 48ba21a3e8f42401de9d59054b4f75425fd5bc60..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ab7a9b58a1a4dec17facebda058d1da2a34871ff \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom deleted file mode 100644 index 713ffccb82f2c89676883b1be07f0060783cb1c1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-core - - Maven Core - Maven Core classes. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - - 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 - - - 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 - - - commons-jxpath - commons-jxpath - 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.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/toolchains.mdo - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - create-noncanonicalrev - - create-timestamp - - - 'NON-CANONICAL_'yyyy-MM-dd_HH-mm_'${user.name}' - nonCanonicalRevision - - - - create-buildnumber - - create - - - false - false - ${nonCanonicalRevision} - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom.sha1 deleted file mode 100644 index 0a59afad7360b5d0922e8fee8288bacbb5496f3d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7693daf50b79dcebd24bff6471406964408523f8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories deleted file mode 100644 index 4300b3a918a38cc92033d39a993c65b580e10018..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-error-diagnostics-2.0.6.jar>repo.jenkins-ci.org= -maven-error-diagnostics-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar deleted file mode 100644 index d60689747372f6f0b6d1767dd53ba1e1f7e87c92..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar.sha1 deleted file mode 100644 index 5f85a2db1ea2d0f78625d7d24033bdeb72971ab1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -49f5380c07a79cd91ee09e0cb9063764f1f6525c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom deleted file mode 100644 index 172f610e76672c346119d00994ac530d1aa7738d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-error-diagnostics - Maven Error Diagnostics - Provides a manager component which will process a given Throwable instance through a set of diagnostic - sub-components, and return a String message with user-friendly information about the error and possibly - how to fix it. - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 deleted file mode 100644 index fa7750bc3bcada9cb8a803f6b3412bb48d39f884..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -31c0ce961dfc5b491e92ad0804dd48840dac7796 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories deleted file mode 100644 index fa1275bfc079c2f9d37aec194deb388698805bab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-error-diagnostics-2.0.9.jar>repo.jenkins-ci.org= -maven-error-diagnostics-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar deleted file mode 100644 index 438c209756cd7c028970ed4669e0ba195e8b7e98..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar.sha1 deleted file mode 100644 index bcb85dd8b5ffc316fe643647599c906e72c9beb4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -46cc6b69beebc7bbf59c4f3842f72f2c1942e8e5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom deleted file mode 100644 index 8f7bda454816458de1a70a5228ec7542cbc66729..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-error-diagnostics - Maven Error Diagnostics - Provides a manager component which will process a given Throwable instance through a set of diagnostic - sub-components, and return a String message with user-friendly information about the error and possibly - how to fix it. - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 deleted file mode 100644 index 3203bbd0d351ec7ebdd2e9dafd30f05e15a63eaa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd562ddf84fc56b0693b42184a27d86d126ef02b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories deleted file mode 100644 index 7abfbef8498cdbce84596228dd48666238ab5801..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-error-diagnostics-2.2.1.jar>repo.jenkins-ci.org= -maven-error-diagnostics-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar deleted file mode 100644 index 9daada24d00057ff5bb5c879d148fc600c4fdb7d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar.sha1 deleted file mode 100644 index 987af60bd2d6c591b2282cf8fcc85bdd09c0e7f9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e81bb342d7d172f23d108dc8fa979a1facdcde8e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom deleted file mode 100644 index 02d5eed72f900accee7338802773fe66d692d01e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-error-diagnostics - - Maven Error Diagnostics - Provides a manager component which will process a given Throwable instance through a set of diagnostic - sub-components, and return a String message with user-friendly information about the error and possibly - how to fix it. - - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom.sha1 deleted file mode 100644 index 6b416c05e36e6d0b43a104bfb8f3bb58ae07a6a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5074991d8d14a88e7c8bff294639a254d7ef387a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model-builder/3.0/_remote.repositories deleted file mode 100644 index e2c183bf194466b72c7bf79df8adea8db422edbc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-model-builder-3.0.jar>repo.jenkins-ci.org= -maven-model-builder-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar b/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar deleted file mode 100644 index ea9a50fbfd39ba9dcefba8b0b079ea4c9bf96cce..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar.sha1 deleted file mode 100644 index a13f4796e443085ad9be758e06fc463367f8663e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -bedc161a3b07a4bcd175b9428cdf18725d292b37 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom b/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom deleted file mode 100644 index 6723372b1ba06f102474ed4334cc49d3a14595ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-model-builder - - Maven Model Builder - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-component-annotations - - - org.apache.maven - maven-model - - - org.sonatype.sisu - sisu-inject-plexus - test - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 deleted file mode 100644 index 2e545f5ea022a0da2d5c4221afcdb1e9a1cef877..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e4b3e5ffec18728f099d8000e400ac763af2cc20 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/_remote.repositories deleted file mode 100644 index a737ca25538ec1c8e37bce9f7d0ce44c08f35149..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-model-builder-3.1.1.jar>repo.jenkins-ci.org= -maven-model-builder-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar deleted file mode 100644 index 5f4c816c3a0ac90341daff722e0dc6acdcd64a9b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar.sha1 deleted file mode 100644 index d3beccd6b3c0ffc12272375808c32de515908fb6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5fb53c92da84ebeff403414b667611d6bcd477cf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom deleted file mode 100644 index 9150460dc7352939c9277989eb7f42c66ef015e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-model-builder - - Maven Model Builder - The effective model builder, with inheritance, profile activation, interpolation, ... - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-component-annotations - - - org.apache.maven - maven-model - - - - org.eclipse.sisu - org.eclipse.sisu.plexus - test - - - xmlunit - xmlunit - 1.3 - test - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom.sha1 deleted file mode 100644 index 431b1c652f8ccb0a89fa8ffd426f45bcfc924c84..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00b55e85ae9eb0b6642c9c22f54ed844e5d4a26d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/_remote.repositories deleted file mode 100644 index baaa2ec47eedbc021cca6629191403a0ed81565b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:02 CST 2019 -maven-model-builder-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom b/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom deleted file mode 100644 index 053c86cff6e018f45747910f0ef91e3f516ed8fe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.2.1 - - - maven-model-builder - - Maven Model Builder - The effective model builder, with inheritance, profile activation, interpolation, ... - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.2.1 - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-component-annotations - - - org.apache.maven - maven-model - - - - org.eclipse.sisu - org.eclipse.sisu.plexus - test - - - xmlunit - xmlunit - 1.3 - test - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom.sha1 deleted file mode 100644 index 895657011a45fffd6d7c184dcdb58c359db071e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3ba8977b91655fa79f79e7e3b286a2479ef17eda \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.0.10/_remote.repositories deleted file mode 100644 index 0cdfc15682f61d201ae70589104539248309386c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:52 CST 2019 -maven-model-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom deleted file mode 100644 index c8ec3aa482c21d76993e0b5c3b6dd74ca15b05f9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-model - Maven Model - Maven Model - - - - org.codehaus.modello - modello-maven-plugin - - 4.0.0 - - src/main/mdo/maven.mdo - - - - - maven-pmd-plugin - 2.4 - - true - - - - - - - all-models - - - - org.codehaus.modello - modello-maven-plugin - - - v3 - - xpp3-writer - java - xpp3-reader - xsd - - - 3.0.0 - true - - - - - - maven-jar-plugin - - - package - - jar - - - all - - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom.sha1 deleted file mode 100644 index 4e49c9b002fbdeb67b0639b367228a68a6a6aab2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a9d1ee85a9a3194bafc184842ce9054f191523d9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.0.5/_remote.repositories deleted file mode 100644 index 0687d8bf2ce69a38f4adff819132f90df012e8d9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:48 CST 2019 -maven-model-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom deleted file mode 100644 index 43f0ead1d51f076ec7688253af23bee1c42a3c3a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-model - Maven Model - 2.0.5 - Maven Model - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - - - xpp3-writer - java - xpp3-reader - xsd - - - - site-docs - pre-site - - xdoc - xsd - - - - - 4.0.0 - src/main/mdo/maven.mdo - - - - - - - all-models - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - - v3 - - xpp3-writer - java - xpp3-reader - xsd - - - 3.0.0 - true - - - - - - maven-jar-plugin - - - package - - jar - - - all - - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 deleted file mode 100644 index 30811cbae021589c20ced00cc19bf329271ab61b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0b5c0e9a116a812ef64831e5be5114bb4f518e58 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.0.6/_remote.repositories deleted file mode 100644 index 6ccaa4ad95997a18a505367532b13c628c09b10c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:13 CST 2019 -maven-model-2.0.6.pom>repo.jenkins-ci.org= -maven-model-2.0.6.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar deleted file mode 100644 index 5a7f1cbcb007014e84ff226b366bc0c55cf552c9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar.sha1 deleted file mode 100644 index 905ef1494d4ab6473b330534221f8fd9a5d4bc85..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9649253c0e68a453f388e0a308c0653309f87807 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom deleted file mode 100644 index a9302b858a2df8b281bba974a68f4e4905e9a404..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-model - Maven Model - Maven Model - - - - org.codehaus.modello - modello-maven-plugin - - 4.0.0 - src/main/mdo/maven.mdo - - - - - - - all-models - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - - v3 - - xpp3-writer - java - xpp3-reader - xsd - - - 3.0.0 - true - - - - - - maven-jar-plugin - - - package - - jar - - - all - - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 deleted file mode 100644 index e1f91c0568e3e6c3bc874202274e70a1ec03f6f8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea1dd9b8c7b1c3d2f0bdf314390ed7da7e463460 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.7/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.0.7/_remote.repositories deleted file mode 100644 index 65a523c877503bdc584edd935290c2d6dd86ec05..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:37 CST 2019 -maven-model-2.0.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7.jar b/artifacts/m2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7.jar deleted file mode 100644 index 0ac3b4ba4925992db26db85a98c893b9d45af639..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7.jar.sha1 deleted file mode 100644 index de2943616dc219bf1b98684e27436be3fb666c27..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.7/maven-model-2.0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e811768e34f1c2ec6ef9daa02468b70412547537 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.0.8/_remote.repositories deleted file mode 100644 index e4d0e1d768433149c755790a354d906e49117c4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:56 CST 2019 -maven-model-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom deleted file mode 100644 index b605b722ecdafd193ef3817115252c5ada77cf62..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-model - Maven Model - Maven Model - - - - org.codehaus.modello - modello-maven-plugin - - 4.0.0 - src/main/mdo/maven.mdo - - - - - - - all-models - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - - v3 - - xpp3-writer - java - xpp3-reader - xsd - - - 3.0.0 - true - - - - - - maven-jar-plugin - - - package - - jar - - - all - - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 deleted file mode 100644 index 35f5a561ec8204ee55e6d107ffe34f1c2da0905a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6e51285e0830c3f05999ca4f3175ffc81f0be43b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.0.9/_remote.repositories deleted file mode 100644 index 8b5945dec779c46ee7ecbc4b3f0bcf8349a13b3d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-model-2.0.9.jar>repo.jenkins-ci.org= -maven-model-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar deleted file mode 100644 index 685c3227f1e12506abf92aabe5bb1ad3c6e289ad..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar.sha1 deleted file mode 100644 index b1b62c0add626a895be926e2bc4955e7b5243bd3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9fb844625928dd992842e180853fbb2b197c9a9d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom deleted file mode 100644 index ada66ff29ce732df17081a6d3bd24b361098f7b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-model - Maven Model - Maven Model - - - - org.codehaus.modello - modello-maven-plugin - - 4.0.0 - src/main/mdo/maven.mdo - - - - - - - all-models - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - - v3 - - xpp3-writer - java - xpp3-reader - xsd - - - 3.0.0 - true - - - - - - maven-jar-plugin - - - package - - jar - - - all - - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 deleted file mode 100644 index 62674116eff91856a109c1ecabe42cdf153362d0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0978fe1857f847436fd3c454d25161e26fb2d5ec \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/2.2.1/_remote.repositories deleted file mode 100644 index 7473104698089ebd68dd59a83862be7afb7232ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-model-2.2.1.jar>repo.jenkins-ci.org= -maven-model-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar deleted file mode 100644 index 73175f812db71e93b3cee5e08d3f9b90feab69fa..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar.sha1 deleted file mode 100644 index 7ece44d475f662a677d774602efee70644a5efb5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c0a1c17436ec3ff5a56207c031d82277b4250a29 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom deleted file mode 100644 index 66abbd76ed4d8116f3f2bde709cfd00f644645c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom +++ /dev/null @@ -1,104 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-model - - Maven Model - Maven Model - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.modello - modello-maven-plugin - - 4.0.0 - - src/main/mdo/maven.mdo - - - - - maven-pmd-plugin - 2.4 - - true - - - - - - - - all-models - - - - org.codehaus.modello - modello-maven-plugin - - - v3 - - xpp3-writer - java - xpp3-reader - xsd - - - 3.0.0 - true - - - - - - maven-jar-plugin - - - package - - jar - - - all - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 deleted file mode 100644 index c2b38a039c497ef4e33cde0bd687bcd4f747d62b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -548a7e6354c1bc4a49dbec6bd17b4f8e9310201b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/3.0/_remote.repositories deleted file mode 100644 index be3b91a99d92a138278250a1779594bb37299762..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:38 CST 2019 -maven-model-3.0.pom>repo.jenkins-ci.org= -maven-model-3.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar b/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar deleted file mode 100644 index 7993699606fe82deaea440dca483e6d5690d2d60..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar.sha1 deleted file mode 100644 index ea6827a5741f571654a3e74042915d278adfd7e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -24ce598c94a78341c42556fe9192dad6a2822405 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom b/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom deleted file mode 100644 index e340e0f3ad77ce7c567586c18b2062ae00583ae6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-model - - Maven Model - Maven Model - - - - org.codehaus.plexus - plexus-utils - - - - - - - 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.0/maven-model-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 deleted file mode 100644 index 49b8e08bfbe0f2d7a053d9b08c10f9dd12d5dde3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3aa89da7792286192b860c58841b3907364d33a8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-model/3.1.1/_remote.repositories deleted file mode 100644 index 87aa9dd9b7571f0984bc1790ed1ea3c62c5d1421..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:38 CST 2019 -maven-model-3.1.1.jar>repo.jenkins-ci.org= -maven-model-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar deleted file mode 100644 index e6a788d04c0fce29e8e42be84049ad6221aefceb..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar.sha1 deleted file mode 100644 index 136bdd60d284b6c3fb7795d17d576108d5026c18..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ccf79a1a63ef35de038a4226a952175c4e9f4f59 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom deleted file mode 100644 index 7fd718f7bc95b64dcc548ef4c991b13805ed803b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-model - - Maven Model - Model for Maven POM (Project Object Model) - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - org.codehaus.plexus - plexus-utils - - - - - - - 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.1.1/maven-model-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom.sha1 deleted file mode 100644 index 2fe69cdefb1a87d7581fa91fdc6b4bc4bcdf83e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8dda5a554edf7d4159db58a06f501c1ef074a12 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/_remote.repositories deleted file mode 100644 index 07528fad11b379e1f8a889bf840b1a665311d77e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:27 CST 2019 -maven-monitor-2.0.6.pom>repo.jenkins-ci.org= -maven-monitor-2.0.6.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar deleted file mode 100644 index a7d71f3ed9bf17beb01a09e75ec48f36f450d301..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar.sha1 deleted file mode 100644 index c27e906491e56405f0b7eeddc7b199848cfed2c5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ab682e67281bb025980181c83acbcad19042a342 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom deleted file mode 100644 index 870f86ab35fc138e135358e0a4972597f5fd31ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-monitor - Maven Monitor - diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 deleted file mode 100644 index 622d0ab317dfdb204525c7b84a7d9564bffe0445..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.6/maven-monitor-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7ed6529eefa74ca263b65a7c20adf65af5bacdff \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/_remote.repositories deleted file mode 100644 index b9eeb9103db61aae1cb618a71ef61e4ad5c914ea..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-monitor-2.0.9.jar>repo.jenkins-ci.org= -maven-monitor-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar deleted file mode 100644 index c9911672abcf672d00f9ad6e14346cba83e54573..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar.sha1 deleted file mode 100644 index d9dc9f7a0f1f6531412b7ce05cfefe5c1f8c812d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae55264ab9ffbbfdba08c8c7853bbe4a2dd32e8a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom deleted file mode 100644 index 41eb1fd5a5a0b15fbbd9365e53a0808761be8f97..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-monitor - Maven Monitor - diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 deleted file mode 100644 index a18660caeef00cf7a2c4d4cd0e4ee861462e671e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -872e92b9f9ebed4761ea469c2c385f2ffcd6a589 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/_remote.repositories deleted file mode 100644 index d1a0542fccc0897e29f2371d583d59f1408f0dfc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-monitor-2.2.1.jar>repo.jenkins-ci.org= -maven-monitor-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar deleted file mode 100644 index 9a0de9fcc0dfb702691f172fe355cd377727acd8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar.sha1 deleted file mode 100644 index 35160f6c38e793a89c643eea2921276a14909e6b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -afc57c3a1368cd34caccb638e00523701f398c20 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom deleted file mode 100644 index b1f553e4a66299154be8026e10d28bd580482df7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-monitor - - Maven Monitor - diff --git a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom.sha1 deleted file mode 100644 index 56fbb08fe2725af979c6c149082217a7d7fe7056..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -421fcf473a51d9695d8dfe4f8e977ae38087f2ae \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/10/_remote.repositories deleted file mode 100644 index a319715bfbc00355a36e4dff3523ed33d37ac09c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:26 CST 2019 -maven-parent-10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/10/maven-parent-10.pom b/artifacts/m2/org/apache/maven/maven-parent/10/maven-parent-10.pom deleted file mode 100644 index 436596f34c7df7d7748292be7cd2d064af32aa51..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/10/maven-parent-10.pom +++ /dev/null @@ -1,984 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 4 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 10 - 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. - http://maven.apache.org/ - 2002 - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - hboutemy - Herve Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - PMC Member - - -5 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - - Committer - - +1 - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - oching - Maria Odea B. Ching - - Committer - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rgoers - Ralph Goers - - Committer - - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - ogusakov - Oleg Gusakov - - Committer - - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-10 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-10 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-10 - - - Hudson - http://ci.sonatype.org - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - maven.staging - scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo - - - apache.snapshots - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - UTF-8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.4.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-8 - - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0 - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-21 - - - - - - - - - - - maven-project-info-reports-plugin - 2.1 - - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - - - - - javadoc - test-javadoc - - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 deleted file mode 100644 index 3fdf2d38b01f36712bf650f35dc4ee3d1d0bb8d7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/10/maven-parent-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -281aafa31dfa9544070448ea8f353434f53267e4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/11/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/11/_remote.repositories deleted file mode 100644 index 6581930e2d458d44cc11ad2328e66df189179854..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:50 CST 2019 -maven-parent-11.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/11/maven-parent-11.pom b/artifacts/m2/org/apache/maven/maven-parent/11/maven-parent-11.pom deleted file mode 100644 index 1e6a23d9423613609f97ab03067a146c18ea57fe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/11/maven-parent-11.pom +++ /dev/null @@ -1,985 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 5 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 11 - 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. - http://maven.apache.org/ - 2002 - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - bentmann - Benjamin Bentmann - bentmann@apache.org - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - hboutemy - Herve Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - PMC Member - - -5 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - oching - Maria Odea B. Ching - - Committer - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - ogusakov - Oleg Gusakov - - Committer - - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-11 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-11 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-11 - - - Hudson - http://grid.sonatype.org/ci - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - UTF-8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.3 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-docck-plugin - 1.0 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.4.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-8 - - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0 - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-22 - - - - - - - - - - - maven-project-info-reports-plugin - 2.1 - - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - - - - - javadoc - test-javadoc - - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 deleted file mode 100644 index 625c672cf798a5cf7f63bd9accbcbc194055a2fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/11/maven-parent-11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4bb80173fa4979737840fda012af86f5beabf1bc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/15/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/15/_remote.repositories deleted file mode 100644 index 371ddb33ba1afb97d6d01f164c475d9bde0077c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:16 CST 2019 -maven-parent-15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/15/maven-parent-15.pom b/artifacts/m2/org/apache/maven/maven-parent/15/maven-parent-15.pom deleted file mode 100644 index 623be778c5c1404264c0b81364c6faa4b96bbf0e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/15/maven-parent-15.pom +++ /dev/null @@ -1,760 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 6 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 15 - 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. - http://maven.apache.org/ - 2002 - - - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - - PMC Member - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Member - - -5 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - ogusakov - Oleg Gusakov - - Committer - - - - pgier - Paul Gier - pgier@apache.org - - Committer - - -6 - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - stephenc - Stephen Connolly - stephenc@apache.org - - Committer - - 0 - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-15 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-15 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-15 - - - Hudson - http://grid.sonatype.org/ci - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - - - maven-assembly-plugin - 2.2-beta-4 - - - - - - - - apache-release - - - - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.1 - - - - org.codehaus.plexus - plexus-utils - 2.0.1 - - - - - source-release-assembly - package - - single - - - true - - source-release - - gnu - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.3 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.3 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.6.1 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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://plexus.codehaus.org/plexus-utils/apidocs/ - http://plexus.codehaus.org/plexus-classworlds/apidocs/ - http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/ - - - - - - javadoc - test-javadoc - - - - - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 deleted file mode 100644 index b2375b93216e0f659b4bee42143e2f500c468818..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/15/maven-parent-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -63d5a76e7f9d3c6d7870bde13438856ef5300336 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/16/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/16/_remote.repositories deleted file mode 100644 index 7e2226bbcaa1eed4681f390c766f925f0001c0bf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/16/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:23 CST 2019 -maven-parent-16.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/16/maven-parent-16.pom b/artifacts/m2/org/apache/maven/maven-parent/16/maven-parent-16.pom deleted file mode 100644 index 1d33f569491e61096765d5384985c8b6b6bf80dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/16/maven-parent-16.pom +++ /dev/null @@ -1,743 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 7 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 16 - 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. - http://maven.apache.org/ - 2002 - - - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Chair - - -5 - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - - PMC Member - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - jvanzyl - Jason van Zyl - jason@maven.org - Sonatype - - Founder - PMC Member - - -5 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - rgoers - Ralph Goers - rgoers@apache.org - Intuit - -8 - - PMC Member - - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - Committer - - +1 - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - ogusakov - Oleg Gusakov - - Committer - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - Committer - - -6 - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Committer - - +2 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - stephenc - Stephen Connolly - stephenc@apache.org - - Committer - - 0 - - - markh - Mark Hobson - markh@apache.org - - Committer - - 0 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-16 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-16 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-16 - - - Hudson - http://grid.sonatype.org/ci - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.3 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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://plexus.codehaus.org/plexus-utils/apidocs/ - http://plexus.codehaus.org/plexus-classworlds/apidocs/ - http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/ - - - - - - javadoc - test-javadoc - - - - - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 deleted file mode 100644 index f36d5e6167c7db0c4ee0e23eeb85054fb088f978..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/16/maven-parent-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -00fed95187c0c9bfd13c08a858cb6f00245a3fa9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/19/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/19/_remote.repositories deleted file mode 100644 index 6e07ba6cbf06d86b9b0b63ff3ba8328c1d3fbc74..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:30 CST 2019 -maven-parent-19.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/19/maven-parent-19.pom b/artifacts/m2/org/apache/maven/maven-parent/19/maven-parent-19.pom deleted file mode 100644 index cdfe715912a58586a828924c4ab2bd0b6b03e8fd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/19/maven-parent-19.pom +++ /dev/null @@ -1,805 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 9 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 19 - 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. - http://maven.apache.org/ - 2002 - - - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Chair - - -5 - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - - PMC Member - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - Committer - - +1 - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - jvanzyl - Jason van Zyl - jason@maven.org - Sonatype - - Founder - Committer - - -5 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - markh - Mark Hobson - markh@apache.org - - Emeritus - - 0 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - rinku - Rahul Thakur - - Emeritus - - - - shinobu - Shinobu Kuwai - - Emeritus - - - - smorgrav - Torbjorn Eikli Smorgrav - - Emeritus - - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - Emeritus - - +1 - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://old.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://old.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-19 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-19 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-19 - - - Hudson - http://grid.sonatype.org/ci - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - - maven-project-info-reports-plugin - 2.3.1 - - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.7.2 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.5 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - http://download.oracle.com/javase/1.4.2/1.4.2/docs/api - http://download.oracle.com/javaee/1.4/docs/api - http://download.oracle.com/javase/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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://plexus.codehaus.org/plexus-utils/apidocs/ - http://plexus.codehaus.org/plexus-classworlds/apidocs/ - http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/ - - - - - - javadoc - test-javadoc - - - - - - - - - - maven-3 - - - - ${basedir} - - - - - - - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 deleted file mode 100644 index 633701b9750bffc5aa15223d9c3b8b029ebc64b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/19/maven-parent-19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -181554ae180245d7f653f77ff869790c2062f2d0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/21/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/21/_remote.repositories deleted file mode 100644 index afef47775a10ea6c21fa8897984acac38db75966..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/21/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:27 CST 2019 -maven-parent-21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/21/maven-parent-21.pom b/artifacts/m2/org/apache/maven/maven-parent/21/maven-parent-21.pom deleted file mode 100644 index 1c58733b002a6cd46964ed9064c9e42c98d3fb92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/21/maven-parent-21.pom +++ /dev/null @@ -1,883 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 10 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 21 - 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. - http://maven.apache.org/ - 2002 - - - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - - PMC Member - - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - bimargulies - Benson Margulies - bimargulies@apache.org - - Committer - - America/New_York - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - jjensen - Jeff Jensen - - Committer - - - - jvanzyl - Jason van Zyl - - Committer - - -5 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rfscholte - Robert Scholte - rfscholte@apache.org - - Committer - - Europe/Amsterdam - - - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - markh - Mark Hobson - markh@apache.org - - Emeritus - - 0 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://old.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://old.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-21 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-21 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-21 - - - - Jenkins - https://builds.apache.org/hudson/view/M-R/view/Maven - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - https://analysis.apache.org/ - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-plugin-plugin - - true - - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - true - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.2 - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.9 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.7 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8 - - - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://junit.sourceforge.net/javadoc/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 2.5 - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.2 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 deleted file mode 100644 index 5ce498efa69f6c1d720ba13edc03b50525a9d2d1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/21/maven-parent-21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c67574bc9182e790e5d1de3e884f3a91ec693453 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/22/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/22/_remote.repositories deleted file mode 100644 index ca2cdbf645832e063f66548b81e5985f5474619f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/22/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:25 CST 2019 -maven-parent-22.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/22/maven-parent-22.pom b/artifacts/m2/org/apache/maven/maven-parent/22/maven-parent-22.pom deleted file mode 100644 index 5e8cf95fa4142d762d654604549441cda00c619e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/22/maven-parent-22.pom +++ /dev/null @@ -1,966 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 11 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 22 - 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. - http://maven.apache.org/ - 2002 - - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Chair - - Europe/Paris - - - aheritier - Arnaud Héritier - aheritier@apache.org - - PMC Member - - +1 - - - baerrach - Barrie Treloar - - PMC Member - - - - bimargulies - Benson Margulies - bimargulies@apache.org - - PMC Member - - America/New_York - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - bdemers - Brian Demers - Sonatype - bdemers@apache.org - -5 - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - Sonatype - - Committer - - +1 - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - jjensen - Jeff Jensen - - Committer - - - - jvanzyl - Jason van Zyl - - Committer - - -5 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - 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 - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - - - - 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/ - - - - 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 Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://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 - http://mail-archives.apache.org/mod_mbox/maven-dev - - 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 - http://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 - http://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/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-22 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-22 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-22 - - - - Jenkins - https://builds.apache.org/view/M-R/view/Maven - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - https://analysis.apache.org/ - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-plugin-plugin - - true - - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - true - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.5 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.12 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://junit.sourceforge.net/javadoc/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 3.1 - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1 deleted file mode 100644 index 492ab430e02f1c299231d20dad10c6f5b949237b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/22/maven-parent-22.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -631d17baa0701f6bba20d25005c540fd12ebee9a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/23/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/23/_remote.repositories deleted file mode 100644 index cbff27d4378a9f2eff030665c13481bd08d6dfe8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/23/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:02 CST 2019 -maven-parent-23.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/23/maven-parent-23.pom b/artifacts/m2/org/apache/maven/maven-parent/23/maven-parent-23.pom deleted file mode 100644 index 3ed61c2a405143ac65f79f687ce4aa9c74fdf030..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/23/maven-parent-23.pom +++ /dev/null @@ -1,1049 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 13 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 23 - 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. - http://maven.apache.org/ - 2002 - - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Chair - - Europe/Paris - - - 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 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - 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 - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - jjensen - Jeff Jensen - - Committer - - - - jvanzyl - Jason van Zyl - - Committer - - -5 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - 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 - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - - - - 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/ - - - - 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 Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://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 - http://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 - http://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 - http://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/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-23 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-23 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-23 - - - - 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/content - - - - - https://analysis.apache.org/ - ${user.home}/maven-sites - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.2 - provided - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.0 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - true - - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - true - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-release-plugin - 2.3.2 - - true - apache-release,rat - deploy - ${arguments} - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.6 - - false - - - - - index - summary - dependency-info - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - rat - - - - org.apache.rat - apache-rat-plugin - - - verify - - - rat - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.6 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.12.4 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - config/maven_checks.xml - config/maven-header.txt - - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - true - - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://junit.sourceforge.net/javadoc/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 3.2 - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - default - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.2 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 deleted file mode 100644 index 7c2f5fc3e5e7adf14771441a2480b011aa53175f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/23/maven-parent-23.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -741b1714cc634ee6ae62431189c2b27708b56ef0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/24/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/24/_remote.repositories deleted file mode 100644 index 1b3f5abf7f77945cb6356230244d1a8980548c69..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/24/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:35 CST 2019 -maven-parent-24.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/24/maven-parent-24.pom b/artifacts/m2/org/apache/maven/maven-parent/24/maven-parent-24.pom deleted file mode 100644 index 00a89a2f180a947d243691c4f09a7d9effff98d2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/24/maven-parent-24.pom +++ /dev/null @@ -1,1181 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 14 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 24 - 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. - http://maven.apache.org/ - 2002 - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - stephenc - Stephen Connolly - stephenc@apache.org - - PMC Chair - - 0 - - - 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 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Member - - Europe/Paris - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -6 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Melbourne - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - agudian - Andreas Gudian - agudian@apache.org - - Committer - - Europe/Berlin - - - 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 - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - jvanzyl - Jason van Zyl - - Committer - - -5 - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - Committer - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - michaelo - Michael Osipov - michaelo@apache.org - - Committer - - Europe/Berlin - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - 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 - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - - - - 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/ - - - - 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 Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://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 - http://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 - http://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 - http://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/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-24 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-24 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-24 - - - - 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/content/${maven.site.path} - - - - - 1.5 - 1.5 - https://analysis.apache.org/ - ${user.home}/maven-sites - ../.. - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.2 - provided - - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.source} - ${maven.compiler.target} - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - true - - - - org.codehaus.modello - modello-maven-plugin - 1.8.1 - - true - - - - 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.5.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.3 - - - org.apache.maven.plugins - maven-release-plugin - 2.5 - - true - apache-release,rat - deploy - ${arguments} - - - - - - - maven-enforcer-plugin - - - enforce-bytecode-version - - enforce - - - - - 1.5 - - - true - - - - ban-known-bad-maven-versions - - 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. - - - (,3.0),[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-2 - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - false - - - - - index - summary - dependency-info - modules - license - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - apache-release - - - - org.apache.rat - apache-rat-plugin - true - - - check - - check - - - - true - - - - - - - - - rat - - - - org.apache.rat - apache-rat-plugin - - - verify - - - rat - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.16 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.12 - - config/maven_checks.xml - config/maven-header.txt - - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.4 - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - true - - http://commons.apache.org/proper/commons-collections/javadocs/api-release - http://junit.org/javadoc/4.10/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 3.2 - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - default - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.3 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/24/maven-parent-24.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/24/maven-parent-24.pom.sha1 deleted file mode 100644 index 6acaeb34454e77379bdfda06e8f8ef17c1b8b06d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/24/maven-parent-24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f4ee3e1adf6eaca7dd0598e6e76083e0dcb01af \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/25/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/25/_remote.repositories deleted file mode 100644 index 4496748edd2798045cd565af375e4edd4b834682..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:22 CST 2019 -maven-parent-25.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/25/maven-parent-25.pom b/artifacts/m2/org/apache/maven/maven-parent/25/maven-parent-25.pom deleted file mode 100644 index 245a79a1d360173c669c525e1297bd5fe8e4907f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/25/maven-parent-25.pom +++ /dev/null @@ -1,1179 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 15 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 25 - 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. - http://maven.apache.org/ - 2002 - - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Chair - - Europe/Paris - - - 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 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -6 - - - jvanzyl - Jason van Zyl - - PMC Member - - -5 - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Melbourne - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - agudian - Andreas Gudian - agudian@apache.org - - Committer - - Europe/Berlin - - - 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 - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - dantran@apache.org - -8 - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - michaelo - Michael Osipov - michaelo@apache.org - - Committer - - Europe/Berlin - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - Committer - - Europe/Bratislava - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - - - - 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/ - - - - 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 Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://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 - http://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 - http://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 - http://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/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-25 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-25 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-25 - - - - 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/content/${maven.site.path} - - - - - 1.5 - 1.5 - https://analysis.apache.org/ - ${user.home}/maven-sites - ../.. - 3.3 - - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - 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/content/${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.5.5 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - true - apache-release - deploy - ${arguments} - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - config/maven_checks.xml - config/maven-header.txt - - src/main/java - src/test/java - - - - - - - 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 - - - - - (,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. - - - (,3.0),[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 - 2.7 - - false - - - - - index - summary - dependency-info - modules - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.16 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.4 - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - true - true - - http://commons.apache.org/proper/commons-collections/javadocs/api-release - http://junit.org/javadoc/4.10/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - ${mavenPluginToolsVersion} - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - default - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/25/maven-parent-25.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/25/maven-parent-25.pom.sha1 deleted file mode 100644 index b183cde7d55895111b95898d6234f33578b8d0b4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/25/maven-parent-25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ab9123d60fb71f115df5a4c0f5cef1305a46e0e8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/26/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/26/_remote.repositories deleted file mode 100644 index a33a7beedf6669a85e1b1da69d7abb156bb900d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/26/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:28 CST 2019 -maven-parent-26.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/26/maven-parent-26.pom b/artifacts/m2/org/apache/maven/maven-parent/26/maven-parent-26.pom deleted file mode 100644 index 9babc5cd3c4b59cb08c229a17cdbe18a8848f9aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/26/maven-parent-26.pom +++ /dev/null @@ -1,1239 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 16 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 26 - 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. - http://maven.apache.org/ - 2002 - - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Chair - - Europe/Paris - - - 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 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - dkulp - Daniel Kulp - dkulp@apache.org - ASF - - PMC Member - - -5 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -6 - - - jvanzyl - Jason van Zyl - - PMC Member - - -5 - - - khmarbaise - Karl Heinz Marbaise - khmarbaise@apache.org - - PMC Member - - +1 - - - krosenvold - Kristian Rosenvold - krosenvold@apache.org - - PMC Member - - +1 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Melbourne - - - pgier - Paul Gier - pgier@apache.org - Red Hat - - PMC Member - - -6 - - - 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 - - - struberg - Mark Struberg - struberg@apache.org - - PMC Member - - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - agudian - Andreas Gudian - agudian@apache.org - - Committer - - Europe/Berlin - - - 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 - - - cstamas - Tamas Cservenak - Sonatype - cstamas@apache.org - +1 - - Committer - - - - dantran - Dan Tran - dantran@apache.org - -8 - - Committer - - - - dbradicich - Damian Bradicich - Sonatype - dbradicich@apache.org - -5 - - Committer - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - michaelo - Michael Osipov - michaelo@apache.org - - Committer - - Europe/Berlin - - - nicolas - Nicolas de Loof - - Committer - - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - simonetripodi - Simone Tripodi - simonetripodi@apache.org - - Committer - - +1 - - - tchemit - Tony Chemit - tchemit@apache.org - CodeLutin - - Committer - - Europe/Paris - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - Committer - - Europe/Bratislava - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - Emeritus - - -6 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - Emeritus - - -5 - - - jstrachan - James Strachan - - Emeritus - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - Emeritus - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - Emeritus - - -6 - - - ogusakov - Oleg Gusakov - - Emeritus - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Emeritus - - -6 - - - ptahchiev - Petar Tahchiev - ptahchiev@apache.org - - Emeritus - - +2 - - - 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 - - - jruiz - Johnny Ruiz III - jruiz@apache.org - - Emeritus - - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - Emeritus - - +1 - - - - - - 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/ - - - - 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 Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://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 - http://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 - http://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 - http://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/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-26 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-26 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-26 - - - - 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/content/${maven.site.path} - - - - - 1.5 - 1.5 - https://analysis.apache.org/ - ${user.home}/maven-sites - ../.. - 3.3 - - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginToolsVersion} - provided - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${maven.compiler.source} - ${maven.compiler.target} - - - - - 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/content/${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.5.5 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - true - apache-release - deploy - ${arguments} - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - config/maven_checks.xml - config/maven-header.txt - - src/main/java - src/test/java - - - - - - - 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 - - - - - (,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. - - - (,3.0),[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 - - - - - DEPENDENCIES - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - false - - - - - index - summary - dependency-info - modules - project-team - scm - issue-tracking - mailing-list - dependency-management - dependencies - dependency-convergence - cim - plugin-management - plugins - distribution-management - - - - - - - - - - quality-checks - - - quality-checks - true - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.17 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.13 - - - default - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.1 - - ${maven.compiler.source} - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.4 - - - default - - jxr - test-jxr - - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - FIXME Work - - - fixme - ignoreCase - - - @fixme - ignoreCase - - - - - Todo Work - - - todo - ignoreCase - - - @todo - ignoreCase - - - - - Deprecated Work - - - @deprecated - ignoreCase - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - true - true - - http://commons.apache.org/proper/commons-collections/javadocs/api-release - http://junit.org/javadoc/4.10/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - ${mavenPluginToolsVersion} - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - default - - javadoc - test-javadoc - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - - org.codehaus.sonar-plugins - maven-report - 0.1 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/26/maven-parent-26.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/26/maven-parent-26.pom.sha1 deleted file mode 100644 index 6fe9bf42191a1f6004ca099d2d9db62556f894a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/26/maven-parent-26.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cf7fa4aee9bac85fb3f0607342d364fc2ec08372 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/27/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/27/_remote.repositories deleted file mode 100644 index fbeb3fe87828a19a513ab0f0c304aeb36cee7af4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/27/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:39 CST 2019 -maven-parent-27.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/27/maven-parent-27.pom b/artifacts/m2/org/apache/maven/maven-parent/27/maven-parent-27.pom deleted file mode 100644 index f96acba0e9987a2fca099d20fc623d8b3857936b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/27/maven-parent-27.pom +++ /dev/null @@ -1,1283 +0,0 @@ - - - 4.0.0 - - - - org.apache - apache - 17 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 27 - 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. - http://maven.apache.org/ - 2002 - - - - - hboutemy - Hervé Boutemy - hboutemy@apache.org - ASF - - PMC Chair - - Europe/Paris - - - 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 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - Sonatype - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - 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 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -6 - - - 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 - - - markh - Mark Hobson - markh@apache.org - - PMC Member - - 0 - - - mkleint - Milos Kleint - - PMC Member - - - - oching - Maria Odea B. Ching - - PMC Member - - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - Australia/Melbourne - - - 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 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wfay - Wayne Fay - wfay@apache.org - ASF - - PMC Member - - -6 - - - - - agudian - Andreas Gudian - agudian@apache.org - - Committer - - Europe/Berlin - - - 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 - - - - 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 - - - ifedorenko - Igor Fedorenko - igor@ifedorenko.com - Sonatype - - Committer - - -5 - - - imod - Dominik Bartholdi - imod@apache.org - - Committer - - Europe/Zurich - - - jjensen - Jeff Jensen - - Committer - - - - ltheussl - Lukas Theussl - ltheussl@apache.org - - Committer - - +1 - - - mauro - Mauro Talevi - - Committer - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@apache.org - - Committer - - +1 - - - michaelo - Michael Osipov - michaelo@apache.org - - Committer - - Europe/Berlin - - - mmoser - Manfred Moser - mmoser@apache.org - - Committer - - -8 - - - nicolas - Nicolas de Loof - - 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 - - - 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 - - - tibordigana - Tibor Digaňa - tibordigana@apache.org - - Committer - - Europe/Bratislava - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - Committer - - +1 - - - - - aramirez - Allan Q. Ramirez - - Emeritus - - - - bayard - Henri Yandell - - Emeritus - - - - chrisjs - Chris Stevenson - - Emeritus - - - - dblevins - David Blevins - - Emeritus - - - - dlr - Daniel Rall - - Emeritus - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Emeritus - - -8 - - - felipeal - Felipe Leme - - Emeritus - - - - 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 - 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/ - - - - 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 Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://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 - http://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 - http://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 - http://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/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-27 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-27 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-27 - - - - 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.5.5 - - - 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.5.5 - - - 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.5 - - ${maven.compiler.target} - - 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.8.1 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.2 - - true - apache-release - deploy - ${arguments} - - - - org.apache.maven.plugins - maven-toolchains-plugin - 1.1 - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.6 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - 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 - - - - - DEPENDENCIES - - - - - - - - - - - - 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 - - http://commons.apache.org/proper/commons-collections/javadocs/api-release - http://junit.org/javadoc/4.10/ - http://logging.apache.org/log4j/1.2/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - true - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - ${mavenPluginToolsVersion} - - - 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 - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/27/maven-parent-27.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/27/maven-parent-27.pom.sha1 deleted file mode 100644 index b3ce04533ccf964661602dcaf7d6c537559d0ed7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/27/maven-parent-27.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -43e28c762467ec84ab1cb6fb888a380a28284815 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/5/_remote.repositories deleted file mode 100644 index cf8461b807e70e4d40458887375abb17fcb376d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:33 CST 2019 -maven-parent-5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/5/maven-parent-5.pom b/artifacts/m2/org/apache/maven/maven-parent/5/maven-parent-5.pom deleted file mode 100644 index b33504011a2d016a31f54a8fbaf1c58ea3759aca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/5/maven-parent-5.pom +++ /dev/null @@ -1,466 +0,0 @@ - - - - - - 4.0.0 - - org.apache - apache - 3 - ../asf/pom.xml - - org.apache.maven - maven-parent - 5 - 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. - - http://maven.apache.org/ - - jira - http://jira.codehaus.org/browse/MPA - - - continuum - http://maven.zones.apache.org/continuum - - - mail - -
notifications@maven.apache.org
-
-
-
-
- 2002 - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - - Maven Issues List - issues@maven.apache.org - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - - Maven Notifications List - notifications@maven.apache.org - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - epunzalan - Edwin Punzalan - epunzalan@mergere.com - Mergere - - Committer - - +8 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - aheritier - Arnaud Heritier - aheritier@apache.org - ASF - - PMC Member - - +1 - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - Committer - - -7 - - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-4 - - - https://svn.apache.org/repos/asf/maven/pom/tags - false - deploy - -Prelease - - - - - - - - - ci - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - cobertura-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/ - http://jakarta.apache.org/commons/dbcp/apidocs/ - http://jakarta.apache.org/commons/fileupload/apidocs/ - http://jakarta.apache.org/commons/httpclient/apidocs/ - http://jakarta.apache.org/commons/logging/apidocs/ - http://jakarta.apache.org/commons/pool/apidocs/ - http://www.junit.org/junit/javadoc/ - http://logging.apache.org/log4j/docs/api/ - http://jakarta.apache.org/regexp/apidocs/ - http://jakarta.apache.org/velocity/api/ - - - - - - - - release - - - - - maven-gpg-plugin - 1.0-alpha-1 - - ${gpg.passphrase} - - - - - sign - - - - - - - true - maven-deploy-plugin - 2.3 - - ${deploy.altRepository} - true - - - - - maven-remote-resources-plugin - 1.0-alpha-1 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.0 - - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.0.2 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.2 - - - attach-javadocs - - jar - - - - - - - - - - - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-5 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-5 - https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-5 - -
- diff --git a/artifacts/m2/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 deleted file mode 100644 index 5d7a3eba5ad1f8ec5848739fcff156edeb903b6a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/5/maven-parent-5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5c1ab38decaca1ccd08294aeab135047ebbae00d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/6/_remote.repositories deleted file mode 100644 index 84e83482e635e970062ed286d6489c6386aced63..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:55 CST 2019 -maven-parent-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/6/maven-parent-6.pom b/artifacts/m2/org/apache/maven/maven-parent/6/maven-parent-6.pom deleted file mode 100644 index 3f5120fbcaaed9bfd97410ce68f4dfd5e2913cf6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/6/maven-parent-6.pom +++ /dev/null @@ -1,651 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 4 - ../asf/pom.xml - - org.apache.maven - maven-parent - 6 - 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. - http://maven.apache.org/ - - jira - http://jira.codehaus.org/browse/MNG - - - continuum - http://maven.zones.apache.org/continuum - - - mail - -
notifications@maven.apache.org
-
-
-
-
- 2002 - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - - Maven Issues List - issues@maven.apache.org - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - - Maven Notifications List - notifications@maven.apache.org - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - - maven-remote-resources-plugin - 1.0-alpha-5 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.2 - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-4 - - - https://svn.apache.org/repos/asf/maven/pom/tags - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - - true - true - - - - - - - - - - ci - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - cobertura-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - http://commons.apache.org/logging/apidocs/ - http://commons.apache.org/pool/apidocs/ - http://www.junit.org/junit/javadoc/ - http://logging.apache.org/log4j/docs/api/ - http://jakarta.apache.org/regexp/apidocs/ - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs/ - - - - - - - - - release - - - - - maven-gpg-plugin - 1.0-alpha-3 - - ${gpg.passphrase} - - - - - sign - - - - - - - true - maven-deploy-plugin - 2.3 - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.0.2 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.2 - - - attach-javadocs - - jar - - - - - - - - - - - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-6 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-6 - https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-6 - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dfabulich - Daniel Fabulich - - Committer - - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - Committer - - -5 - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@mergere.com - Mergere - - Committer - - +8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - oching - Maria Odea B. Ching - - Committer - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - rgoers - Ralph Goers - - Committer - - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 deleted file mode 100644 index 6f7eea9fafd75c413ba0ab74f239bab10a26e620..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/6/maven-parent-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e9c3dcf052c26ac7340fbd7a03a751e482855330 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/7/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/7/_remote.repositories deleted file mode 100644 index f1cdcafe091e0350228889a115e5c8ca9c219b7e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:35 CST 2019 -maven-parent-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/7/maven-parent-7.pom b/artifacts/m2/org/apache/maven/maven-parent/7/maven-parent-7.pom deleted file mode 100644 index 7cd1b0149e2ac2769249c4bc881c19817de903d8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/7/maven-parent-7.pom +++ /dev/null @@ -1,670 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 4 - ../asf/pom.xml - - org.apache.maven - maven-parent - 7 - 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. - http://maven.apache.org/ - - jira - http://jira.codehaus.org/browse/MNG - - - continuum - http://maven.zones.apache.org/continuum - - - mail - -
notifications@maven.apache.org
-
-
-
-
- 2002 - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - - Maven Issues List - issues@maven.apache.org - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - - Maven Notifications List - notifications@maven.apache.org - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0-alpha-6 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.3 - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-6 - - - https://svn.apache.org/repos/asf/maven/pom/tags - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - - true - true - - - - - - - - - - ci - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - cobertura-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - 2.3 - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - 2.0.3 - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - - attach-javadocs - - jar - - - - - - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-7 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-7 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-7 - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dfabulich - Daniel Fabulich - - Committer - - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - Committer - - -5 - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@mergere.com - Mergere - - Committer - - +8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - hboutemy - Herve Boutemy - - Committer - - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - oching - Maria Odea B. Ching - - Committer - - - - olamy - Olivier Lamy - olamy@apache.org - - Committer - - +1 - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - rgoers - Ralph Goers - - Committer - - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 deleted file mode 100644 index 7f344000951b036739ace1c069f3431f7964b0a7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/7/maven-parent-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2426103263cbaf5519433f16bd98cdc31870a10a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/8/_remote.repositories deleted file mode 100644 index f76daaf04c2a9e9c358b234b538109869431a13e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:38 CST 2019 -maven-parent-8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/8/maven-parent-8.pom b/artifacts/m2/org/apache/maven/maven-parent/8/maven-parent-8.pom deleted file mode 100644 index 49de0f729744f77251ca145f664761c9ebb209ac..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/8/maven-parent-8.pom +++ /dev/null @@ -1,755 +0,0 @@ - - - - 4.0.0 - - - org.apache - apache - 4 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 8 - 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. - http://maven.apache.org/ - - - continuum - http://maven.zones.apache.org/continuum - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - 2002 - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - - maven.staging - scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo - - - apache.snapshots - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.3 - - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.3 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.3 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - - https://svn.apache.org/repos/asf/maven/pom/tags - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-6 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - - - - - - - ci - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - cpd-check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - - - org.codehaus.mojo - cobertura-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - - - - org.codehaus.mojo - clirr-maven-plugin - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-8 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-8 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-8 - - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - Committer - - -5 - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - hboutemy - Herve Boutemy - - Committer - - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - oching - Maria Odea B. Ching - - Committer - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rgoers - Ralph Goers - - Committer - - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - - - - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 deleted file mode 100644 index 7daab474b214b9e1f64009aa9fb939b9742f05ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/8/maven-parent-8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6f92a85ec401422bfc6572759a0bab2ff5df525e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-parent/9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-parent/9/_remote.repositories deleted file mode 100644 index 2050c340a7f8fc3123acd87974ad295fdd569ce7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:32 CST 2019 -maven-parent-9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-parent/9/maven-parent-9.pom b/artifacts/m2/org/apache/maven/maven-parent/9/maven-parent-9.pom deleted file mode 100644 index 96592aff39514f300c11ca0b829fde539faaaac1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/9/maven-parent-9.pom +++ /dev/null @@ -1,985 +0,0 @@ - - - - - - 4.0.0 - - - org.apache - apache - 4 - ../asf/pom.xml - - - org.apache.maven - maven-parent - 9 - 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. - http://maven.apache.org/ - 2002 - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - aheritier - Arnaud Heritier - aheritier@apache.org - OCTO Technology - http://www.octo.com - - PMC Member - - +1 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - brianf - Brian Fox - brianf@apache.org - ASF - - PMC Member - - -5 - - - carlos - Carlos Sanchez - carlos@apache.org - ASF - - PMC Member - - +1 - - - dennisl - Dennis Lundberg - dennisl@apache.org - ASF - - PMC Member - - +1 - - - dfabulich - Daniel Fabulich - dfabulich@apache.org - - PMC Member - - -8 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - fgiust - Fabrizio Giustina - fgiust@apache.org - openmind - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - joakime - Joakim Erdfelt - joakime@apache.org - ASF - - PMC Member - - -5 - - - jstrachan - James Strachan - - PMC Member - - - - jtolentino - Ernesto Tolentino Jr. - jtolentino@apache.org - ASF - - PMC Member - - +8 - - - jmcconnell - Jesse McConnell - jmcconnell@apache.org - ASF - - PMC Member - - -6 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - ltheussl - Lukas Theussl - ltheussl@apache.org - ASF - - PMC Member - - +1 - - - mperham - Mike Perham - mperham@gmail.com - IBM - - PMC Member - - -6 - - - olamy - Olivier Lamy - olamy@apache.org - - PMC Member - - +1 - - - snicoll - Stephane Nicoll - snicoll@apache.org - ASF - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - PMC Member - - -5 - - - wsmoak - Wendy Smoak - wsmoak@apache.org - - PMC Member - - -7 - - - dkulp - Daniel Kulp - dkulp@apache.org - IONA - - PMC Member - - -5 - - - - - aramirez - Allan Q. Ramirez - - Committer - - - - baerrach - Barrie Treloar - - Committer - - - - bayard - Henri Yandell - - Committer - - - - bellingard - Fabrice Bellingard - - Committer - - - - bentmann - Benjamin Bentmann - bentmann@apache.org - - Committer - - +1 - - - chrisjs - Chris Stevenson - - Committer - - - - dantran - Dan Tran - - Committer - - - - dblevins - David Blevins - - Committer - - - - dlr - Daniel Rall - - Committer - - - - epunzalan - Edwin Punzalan - epunzalan@apache.org - - Committer - - -8 - - - felipeal - Felipe Leme - - Committer - - - - handyande - Andrew Williams - handyande@apache.org - - Committer - - 0 - - - hboutemy - Herve Boutemy - - Committer - - +1 - - - jjensen - Jeff Jensen - - Committer - - - - mkleint - Milos Kleint - - Committer - - - - nicolas - Nicolas De Loof - nicolas@apache.org - Capgemini - - Committer - - +1 - - - oching - Maria Odea B. Ching - - Committer - - - - pschneider - Patrick Schneider - pschneider@gmail.com - - Committer - - -6 - - - rafale - Raphaël Piéroni - rafale@apache.org - Dexem - - Committer - - +1 - - - rgoers - Ralph Goers - - Committer - - - - rinku - Rahul Thakur - - Committer - - - - shinobu - Shinobu Kuwai - - Committer - - - - smorgrav - Torbjorn Eikli Smorgrav - - Committer - - - - ogusakov - Oleg Gusakov - - Committer - - - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://markmail.org/list/org.apache.maven.announce - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://markmail.org/list/org.apache.maven.notifications - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-9 - scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/maven-parent-9 - http://svn.apache.org/viewvc/maven/pom/tags/maven-parent-9 - - - Hudson - http://ci.sonatype.org - - - mail - -
notifications@maven.apache.org
-
-
-
-
- - - maven.staging - scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo - - - apache.snapshots - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - apache.website - scp://people.apache.org/www/maven.apache.org - - - - - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - UTF-8 - - - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - - - - process - - - - org.apache:apache-jar-resource-bundle:1.3 - - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.2 - - - org.apache.maven.plugins - maven-clean-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.3 - - - - org.apache.maven.plugins - maven-docck-plugin - 1.0-beta-2 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.2.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - true - true - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.4.2 - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - - https://svn.apache.org/repos/asf/maven/pom/tags - false - deploy - -Prelease - - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.0 - - - org.apache.maven.plugins - maven-resources-plugin - 2.2 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-scm-plugin - 1.0 - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.2 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-21 - - - - - - - - - - - maven-project-info-reports-plugin - 2.1 - - - - - - - quality-checks - - - quality-checks - true - - - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - cpd-check - verify - - cpd-check - - - - - - - - - reporting - - - - org.codehaus.mojo - cobertura-maven-plugin - - - clean - - clean - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - - - - - javadoc - test-javadoc - - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - -
diff --git a/artifacts/m2/org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 deleted file mode 100644 index c86cc91a30a5bc24995322d3af3d08f3898c1dbe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-parent/9/maven-parent-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a7d098bde368f683c2b51475a903a1e74b61ba32 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/_remote.repositories deleted file mode 100644 index 5bb25cd5b15997dc094e564593e1caa38cb133d1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:58 CST 2019 -maven-plugin-api-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom deleted file mode 100644 index f21c8a778f6889214a5ba3f1aa8780c8b07f89b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-plugin-api - Maven Plugin API - - - junit - junit - 3.8.1 - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom.sha1 deleted file mode 100644 index 6e93f016865b87fa6fd4ac8d7c14ce478c7e97b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef7b71a73f87ae6b0b4515c77542acb5091c49db \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories deleted file mode 100644 index 4e82602b1abca4ff0f12a26b84e6d35264473f12..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:42 CST 2019 -maven-plugin-api-2.0.6.jar>repo.jenkins-ci.org= -maven-plugin-api-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar deleted file mode 100644 index a34ffa095c5d1780b0e515133af4d4d162c11bb8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar.sha1 deleted file mode 100644 index 0ebaee61a96ffa51f40a8970beef1a1d1d4cc606..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -52b32fd980c8ead7a3858d057330bda1ace72d9d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom deleted file mode 100644 index c05402a6b8d7c5d0f29796f23235154e1adeff87..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-plugin-api - Maven Plugin API - - - junit - junit - 3.8.1 - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 deleted file mode 100644 index b9a6d5b3ab4e38c96766fb93b1ec9ff1c797fced..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3af72b052dfefb73ecfae742613012b5396c8863 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/_remote.repositories deleted file mode 100644 index aea889ffa4bd0bee99460849ec34341ad767f82a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:35 CST 2019 -maven-plugin-api-2.0.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/maven-plugin-api-2.0.7.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/maven-plugin-api-2.0.7.jar deleted file mode 100644 index 5f343c0bd893f12572989ccc65fe8a2bc201ba2f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/maven-plugin-api-2.0.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/maven-plugin-api-2.0.7.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/maven-plugin-api-2.0.7.jar.sha1 deleted file mode 100644 index 255a7104fa4eb4489548151314fd6cbc5ab2a0af..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.7/maven-plugin-api-2.0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b0e73a6f76e35004a3b186c5bec8a95a26e7be30 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/_remote.repositories deleted file mode 100644 index bf1f3875f811d41272af48a4686385687d3cc032..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:00 CST 2019 -maven-plugin-api-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom deleted file mode 100644 index fe6fbbe92b4346d6f84bb622ea2dd642182ab67a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-plugin-api - Maven Plugin API - - - junit - junit - 3.8.1 - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 deleted file mode 100644 index 7fa186f0afe0559178277ae1350f4db1aad6421b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -df49abd86bcf9fd7a624562a7285049ebdd2f00e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories deleted file mode 100644 index caabb2bd63c99dd801ca3fc7c8f099af3cd721a4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:36 CST 2019 -maven-plugin-api-2.0.9.jar>repo.jenkins-ci.org= -maven-plugin-api-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar deleted file mode 100644 index b7e890a00a6a91198a51ff06f2c08830b3d23f30..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar.sha1 deleted file mode 100644 index f783b024f703825bbb0298067ea5c048a16bd344..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b8cae9daa688fdb57995c6835a3e24475d554c0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom deleted file mode 100644 index d7337fa2bd5901804a1565a11498ec593c664fa0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-plugin-api - Maven Plugin API - - - junit - junit - 3.8.1 - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 deleted file mode 100644 index 6ae287306c615953e2225815d0ee9220bda6726e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f6c3d5d50d1e22dea74629b3c52e22b30b6cbbd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories deleted file mode 100644 index 258334c34795d50183bcf179333acabe167f6686..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-plugin-api-2.2.1.jar>repo.jenkins-ci.org= -maven-plugin-api-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar deleted file mode 100644 index 6b643f3da8f263c24d7887fecc7089dec473be17..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar.sha1 deleted file mode 100644 index 7d6f37a45809661ac30d2f8575c6d6023b0a9f41..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d60c36b60f760e0b5b87dd0c6311f93a72dc4585 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom deleted file mode 100644 index ec48fbc742778061ceb61bed5ddc616d7bcafe62..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-plugin-api - - Maven Plugin API - - - - junit - junit - 3.8.1 - test - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 deleted file mode 100644 index 86eea0b60e0ac39f710866566dcc98f4c66fafd8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -29a30b7c8180601523293fd61b00fcb298d32230 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/_remote.repositories deleted file mode 100644 index 3bc58ccc53312f820c3ce6f695a1166da13c9456..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:37 CST 2019 -maven-plugin-api-3.0.jar>repo.jenkins-ci.org= -maven-plugin-api-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar deleted file mode 100644 index bbb4f008962fd52f810d9f8f6319d719194c2b62..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar.sha1 deleted file mode 100644 index edfa177a860afd8020966d76e956e6104516c057..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -98f886f59bb0e69f8e86cdc082e69f2f4c13d648 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom deleted file mode 100644 index 2e99b7be61609f5389d0723ec1bae567b35e18e2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-plugin-api - - Maven Plugin API - - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact - - - wagon-provider-api - org.apache.maven.wagon - - - - - org.sonatype.sisu - sisu-inject-plexus - - - - - - - org.codehaus.modello - modello-maven-plugin - - - src/main/mdo/lifecycle.mdo - - 1.0.0 - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 deleted file mode 100644 index 530e4a7207cc79bc64c1052cccc0c993995eb1d4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9627e130b4f516945f0db03119dbafb86f168026 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/_remote.repositories deleted file mode 100644 index 4e4a7544da9df8eb7df155a7d466588391e8fa6e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:43 CST 2019 -maven-plugin-api-3.1.1.pom>repo.jenkins-ci.org= -maven-plugin-api-3.1.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar deleted file mode 100644 index 8bdec9adfce7f4d93c5912ad16550a37336468fb..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar.sha1 deleted file mode 100644 index 421df30810506864196f0cf5884d13bf4ae25eec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3836a4ea31ca2d1531aa250127bc17e6e876d658 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom deleted file mode 100644 index d899721bace40ded0723b01badc32a4e957ba96c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-plugin-api - - Maven Plugin API - The API for plugins - Mojos - development. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - 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 - src/main/mdo/plugin.mdo - - 1.0.0 - - - - site-docs - - - src/main/mdo/plugin.mdo - - - - - - - maven-jar-plugin - - - org/apache/maven/plugin/descriptor/model - org/apache/maven/plugin/descriptor/model/**/* - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom.sha1 deleted file mode 100644 index f6ca37fccf44e05e10716e151c7327a5db04e5dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -26ad41ca9dd27d8259c0691d6f0646c1e4e8cde2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories deleted file mode 100644 index 88aa07cb3d4cbeb607add60b8a4282a21e1326c9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-plugin-descriptor-2.0.6.jar>repo.jenkins-ci.org= -maven-plugin-descriptor-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar deleted file mode 100644 index 3cf29b6945a7b1abb8f81166016486e21cad6231..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar.sha1 deleted file mode 100644 index 5fe2c025771f25fb5154d3f64e03ae9ae9bcc87d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -30a00f4ef12d3901c4f842de99e9363e3743245f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom deleted file mode 100644 index b0c5a85250973965ee533cb0e67dcf4e3ab9279f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-plugin-descriptor - Maven Plugin Descriptor Model - - - - org.codehaus.modello - modello-maven-plugin - - src/main/mdo/lifecycle.mdo - 1.0.0 - - - - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 deleted file mode 100644 index 959d234736c5928c2db8558a763644fc12909c74..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.6/maven-plugin-descriptor-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c03fb59f559651730a98907d4acf65e6ffb886d6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories deleted file mode 100644 index cac41338a65b315ba0ccd7232b92ba03c8ae985d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-plugin-descriptor-2.0.9.jar>repo.jenkins-ci.org= -maven-plugin-descriptor-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar deleted file mode 100644 index 5b8215d0bd693b8eec7c902440893adbf54b2d14..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar.sha1 deleted file mode 100644 index 58fde25b8e2ca3a2351817c08474f62e7c77fdc6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -10443d038cd57feb4a027e7dfe09bed0925a1953 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom deleted file mode 100644 index 2990fdb7db08fb0168faa5a0b29dac0ee604988b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-plugin-descriptor - Maven Plugin Descriptor Model - - - - org.codehaus.modello - modello-maven-plugin - - src/main/mdo/lifecycle.mdo - 1.0.0 - - - - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 deleted file mode 100644 index 20868139b2d13209f66f909c06e45a9d0093159d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2752f80f21bd62796600c66859406a08a587c2d9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories deleted file mode 100644 index 578144908649dab2a804309c2f668114c5499ad4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-plugin-descriptor-2.2.1.pom>repo.jenkins-ci.org= -maven-plugin-descriptor-2.2.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar deleted file mode 100644 index c27e26aeaee3f31c5695818a2a580398dd872dd8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar.sha1 deleted file mode 100644 index 1a37f023445b23aa729419b3e1943341bb95ef76..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -68d20ae3c40c4664dc52be90338af796db7ffb32 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom deleted file mode 100644 index 4dbbaead612e2468479f63fc4bf6598a813f2623..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-plugin-descriptor - - Maven Plugin Descriptor Model - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - - src/main/mdo/lifecycle.mdo - - 1.0.0 - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom.sha1 deleted file mode 100644 index b80dbf86b18312b9ac8b333a90187ae6fd90156e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -020c06240db8c2f9bcf8450414ef040becef16e0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/_remote.repositories deleted file mode 100644 index c83b4778e0ef886f1586981a043fb804d243c68e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-plugin-parameter-documenter-2.0.6.jar>repo.jenkins-ci.org= -maven-plugin-parameter-documenter-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar deleted file mode 100644 index 553b10e2f2a779da187e38e3373c7dfcf3e224d8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar.sha1 deleted file mode 100644 index 3e1b4bd8d348de8efd1d08146764214bd90a96be..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -df6fa6c4adb313cb8937ffae96368bec1fd5d13d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom deleted file mode 100644 index 78c699c3cbf31f89267744c77e1a6385394da0e2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-plugin-parameter-documenter - Maven Plugin Parameter Documenter API - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - src/main/mdo/paramdoc.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 deleted file mode 100644 index 76bffcd9cb47da5198d1bd06d621dcf6fa023051..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6403fbdb781a3d47a771656054defe1173ce486 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/_remote.repositories deleted file mode 100644 index 60637fc48a48d552669d8a86916e2fd8c9d935fd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-plugin-parameter-documenter-2.0.9.jar>repo.jenkins-ci.org= -maven-plugin-parameter-documenter-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar deleted file mode 100644 index 51e97d43ef892c643da51941d6bd301146fe6cf5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar.sha1 deleted file mode 100644 index 7fd596b9fe7caf5f9878562b71922a03e27a294e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f481e2677384f6a0ab96633567d736e70657e042 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom deleted file mode 100644 index d75284fadd5cf842de26bfe8cd882d45aeecfc0f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-plugin-parameter-documenter - Maven Plugin Parameter Documenter API - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - src/main/mdo/paramdoc.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 deleted file mode 100644 index eccc697e8953f14aaa41c68708c136877ac7bbfb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a575e74bbf8402a2371034d3a128d214c4cee060 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/_remote.repositories deleted file mode 100644 index d838c8696b23278b3ec9be3aec3c9f2e1b1233cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-plugin-parameter-documenter-2.2.1.jar>repo.jenkins-ci.org= -maven-plugin-parameter-documenter-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar deleted file mode 100644 index 64be169329cb8d1c7efd3c973c664f39a9a98d25..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar.sha1 deleted file mode 100644 index 012bc3f5927c0ea5e53f5d71f508f281c6cd096b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1a117baac49437fc5a6fcd9f18f779e6bad4207e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom deleted file mode 100644 index 6804fcbd23340bdef3cc8de5717746cc10a85310..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-plugin-parameter-documenter - - Maven Plugin Parameter Documenter API - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/paramdoc.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom.sha1 deleted file mode 100644 index 30866f4cf4b5bd07b502cc54a2c83ff1d6c9c30e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8eb54f97405512e83f680f29ef6163f5ef082acb \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/_remote.repositories deleted file mode 100644 index 507302758bc9dc0ac051398db4e59fcd9319f62b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-plugin-registry-2.0.10.jar>repo.jenkins-ci.org= -maven-plugin-registry-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar deleted file mode 100644 index a176cf0c8afb61c162b2b024b3ec88864a393cda..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar.sha1 deleted file mode 100644 index 7b135f101e431129329cb7ebe6d98f11d9b070c2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d5da46ecb3da41696471510223af256143bc0936 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom deleted file mode 100644 index d9b0db6e0fb743c9392c06a2938deec72d632972..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - org.apache.maven - maven-plugin-registry - Maven Plugin Registry Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - plugin-registry.mdo - - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom.sha1 deleted file mode 100644 index dc7985f22247394ae7b8ca98bd5c6499ed79e4e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -65f0e009b7e9d2a74c5febbe457799b3d696f43d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories deleted file mode 100644 index ccc3574d4b07233ccbc5e3b286cebcfbb1a2aca6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-plugin-registry-2.0.6.jar>repo.jenkins-ci.org= -maven-plugin-registry-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar deleted file mode 100644 index e0365a2adb678ca58816787fcc869324ad7a8b96..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar.sha1 deleted file mode 100644 index 79cac6e933ec0f82e7e36030572e633925211824..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4242ec8629b4797387751379f57e72cb718aac7a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom deleted file mode 100644 index b020f0d2b453c730a3a8ff219cfd5156079de335..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - org.apache.maven - maven-plugin-registry - Maven Plugin Registry Model - 2.0.6 - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - plugin-registry.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 deleted file mode 100644 index b598f151187b89f505d3a1294a2a33168ab29eb1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2e13beea3b3511c6075c60384d9e7fad18efbcdf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/_remote.repositories deleted file mode 100644 index 9c6876827d49c55de9ffd83dd12cafbd1b879ce8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-plugin-registry-2.0.8.jar>repo.jenkins-ci.org= -maven-plugin-registry-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar deleted file mode 100644 index 1f47f9709010934f854c706dcf0db22ca8c7bcbf..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar.sha1 deleted file mode 100644 index 3d94eb479a6f7e7935cffa64670682d6ee963f94..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -37385b508a04d77575c6b5542b88bd96f5257541 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom deleted file mode 100644 index 1b30ef1dc17ccdb8518ad59d2c8bce94a117b7fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom +++ /dev/null @@ -1,53 +0,0 @@ - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - org.apache.maven - maven-plugin-registry - Maven Plugin Registry Model - 2.0.8 - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - plugin-registry.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 deleted file mode 100644 index f82bfc9822d9be417bab3f40d5a9ccf4b02caa59..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8f64ad448251c2c6007e609088bb7aa45ff337c5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories deleted file mode 100644 index 7e9bbc333235bdf5e2b4c5557090aa2a120448c0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-plugin-registry-2.0.9.jar>repo.jenkins-ci.org= -maven-plugin-registry-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar deleted file mode 100644 index 7eb0c91396f941425478dac6b4c2b02c4b1643c9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar.sha1 deleted file mode 100644 index 7f94f1922a2560ae226fab05c5db8b6721e5b992..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a7172a87a7cb901cf6df4df9fd89a3c2d3f8a770 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom deleted file mode 100644 index badd8c3af929376f2b3ed3df4dc67cbc540164aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - org.apache.maven - maven-plugin-registry - Maven Plugin Registry Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - plugin-registry.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 deleted file mode 100644 index 27aea741de72cec072fc675393cf96798efc7a1d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -403ed44092f56e1ebab891f37c69d61936c5c4da \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/_remote.repositories deleted file mode 100644 index 192d8f9f898ed1243673531fcb7b0f1d483f57bf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:47 CST 2019 -maven-plugin-registry-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom deleted file mode 100644 index e45cecbf134243440179f0db3c913122c954c816..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.0 - - - maven-plugin-registry - - Maven Plugin Registry Model - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - plugin-registry.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 deleted file mode 100644 index 96ef59c8111ea1443979d1c5621297d041be3ad3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a28f479f5a2334f4018fd6812a6da2652a11d858 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories deleted file mode 100644 index 63114484e5f6f68e1f1ded77989ffa32b40b287b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-plugin-registry-2.2.1.jar>repo.jenkins-ci.org= -maven-plugin-registry-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar deleted file mode 100644 index 1b87d9a00b7b353134c3b54dfe7e7e44e04f6a56..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar.sha1 deleted file mode 100644 index c05e4926f8455f71d832998b7a0fa04d62064196..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -72a24b7775649af78f3986b5aa7eb354b9674cfd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom deleted file mode 100644 index 38494e53aa4b875b5c1a993644f9d24eedfec853..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-plugin-registry - - Maven Plugin Registry Model - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - plugin-registry.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom.sha1 deleted file mode 100644 index 6621a724fcb167dae070ba3b4de176eb3ff80563..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c3575ac9ad32638af33d88829453bdc902ea8711 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.0.10/_remote.repositories deleted file mode 100644 index d0aaac06ebf5cf508654ae8f2e40d6744009ff50..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-profile-2.0.10.jar>repo.jenkins-ci.org= -maven-profile-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar b/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar deleted file mode 100644 index eb59ab180c0f5092e6ccab62280cd833dd1a43d1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar.sha1 deleted file mode 100644 index b01081a9dbe5bf5a030658b9464ee631dbf9dbb0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -351665e7af93b60a7ae9c7498d1e6d015ff6ac53 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom deleted file mode 100644 index 81b41a81b6cdd6f2ba61412b6d2f3b66706c79b4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-profile - Maven Profile Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/profiles.mdo - - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom.sha1 deleted file mode 100644 index 6b3fb8d23f7949fe24941ae3474171ebccef1949..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4d0680a07f9a6f9fc812b1ce77ac599e1c9fcfa1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.0.5/_remote.repositories deleted file mode 100644 index fb14beaeba95a507d405b63d8b8a8bedd5fabfed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:48 CST 2019 -maven-profile-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom deleted file mode 100644 index 7da63220738061d3cd7a753463dee73c5421ddbd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-profile - Maven Profile Model - 2.0.5 - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-7 - - - site-docs - pre-site - - xdoc - xsd - - - - - xpp3-writer - java - xpp3-reader - - - - - 1.0.0 - profiles.mdo - - - - - - - org.apache.maven - maven-model - 2.0.5 - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 deleted file mode 100644 index 62448b19b2ad88fb8ca91fd5a46746a385afbc51..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d16b97a0ac60bf526c8a727dfa549a43ac57e519 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.0.6/_remote.repositories deleted file mode 100644 index c2c37f4e3c9367340a71a867ccee080503ae60c1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-profile-2.0.6.pom>repo.jenkins-ci.org= -maven-profile-2.0.6.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar deleted file mode 100644 index 5c99a124dbb79af69b6a636959b82473facd3d71..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar.sha1 deleted file mode 100644 index 2928a3f9bf7ea7b3d5158bc896a694805470ebd5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f03cd3820d2b4d60b93ccd17a1c14e8eeef63f79 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom deleted file mode 100644 index 824b31cef76f5890de1dde06ccae6726d081a862..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-profile - Maven Profile Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - profiles.mdo - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 deleted file mode 100644 index f9b778686289e9574b8d99882476f690e6e9d4e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -12d0d8217e613b9cb487c1d1d0db744a4f588528 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.0.8/_remote.repositories deleted file mode 100644 index e3ec683fbabeff854789104a5ebc2aac3301f117..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-profile-2.0.8.jar>repo.jenkins-ci.org= -maven-profile-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar b/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar deleted file mode 100644 index 5e2c3bd8a55fe65ef78a8144304a5e1030fd9311..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar.sha1 deleted file mode 100644 index cca700b297068847d5fdf9737c65d6d98b924532..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4da3b9551606437a80bdc695c4fafde03a037ab9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom deleted file mode 100644 index 59669ec9e88b4aabb76162244655a52282471535..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-profile - Maven Profile Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - profiles.mdo - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 deleted file mode 100644 index 2968a332b581dbc7968a7eaa4d4f64bfa071ec4f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -34de742e38173bc6b4bc921ad79567c282f880ab \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.0.9/_remote.repositories deleted file mode 100644 index 0855a31ca31b6448b49632004488b760867f9006..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-profile-2.0.9.jar>repo.jenkins-ci.org= -maven-profile-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar deleted file mode 100644 index dbf37591f3dd33bb3516194ba50323d9ef9397d3..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar.sha1 deleted file mode 100644 index 5c7f5252fa5fe9bbb5449380bc7bdb2448113b09..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0b9b02df9134bff9edb4f4e1624243d005895234 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom deleted file mode 100644 index 91f058f65c993acd7abd1346f72a100286b3c5a7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-profile - Maven Profile Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - src/main/mdo/profiles.mdo - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 deleted file mode 100644 index 224e62c243d811f6f73edf71cdae329249041b48..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -616ca5d9ab345e415c6e3f5f75ea24a952690ac0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.2.0/_remote.repositories deleted file mode 100644 index a8596ac3df6fe3bcdea457c9a32b9df5380405f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:44 CST 2019 -maven-profile-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom b/artifacts/m2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom deleted file mode 100644 index b3b7852c45a40712872343727f534d9123d7b972..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.0 - - - maven-profile - - Maven Profile Model - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/profiles.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 deleted file mode 100644 index 34addc390ae9ba4708e21616626225a172a61684..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -740bce07af0b724e8e79e62493b537e190d14c1f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-profile/2.2.1/_remote.repositories deleted file mode 100644 index 7302d1dac38491111e780403cc1ccfbc4f749ed3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-profile-2.2.1.pom>repo.jenkins-ci.org= -maven-profile-2.2.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar deleted file mode 100644 index 5394d32319d84cf235efce9ab06ff29d81a77044..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar.sha1 deleted file mode 100644 index 1e71e9e4b74ebd626f922b2297e8ae9af1f9e17e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3950071587027e5086e9c395574a60650c432738 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom deleted file mode 100644 index d9140824322d5193f1b34a10fd68220b4e220158..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-profile - - Maven Profile Model - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/profiles.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom.sha1 deleted file mode 100644 index f9ab7da78c8bcb08bc619c7dc4be808913e85b9e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -075b47a5262cae02c228137399b8247e50a43284 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.0.10/_remote.repositories deleted file mode 100644 index 3b55ce9ddef6f57d192994865301ab779f2a2158..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.10/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-project-2.0.10.jar>repo.jenkins-ci.org= -maven-project-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar b/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar deleted file mode 100644 index 44ad07abc95c8f82ddcf4f19fbbaeed790ddb0ec..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar.sha1 deleted file mode 100644 index 29a5e0c3cae22b93e710bdcc1be9218fc29ab35f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c82f208e8997fc639279dc4b76d50a1317b2a9f1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom deleted file mode 100644 index 4c872dd30b3deb025350f3bef3a80a9c4625fdce..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-project - Maven Project Builder - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact-test - test - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact-manager - - - - org.apache.maven - maven-plugin-registry - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom.sha1 deleted file mode 100644 index 2f23ce972a241aa21f59bab95cdb81719b5e5b2c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d51eba53265db60c55abf8da3555f3f23727e66 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.0.5/_remote.repositories deleted file mode 100644 index abde4cf7837f34f271dab0a5c625858efb8ba769..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:46 CST 2019 -maven-project-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom deleted file mode 100644 index 8f970dbad1907d25700c6b4e92590f941697d9a4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-project - Maven Project Builder - 2.0.5 - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - org.apache.maven - maven-settings - 2.0.5 - - - org.apache.maven - maven-artifact-test - 2.0.5 - test - - - org.apache.maven - maven-profile - 2.0.5 - - - org.apache.maven - maven-model - 2.0.5 - - - org.apache.maven - maven-artifact-manager - 2.0.5 - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - 2.0.5 - - - org.codehaus.plexus - plexus-container-default - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 deleted file mode 100644 index 845e29e17a7b89833224afa645ad6ed00b849230..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f8e28bec122e2092e91660758ede22e1f78744ee \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.0.6/_remote.repositories deleted file mode 100644 index 1196a5afdc355b523582d1e14726ff6ce9e04672..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:11 CST 2019 -maven-project-2.0.6.jar>repo.jenkins-ci.org= -maven-project-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar deleted file mode 100644 index 42311becb75c6cce9ac7b7e87203415112b994a5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar.sha1 deleted file mode 100644 index 9447c11447a57deb0853da808684589dbd8b4cce..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c0df764cd8f5bac660bfa53fa97fdd53663ee308 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom deleted file mode 100644 index ee3f9e51123013fe7b5beb5a6cf3954914bb1a4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-project - Maven Project Builder - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact-test - test - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact-manager - - - - org.apache.maven - maven-plugin-registry - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 deleted file mode 100644 index af7bf7054497463bb72fbbfaa090c1e8e687954d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -28e9f98ae3688d8831052283b2d65bd18295a7f5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.7/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.0.7/_remote.repositories deleted file mode 100644 index f9dc563bf0fedcd633ce131b1742d5cd06a996e6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:36 CST 2019 -maven-project-2.0.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.7/maven-project-2.0.7.jar b/artifacts/m2/org/apache/maven/maven-project/2.0.7/maven-project-2.0.7.jar deleted file mode 100644 index 1c36bd5402e48c13a4d202988af3e36fcd5b31cc..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-project/2.0.7/maven-project-2.0.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.7/maven-project-2.0.7.jar.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.7/maven-project-2.0.7.jar.sha1 deleted file mode 100644 index 55ebde5ebd40f6c6c0ded6a1e57ab1c222014b26..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.7/maven-project-2.0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -bced40add7c88a436d3fcdd706e3adb0e7b5b01c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.0.8/_remote.repositories deleted file mode 100644 index 9745f7d47338d8b53004ff9998df16cd14d3a529..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-project-2.0.8.jar>repo.jenkins-ci.org= -maven-project-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar b/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar deleted file mode 100644 index 3071a6d2331d19bde2d28d305662f9f6cf167e76..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar.sha1 deleted file mode 100644 index 0190f2d206407d685cb14d073c925eb129e3dd31..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -00475a52c7181930b1680fce3269245ccc26e3de \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom deleted file mode 100644 index 0bb3782251144d4f0b178607fc9af47e1fc66df9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-project - Maven Project Builder - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact-test - test - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact-manager - - - - org.apache.maven - maven-plugin-registry - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 deleted file mode 100644 index 6ef536c5e9479eb4c3d4163e3101e1a22c267c6e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -13398a071f2094acc11add38afc85f75a3faac33 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.0.9/_remote.repositories deleted file mode 100644 index 0a0bb9df97092b033e636e390c5a0b63c1a8ef3c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-project-2.0.9.jar>repo.jenkins-ci.org= -maven-project-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar deleted file mode 100644 index 6119114a182590b184c68c5b74f09f4272368ee3..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar.sha1 deleted file mode 100644 index 00944083d4bd28bf854e971f2ab73dad97a40568..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -30ec37813df5a212888a1f3df0b27497ecef4ad8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom deleted file mode 100644 index 74b4688d64821f32e9d33c5783e33ce4c69d9e47..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-project - Maven Project Builder - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact-test - test - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact-manager - - - - org.apache.maven - maven-plugin-registry - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 deleted file mode 100644 index 2c7d3b8bf1c1d4d062372c780f64d982eefbbfa0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -152cb93838c431848f31cd5a7a7a11b98c57135e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.2.0/_remote.repositories deleted file mode 100644 index 8d3a13edccd078b4e2ceca9ae2d025040a803b2e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:42 CST 2019 -maven-project-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom b/artifacts/m2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom deleted file mode 100644 index 1f52469fa45ff0d8051af95ab1818d78b53013dd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.0 - - - maven-project - - Maven Project Builder - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact-test - test - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact-manager - - - - org.apache.maven - maven-plugin-registry - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 deleted file mode 100644 index 5e436f8ae162753313e6591a0a10b6926c7036bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bce50c677b7219221db29b87470b6ba605ef0d3f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-project/2.2.1/_remote.repositories deleted file mode 100644 index c59dd41a0c68f6da56a81d24297dcad29b25c077..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-project-2.2.1.jar>repo.jenkins-ci.org= -maven-project-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar deleted file mode 100644 index 63b9ebd651098f01090138c24687fa2e5d25e399..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar.sha1 deleted file mode 100644 index ce349dffd9b67f1a7a11fc58fc6c1fc8562fed1b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8239e98c16f641d55a4ad0e0bab0aee3aff8933f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom deleted file mode 100644 index 035a0e0b733f94826f8562069e896ca5d6aca001..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-project - - Maven Project Builder - This library is used to not only read Maven project object model files, but to assemble inheritence - and to retrieve remote models as required. - - - - org.apache.maven - maven-settings - - - org.apache.maven - maven-artifact-test - test - - - org.apache.maven - maven-profile - - - org.apache.maven - maven-model - - - org.apache.maven - maven-artifact-manager - - - - org.apache.maven - maven-plugin-registry - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-utils - - - org.apache.maven - maven-artifact - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom.sha1 deleted file mode 100644 index a69a9762da89e2de2d3d98c2f464fcba6536922c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d96e4545b4700ac177430b5189c3f2aa54f62ca1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/_remote.repositories deleted file mode 100644 index b8e6b3bbdb3ff1a128e79451b816cfa3691749de..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:56 CST 2019 -maven-repository-metadata-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom deleted file mode 100644 index 14fe20fa2a7d9cd3016f92bdaaec532342043bdd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-repository-metadata - Maven Repository Metadata Model - Maven Plugin Mapping - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/metadata.mdo - - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - org/apache/maven/artifact/repository/metadata/* - - - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom.sha1 deleted file mode 100644 index 17224ca357c4bab32ec74bb410f587da42cf9015..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f14e68c7000dabc2e119bd4bd0a38a74f015efda \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/_remote.repositories deleted file mode 100644 index a6e74c15dcba1783f4c55bed489cb487031111d6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:38 CST 2019 -maven-repository-metadata-2.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom deleted file mode 100644 index 9aec1c9d4bca6d36179405aa043b820956b7b5b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - maven - org.apache.maven - 2.0.2 - - 4.0.0 - org.apache.maven - maven-repository-metadata - Maven Repository Metadata Model - 2.0.2 - Maven Plugin Mapping - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-7 - - - - xpp3-writer - java - xpp3-reader - xsd - - - - - 1.0.0 - src/main/mdo/metadata.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 deleted file mode 100644 index 3e10b847dab8d8712e85e2d4670f6ba9faedb067..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f731304626897c68836461f0df5134f26aeddcf1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/_remote.repositories deleted file mode 100644 index a7a42bda8fe8beb5255c22855c58b5d0e64b6493..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:50 CST 2019 -maven-repository-metadata-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom deleted file mode 100644 index d8e40d704b7f492f7a4ef754c57863a6f46a08f0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom +++ /dev/null @@ -1,52 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-repository-metadata - Maven Repository Metadata Model - 2.0.5 - Maven Plugin Mapping - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-7 - - - site-docs - pre-site - - xdoc - xsd - - - - - xpp3-writer - java - xpp3-reader - xsd - - - - - 1.0.0 - src/main/mdo/metadata.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 deleted file mode 100644 index 481bb4ac4e3d8bbec22470b77dec39d5f9159c88..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -64b711de2206859a37333e015c24451546278123 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories deleted file mode 100644 index 3928d86fa30aafc220f8017c7bcd84b389ad7d05..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-repository-metadata-2.0.6.pom>repo.jenkins-ci.org= -maven-repository-metadata-2.0.6.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar deleted file mode 100644 index af8d9fd2012ff5da9d0d67e2bb2cb9a88d8d4bb5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar.sha1 deleted file mode 100644 index bbd72901a6dfea9aeba0b0b007bab9cb666805e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ae64379396d2eba33616ce1e0a458c3a744b317b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom deleted file mode 100644 index 7f60d0f785a6e364b48c823e043ec761fda74a10..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-repository-metadata - Maven Repository Metadata Model - Maven Plugin Mapping - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - 1.0.0 - src/main/mdo/metadata.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 deleted file mode 100644 index 316f59c398d6c6f4f8466afe02fc0bdf11594729..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bdcd11054562df6124286aaf252ae8f256879e26 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/_remote.repositories deleted file mode 100644 index 63cd1ae645e935c5b3a817f6a7a5a19374e541ac..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:59 CST 2019 -maven-repository-metadata-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom deleted file mode 100644 index 31540a1d221727c2d31c6456ea62558760256af6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-repository-metadata - Maven Repository Metadata Model - Maven Plugin Mapping - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - 1.0.0 - src/main/mdo/metadata.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 deleted file mode 100644 index 9af3b32eca1352271ff437091c0d70eeee5ea359..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -741cf565a37d838eb7bebbb3d38a8293835b6cd5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories deleted file mode 100644 index 371d01948ffa8545e099890086feac891af93ff8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-repository-metadata-2.0.9.jar>repo.jenkins-ci.org= -maven-repository-metadata-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar deleted file mode 100644 index 279ab2e65f68b6aa1eb8d17827b31c3d0dbb0fb5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar.sha1 deleted file mode 100644 index 2d2a2d6328fd9c673aeaa0dce24bbdf3df994fd6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd79022a827b1d577865d5c97f8ad0c7d6b067b7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom deleted file mode 100644 index bf940bfc965146e4c6328e11f0d2f55d3fa47c07..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-repository-metadata - Maven Repository Metadata Model - Maven Plugin Mapping - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-8 - - 1.0.0 - src/main/mdo/metadata.mdo - - - - - - - org.codehaus.plexus - plexus-utils - - - diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 deleted file mode 100644 index 631b0d47eb2c40e594c6957a7f0eca8148b92a31..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dc5dac36e8c773d8645a681b71b3d80a3e3b8916 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/_remote.repositories deleted file mode 100644 index 1f3339759f8efaa46d4f2c13094ffa9be97ca01a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:46 CST 2019 -maven-repository-metadata-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom deleted file mode 100644 index 6a475791fae609aacefbe8453500a173530cf286..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.0 - - - maven-repository-metadata - - Maven Repository Metadata Model - Per-directory repository metadata. - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/metadata.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 deleted file mode 100644 index cfda54a0efa33c32d127b10964fb4de5ef0d2c4b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7805801e5b7d9eafeb3baf07e864650a62991192 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories deleted file mode 100644 index 4e949eaf9d86a464a76a5be386e5e9410d2e218e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-repository-metadata-2.2.1.jar>repo.jenkins-ci.org= -maven-repository-metadata-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar deleted file mode 100644 index 5b4f494dfee05e2cd30cd9f4964f0ecd4dcd8a78..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar.sha1 deleted file mode 100644 index 59f8b7ca51b0acf86001a2a329ea99c0cfb59bbb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -98f0c07fcf1eeb213bef8d9316a9935184084b06 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom deleted file mode 100644 index 7dca36d963065a440bd2e5a6e96886b2f57b7812..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-repository-metadata - - Maven Repository Metadata Model - Per-directory repository metadata. - - - - org.codehaus.plexus - plexus-utils - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/metadata.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom.sha1 deleted file mode 100644 index 33474f16b7e830f2ca73067fd394ba1d4646a1db..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -415f88d96ea04b0fcef38c50123da1ccc2be49d2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories deleted file mode 100644 index c2ac460ed83b8b66fdebed7fcc54d6b8adca935a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-repository-metadata-3.0.jar>repo.jenkins-ci.org= -maven-repository-metadata-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar deleted file mode 100644 index f28813cfb0b615ad0f8109631be7fc216321888f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar.sha1 deleted file mode 100644 index 145ec4a168acccb500864d6e36b20fa6d3e7c7ca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3c41f7565b1e189ff7a312796b9d2c470c09a8b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom deleted file mode 100644 index f0af8459fee358383211d2a6215fda0d1973186f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-repository-metadata - - Maven Repository Metadata Model - Per-directory 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.0/maven-repository-metadata-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 deleted file mode 100644 index 9d07b35dacf6cb3af6b744ccabbfa00c4d50d564..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5126010cefcb80ed5dc6eb066541b546dbdbc971 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/_remote.repositories deleted file mode 100644 index e42b1b576329e0f244488c91a2d2c3c3ecb45474..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-repository-metadata-3.1.1.jar>repo.jenkins-ci.org= -maven-repository-metadata-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar deleted file mode 100644 index d5569550959c35d5345099d8d520775d69eaae29..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar.sha1 deleted file mode 100644 index 492dabe67c369f55f8d6aaa588762755c2bf181c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef5bccf2a7a22a326c8fe94e1d56f6f15419bedd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom deleted file mode 100644 index e19d045463a7683054d302a23f161ff78c0e938b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-repository-metadata - - Maven Repository Metadata Model - Per-directory local and remote repository metadata. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - 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.1.1/maven-repository-metadata-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom.sha1 deleted file mode 100644 index 548838e3a21a70ebae7f5b9f5a17367511849952..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3358a184057c8258612eb86b2eddb2c6e66694b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/_remote.repositories deleted file mode 100644 index 964696bf7a3b2137071812f275158ea615b4a8c5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:02 CST 2019 -maven-repository-metadata-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom deleted file mode 100644 index c8ebf4557abf16f961ccd5ab7d262ec7da5fe032..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.2.1 - - - maven-repository-metadata - - Maven Repository Metadata Model - Per-directory local and remote repository metadata. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.2.1 - - - - - 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.2.1/maven-repository-metadata-3.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom.sha1 deleted file mode 100644 index cf745b274f0884f56aaee21a4fded1cbf5f1ce1f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a49fe98f8305e105643371df215437d50bd9882 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/_remote.repositories deleted file mode 100644 index b75e52c5595dbe6c96e8e161687431bb56cbf7ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:41 CST 2019 -maven-settings-builder-3.0.pom>repo.jenkins-ci.org= -maven-settings-builder-3.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar b/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar deleted file mode 100644 index daffe290d83410c7300628c5b40884ee43366323..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar.sha1 deleted file mode 100644 index 07aeec203bd819b0f1708175eee8cb0c7757d0f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -08234c1bdf7a9a28c671b0abf11f8adaa66440cd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom b/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom deleted file mode 100644 index dd4a7a1d7f465b52407e758b3996f7719cc183aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-settings-builder - - Maven Settings Builder - - - - 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.codehaus.plexus - plexus-component-metadata - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 deleted file mode 100644 index b102ef96fbc66776c9d83f839585908be83b2111..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -69a41566b573bda12bd2bb7dcb64d30da834cb9c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/_remote.repositories deleted file mode 100644 index 4965d44aa26ef098400e86ccbe1f5556c08e50a9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-settings-builder-3.1.1.jar>repo.jenkins-ci.org= -maven-settings-builder-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar deleted file mode 100644 index 320072653062c63e7a02551fb75bcaa72fc1aec9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar.sha1 deleted file mode 100644 index 7bf920dcb47a4b7c9df34150213074f37a1e4863..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e2d5e96ea4bbd4fc463dbb76d07dd8aefac05e3c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom deleted file mode 100644 index 595e816a40308c371d92709f3950ffe90aabeb0f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-settings-builder - - Maven Settings Builder - The effective settings builder, with inheritance and password decryption. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - 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.codehaus.plexus - plexus-component-metadata - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom.sha1 deleted file mode 100644 index 730c7a5e107139ee0263ab3b533e2d194d0391c7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ed8372f386790c5bbdf04a89d6dab8d49b4213c5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.0.10/_remote.repositories deleted file mode 100644 index 1bd763db5d7845e3c88ab17a9d319ab39f456c92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:52 CST 2019 -maven-settings-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom b/artifacts/m2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom deleted file mode 100644 index 7a0e84dbf60872975d503121f3b256ee9a571d4d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.10 - - 4.0.0 - maven-settings - Maven Local Settings Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/settings.mdo - - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom.sha1 deleted file mode 100644 index 70ffa0c847cb045f029430203c9ea1e73d6cacd9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -82fe60f0a91a6bd644e8888439203c47f057d088 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.0.5/_remote.repositories deleted file mode 100644 index fe05d83b4e09ab558ecaf38901603bd8e1d3fafc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:47 CST 2019 -maven-settings-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom b/artifacts/m2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom deleted file mode 100644 index 6fd7584f7801f0d4242a8b4b533d4824b98bc95f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - maven - org.apache.maven - 2.0.5 - - 4.0.0 - maven-settings - Maven Local Settings Model - 2.0.5 - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-7 - - - site-docs - pre-site - - xdoc - xsd - - - - - xpp3-writer - java - xpp3-reader - - - - - 1.0.0 - src/main/mdo/settings.mdo - - - - - - - org.apache.maven - maven-model - 2.0.5 - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 deleted file mode 100644 index e167b1e1e3d16d95e351be97af6fd224f4994ad9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -87aabc89ef7581c3e8119acf01280a701f446f37 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.0.6/_remote.repositories deleted file mode 100644 index 5484fd5c7db7847e7c0738d9fd4036effdf7d94d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:12 CST 2019 -maven-settings-2.0.6.jar>repo.jenkins-ci.org= -maven-settings-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar b/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar deleted file mode 100644 index 4953b082363e3a3ca23bd86fcdf74c9d93e5f89f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar.sha1 deleted file mode 100644 index 84e862446145da0add86a16205e41943c40d1be0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5da16cf9def50e3a352cd7e8923a49ebd72003b8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom b/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom deleted file mode 100644 index 618d8c1076d7cb22e703f4e88d85a1f0d8eed210..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - maven-settings - Maven Local Settings Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - src/main/mdo/settings.mdo - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 deleted file mode 100644 index 46872ad19a539eba85491c5ffd59e6d278ef8e3c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6e8ca6b7fce58a28d2b73774fe277593af14d82a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.7/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.0.7/_remote.repositories deleted file mode 100644 index 49117b5206a5832bd1d1436642367fd4c9dfbc12..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:38 CST 2019 -maven-settings-2.0.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7.jar b/artifacts/m2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7.jar deleted file mode 100644 index ccfb063525df3810cdf86f6ce1c8b5e0cf1c3b80..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7.jar.sha1 deleted file mode 100644 index f672b20c5ad5b6c0e8558544b6f1d6e00025a567..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.7/maven-settings-2.0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -92f935914fd9ffc4ac17182d3cfb9aa18555967b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.0.8/_remote.repositories deleted file mode 100644 index 3da5965ea9abceedd1aea0027af8659bf13cee89..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:57 CST 2019 -maven-settings-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom b/artifacts/m2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom deleted file mode 100644 index 256f07e66f4c9d5b44d1873667e344dfb62ff052..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.8 - - 4.0.0 - maven-settings - Maven Local Settings Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - src/main/mdo/settings.mdo - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 deleted file mode 100644 index 4a68881fe9a8de377e4d883ab0e4eba80a6729f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2516e8bf74885aef0561c2132b185d882253cb19 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.0.9/_remote.repositories deleted file mode 100644 index c66a32d791c14bfdef4c741ce0c9edc7ff1ad23b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -maven-settings-2.0.9.jar>repo.jenkins-ci.org= -maven-settings-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar b/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar deleted file mode 100644 index e7bdd63b9d2f4b9e1f272c6083d9507a9cce7940..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar.sha1 deleted file mode 100644 index 65f1c9cd6b67f10f54a386d761f2b8cdf61a644c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ab8d338c00fab0db29af358ab0676c3c02d7329f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom b/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom deleted file mode 100644 index 10e3680d660171c12729d2ab08ab32f9aa316503..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.9 - - 4.0.0 - maven-settings - Maven Local Settings Model - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - src/main/mdo/settings.mdo - - - - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 deleted file mode 100644 index 90c0a8364b003dacd2bf4c5d5879929976f75066..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f1fde243f26152cc66f7f1d6b4e3bb19d39d6847 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/2.2.1/_remote.repositories deleted file mode 100644 index 8ad46a0234bbaadb1ec01b96f67600c797eb6667..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-settings-2.2.1.pom>repo.jenkins-ci.org= -maven-settings-2.2.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar deleted file mode 100644 index edef547f37d4b1e50b184d8204532a628858c1ea..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar.sha1 deleted file mode 100644 index 4563a22b1198d86362fae7d01e5c2fd87a916a27..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2236ffe71fa5f78ce42b0f5fc22c54ed45f14294 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom deleted file mode 100644 index c893ac31fabd52e0a5c652eb8912b242a44dd8ff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-settings - - Maven Local Settings Model - - - - org.apache.maven - maven-model - - - org.codehaus.plexus - plexus-interpolation - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-container-default - - - - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/settings.mdo - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom.sha1 deleted file mode 100644 index 339644086c63b9a4e9be699c9e9df07a1025e085..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d54135b84370b3b0b70d84ffbb4ddf161c303d56 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/3.0/_remote.repositories deleted file mode 100644 index 22b67207499a523463ec9b45ebb3133f2cd771c9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:41 CST 2019 -maven-settings-3.0.jar>repo.jenkins-ci.org= -maven-settings-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar b/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar deleted file mode 100644 index 6b8f98fb6ec78ba9b355f0ae92b132d96a691811..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar.sha1 deleted file mode 100644 index bf73a838b70335c8659c4a294f9cde61b73dadfc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8ee129adae535dd610f2dc952fddce68ac42fd86 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom b/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom deleted file mode 100644 index 0606fe650ebbe867be8c66a9ce3c0a5691b65280..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.0 - - - maven-settings - - Maven Settings - Maven Settings - - - - 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.0/maven-settings-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 deleted file mode 100644 index 86489a92ed3054c94afbd542b6d66c4fa486d746..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -efc9c618ca5b82f76d1894977482069fe0e4565a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-settings/3.1.1/_remote.repositories deleted file mode 100644 index 4ede662ffcc050c9bc79b340e84ee8aeb3c8e50c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:40 CST 2019 -maven-settings-3.1.1.pom>repo.jenkins-ci.org= -maven-settings-3.1.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar b/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar deleted file mode 100644 index 99ecb61b5fde579ca415fea1870817cd1a21a750..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar.sha1 deleted file mode 100644 index 520fbd1395675741ff364ba5ee2b0b3cbae65a03..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -311d38cf15ec7f5c713985862632db91b7a827af \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom b/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom deleted file mode 100644 index b49b5332edba0babf684ae3ffb2e67f1e9ab8e15..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven - 3.1.1 - - - maven-settings - - Maven Settings - Maven Settings model. - - - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - scm:git:https://git-wip-us.apache.org/repos/asf/maven.git - maven-3.1.1 - - - - - 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.1.1/maven-settings-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom.sha1 deleted file mode 100644 index a93af2baae042140e77ad1a9dce9e174b42d5b0c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce08f76064ae401c8362e16c32f3806f0bb8961b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven-toolchain/1.0/_remote.repositories deleted file mode 100644 index cb8f60665fd893bbf3c91c1b20077cdbd5e7a740..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:52 CST 2019 -maven-toolchain-1.0.jar>repo.jenkins-ci.org= -maven-toolchain-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar b/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar deleted file mode 100644 index ace00cfb44fb114685b06657dda8e56825e8682c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar.sha1 b/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar.sha1 deleted file mode 100644 index ab2d6da93d600415cfd0f06744e8c5b2431cc5b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ff4a3f5869f68dfa05562a84e7a5d510d909608 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom b/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom deleted file mode 100644 index 2feb71791aed71f03737dd162da73e272ea05703..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom +++ /dev/null @@ -1,86 +0,0 @@ - - - - org.apache.maven - maven - 2.0.6 - - 4.0.0 - maven-toolchain - Maven Toolchains - 1.0 - http://maven.apache.org - - - junit - junit - 3.8.1 - test - - - org.apache.maven - maven-core - 2.0.6 - - - org.apache.maven - maven-artifact - 2.0.6 - - - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-14 - - - - java - xsd - xpp3-reader - - - - - 1.0.0 - false - src/main/mdo/toolchains.xml - - - - maven-shade-plugin - org.apache.maven.plugins - 1.0-alpha-15 - - - shading - package - - shade - - - - - ${project.groupId}:${project.artifactId} - - - - - org.codehaus.plexus.util - - org.codehaus.plexus.util.xml.Xpp3Dom - org.codehaus.plexus.util.xml.pull.* - - - - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 deleted file mode 100644 index 7ec22a5959d3dfd2fa2edb4e7da5d254ae8ce836..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/1.0/maven-toolchain-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -071d6b30688d3ca1036333069b33811361b37cb1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/_remote.repositories deleted file mode 100644 index a6da53c5bbf487e47b0ce9e70cdc2b78c933e00b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:15 CST 2019 -maven-toolchain-2.2.1.pom>repo.jenkins-ci.org= -maven-toolchain-2.2.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar b/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar deleted file mode 100644 index 47ad66ca5bf12ba7700ae81e2ba7000361a96a69..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar.sha1 deleted file mode 100644 index e03fd76c3ad199fa15b1a1aceb8f76c4af59eede..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0be589179cfbbad11e48572bf1a28e3490c7b197 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom b/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom deleted file mode 100644 index aa45c31bc72cbdc26663d4740158297f108a7d3a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - maven-toolchain - - Maven Toolchains - - - - junit - junit - 3.8.1 - test - - - org.apache.maven - maven-core - - - org.apache.maven - maven-artifact - - - - - - - org.codehaus.modello - modello-maven-plugin - - - - java - xsd - xpp3-reader - - - - - 1.0.0 - false - - src/main/mdo/toolchains.mdo - - - - - maven-shade-plugin - org.apache.maven.plugins - - - shading - package - - shade - - - - - ${project.groupId}:${project.artifactId} - - - - - org.codehaus.plexus.util - - org.codehaus.plexus.util.xml.Xpp3Dom - org.codehaus.plexus.util.xml.pull.* - - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom.sha1 deleted file mode 100644 index 3adb4c680ff283b665893c156c9978d403ed2022..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef19c9782d233f4515cf83b4208dd04731ed8989 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.10/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.0.10/_remote.repositories deleted file mode 100644 index f144062869e3c6634ec37d29d3d6113a61b203a6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:51 CST 2019 -maven-2.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom b/artifacts/m2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom deleted file mode 100644 index 584de735e8d6ce457dca1345564c8cdb71376487..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom +++ /dev/null @@ -1,618 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 9 - ../pom/maven/pom.xml - - - maven - 2.0.10 - pom - - Maven - Maven is a project development 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 - 2001 - - - jira - http://jira.codehaus.org/browse/MNG - - - - - 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://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.10 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.10 - http://svn.apache.org/viewvc/maven/components/tags/maven-2.0.10 - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - - maven-assembly-plugin - 2.2-beta-1 - - - maven-shade-plugin - 1.0 - - - maven-surefire-plugin - 2.3 - - - maven-deploy-plugin - 2.3 - - - maven-install-plugin - 2.1 - - - maven-site-plugin - 2.0-beta-5 - - - maven-resources-plugin - 2.2 - - - maven-remote-resources-plugin - 1.0-beta-2 - - - maven-clean-plugin - 2.1.1 - - - maven-release-plugin - 2.0-beta-7 - - https://svn.apache.org/repos/asf/maven/components/tags - true - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-22 - - - site-docs - pre-site - - xdoc - xsd - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.1 - - - 2.0.9 - - - org/apache/maven/artifact/metadata/ArtifactMetadataSource* - org/apache/maven/project/MavenProjectBuilder* - org/apache/maven/project/ProjectBuilderConfiguration* - org/apache/maven/project/interpolation/ModelInterpolator* - org/apache/maven/project/inheritance/ModelInheritanceAssembler* - org/apache/maven/execution/MavenExecutionRequest* - org/apache/maven/plugin/DefaultPluginManager* - - - org/apache/maven/model/io/xpp3/* - org/apache/maven/plugin/lifecycle/io/xpp3/* - org/apache/maven/usability/plugin/io/xpp3/* - org/apache/maven/plugin/registry/io/xpp3/* - org/apache/maven/profiles/io/xpp3/* - org/apache/maven/artifact/repository/metadata/io/xpp3/* - org/apache/maven/settings/io/xpp3/* - org/apache/maven/toolchain/model/io/xpp3/* - - - - - - - - - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - maven-toolchain - apache-maven - - - - - - apache.releases - Apache Release Distribution Repository - https://repository.apache.org/service/local/staging/deploy/maven2 - - - apache.snapshots - ${distMgmtSnapshotsName} - ${distMgmtSnapshotsUrl} - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.version}/ - - - - - Apache Development Snapshot Repository - https://repository.apache.org/content/repositories/snapshots - 2.0.10 - 1.0-beta-2 - - - - - - junit - junit - 3.8.1 - test - - - - - - - - - - org.apache.maven - maven-plugin-descriptor - ${mavenVersion} - - - org.apache.maven - maven-error-diagnostics - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact-test - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-plugin-registry - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - - commons-cli - commons-cli - 1.0 - - - org.apache.maven.doxia - doxia-sink-api - 1.0-alpha-11 - - - - org.codehaus.plexus - plexus-interpolation - 1.1 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.5 - - - org.apache.maven.wagon - wagon-provider-api - ${wagonVersion} - - - org.apache.maven.wagon - wagon-ssh - ${wagonVersion} - - - org.apache.maven.wagon - wagon-ssh-external - ${wagonVersion} - - - org.apache.maven.wagon - wagon-file - ${wagonVersion} - - - org.apache.maven.wagon - wagon-webdav - ${wagonVersion} - - - org.apache.maven.wagon - wagon-http-lightweight - ${wagonVersion} - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - - - - quality-checks - - - - - org.codehaus.mojo - clirr-maven-plugin - - - clirr-check - verify - - check - - - - - - - - - release - - - - - maven-assembly-plugin - false - - - src/main/assembly/src.xml - - gnu - maven-${project.version}-src - - - - make-assembly - package - - single - - - - - - - org.codehaus.mojo - clirr-maven-plugin - - - - check - - - - - - - - - run-its - - maven-core-it-runner - - - - - reporting - - - - org.codehaus.mojo - clirr-maven-plugin - - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - true - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom.sha1 deleted file mode 100644 index b3cc8d824ba25e56968e5a7fd6ab28764ea9497e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d79e3299a4ebb7bd50ca8208b86a7c1d9394ae7b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.2/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.0.2/_remote.repositories deleted file mode 100644 index dda562df9bc05871bf0a0b31c4d2ee9c6fef75ee..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:36 CST 2019 -maven-2.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom b/artifacts/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom deleted file mode 100644 index 70d496ec38103dd215d9213b1577905213fe121f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom +++ /dev/null @@ -1,352 +0,0 @@ - - - 4.0.0 - org.apache.maven - maven - pom - Maven - 2.0.2 - Maven is a project development 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/ - - jira - http://jira.codehaus.org/browse/MNG - - - continuum - - - -
commits@maven.apache.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://www.nabble.com/Maven---Users-f178.html - - - - 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 - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - commits@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - - Apache Announce List - announce-subscribe@apache.org - announce-unsubscribe@apache.org - announce@apache.org - http://mail-archives.apache.org/mod_mbox/www-announce/ - - - - - jvanzyl - Jason van Zyl - jason@maven.org - ASF - - PMC Chair - - -5 - - - brett - Brett Porter - brett@apache.org - ASF - - PMC Member - - +10 - - - evenisse - Emmanuel Venisse - evenisse@apache.org - ASF - - PMC Member - - +1 - - - jdcasey - John Casey - jdcasey@apache.org - ASF - - PMC Member - - -5 - - - kenney - Kenney Westerhof - kenney@apache.org - Neonics - - PMC Member - - +1 - - - trygvis - Trygve Laugstol - trygvis@apache.org - ASF - - PMC Member - - +1 - - - vmassol - Vincent Massol - vmassol@apache.org - ASF - - PMC Member - - +1 - - - vsiveton - Vincent Siveton - vsiveton@apache.org - ASF - - Committer - - -5 - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.2 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.2 - http://svn.apache.org/viewcvs.cgi/maven/components/tags/maven-2.0.2 - - - Apache Software Foundation - http://www.apache.org/ - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - - - - maven-archiver - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-core - maven-error-diagnostics - maven-model - maven-model-converter - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-plugin-tools - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - - - - - - junit - junit - 3.8.1 - test - - - - - - org.codehaus.mojo - changelog-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9 - - - org.codehaus.plexus - plexus-utils - 1.1 - - - org.apache.maven.wagon - wagon-provider-api - 1.0-alpha-6 - - - org.apache.maven.wagon - wagon-ssh - 1.0-alpha-6 - - - org.apache.maven.wagon - wagon-ssh-external - 1.0-alpha-6 - - - org.apache.maven.wagon - wagon-file - 1.0-alpha-6 - - - org.apache.maven.wagon - wagon-http-lightweight - 1.0-alpha-6 - - - - - - repo1 - Maven Central Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 - - - apache.snapshots - Apache Development Repository - scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository - - - website - scp://minotaur.apache.org/www/maven.apache.org/ - - -
diff --git a/artifacts/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 deleted file mode 100644 index e8556543c8751b37161c9bc0173aea6a03040b67..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -82d7670f60ddef7eb7c3c90c73b9379f20d99ba8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.5/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.0.5/_remote.repositories deleted file mode 100644 index 0434a2a30f9d9d5550f654f8afd8c0956448b068..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:47 CST 2019 -maven-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom b/artifacts/m2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom deleted file mode 100644 index 21b04244d2d12cea7b22e629720fb096756a7c72..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom +++ /dev/null @@ -1,162 +0,0 @@ - - - maven-parent - org.apache.maven - 5 - ../pom/maven/pom.xml - - 4.0.0 - maven - pom - Maven - 2.0.5 - Maven is a project development 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 - - jira - http://jira.codehaus.org/browse/MNG - - 2001 - - - 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://www.nabble.com/Maven---Users-f178.html - - - - - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.5 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.5 - https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.5 - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - - - - - clean-before-source-assembly - - - source-assembly - true - - - - - - maven-clean-plugin - - - clean-before-source-assembly - package - - clean - - - - - - - - - - maven-archiver - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - - - - junit - junit - 3.8.1 - test - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9 - - - org.codehaus.plexus - plexus-utils - 1.1 - - - org.apache.maven.wagon - wagon-provider-api - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh-external - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-file - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-http-lightweight - 1.0-beta-2 - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/2.0.5/ - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 deleted file mode 100644 index 182824346283b41d73d2bdd1c869d570cb4cc411..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9801e4423479367099ad4507c51c4f7f5b19bc6f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.0.6/_remote.repositories deleted file mode 100644 index 1b79022e249e2518f6e2497c344df1bbbe3e92c2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:33 CST 2019 -maven-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom b/artifacts/m2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom deleted file mode 100644 index e4622f0ca9069ce63515a2f8ba5ed669df88b737..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +++ /dev/null @@ -1,246 +0,0 @@ - - - - 4.0.0 - - org.apache.maven - maven-parent - 5 - ../pom/maven/pom.xml - - maven - pom - Maven - 2.0.6 - Maven is a project development 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 - - jira - http://jira.codehaus.org/browse/MNG - - 2001 - - - 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://www.nabble.com/Maven---Users-f178.html - - - - - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.6 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.6 - https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.6 - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/components/tags - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-13 - - - site-docs - pre-site - - xdoc - xsd - - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - - - - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - - - - junit - junit - 3.8.1 - test - - - - 2.0.6 - - - - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact-test - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-plugin-registry - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.4.1 - - - org.apache.maven.wagon - wagon-provider-api - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh-external - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-file - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-http-lightweight - 1.0-beta-2 - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.version}/ - - - diff --git a/artifacts/m2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 deleted file mode 100644 index 20e0d45e8497d3f6e6fad2395b3e7c7b9da4fd32..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1991be0ed3e1820e135201406d5acabf8c08d426 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.8/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.0.8/_remote.repositories deleted file mode 100644 index 1d0d053806f7a4c43ef0b46a8d1f7a0ac919575d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:55 CST 2019 -maven-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom b/artifacts/m2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom deleted file mode 100644 index ae15b41a46068689374bfede06d5dc4fee6b3940..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom +++ /dev/null @@ -1,333 +0,0 @@ - - - - 4.0.0 - - org.apache.maven - maven-parent - 6 - ../pom/maven/pom.xml - - maven - pom - Maven - 2.0.8 - Maven is a project development 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 - - jira - http://jira.codehaus.org/browse/MNG - - 2001 - - - 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://www.nabble.com/Maven---Users-f178.html - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.8 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.8 - https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.8 - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - - maven-assembly-plugin - 2.2-beta-1 - - - maven-surefire-plugin - 2.3 - - - maven-deploy-plugin - 2.3 - - - maven-install-plugin - 2.1 - - - maven-site-plugin - 2.0-beta-5 - - - maven-resources-plugin - 2.2 - - - maven-remote-resources-plugin - 1.0-alpha-15 - - - maven-clean-plugin - 2.1.1 - - - maven-release-plugin - 2.0-beta-7 - - https://svn.apache.org/repos/asf/maven/components/tags - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-13 - - - site-docs - pre-site - - xdoc - xsd - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - - - - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - - - - junit - junit - 3.8.1 - test - - - - 2.0.8 - - - - - - org.apache.maven - maven-plugin-descriptor - ${mavenVersion} - - - org.apache.maven - maven-error-diagnostics - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact-test - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-plugin-registry - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.4.6 - - - org.apache.maven.wagon - wagon-provider-api - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh-external - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-file - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-http-lightweight - 1.0-beta-2 - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.version}/ - - - - - release - - - - maven-assembly-plugin - false - - - src/main/assembly/src.xml - - gnu - maven-${project.version}-src - - - - make-assembly - package - - single - - - - - - - - - run-its - - maven-core-it-runner - - - - diff --git a/artifacts/m2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 deleted file mode 100644 index 4cc3987511d0fe38d64a397e5e61292f4ce58600..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0b6bdac7d11f0fc5c4c4bb0f336323f7b86cddc0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.0.9/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.0.9/_remote.repositories deleted file mode 100644 index 7af1adb3ddce77c96d39b0909dc7dd0991a9a702..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:37 CST 2019 -maven-2.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom b/artifacts/m2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom deleted file mode 100644 index b02be1f1397dcdf5b7f6127f28208f5a88389f2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom +++ /dev/null @@ -1,478 +0,0 @@ - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 8 - ../pom/maven/pom.xml - - - maven - 2.0.9 - pom - - Maven - Maven is a project development 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 - 2001 - - - jira - http://jira.codehaus.org/browse/MNG - - - - - 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://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.9 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.9 - https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0.9 - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - - maven-javadoc-plugin - 2.4 - - - maven-assembly-plugin - 2.2-beta-1 - - - maven-shade-plugin - 1.0 - - - maven-surefire-plugin - 2.3 - - - maven-deploy-plugin - 2.3 - - - maven-install-plugin - 2.1 - - - maven-site-plugin - 2.0-beta-5 - - - maven-resources-plugin - 2.2 - - - maven-remote-resources-plugin - 1.0-beta-2 - - - maven-clean-plugin - 2.1.1 - - - maven-release-plugin - 2.0-beta-7 - - https://svn.apache.org/repos/asf/maven/components/tags - true - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-13 - - - site-docs - pre-site - - xdoc - xsd - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - - - - - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - maven-toolchain - apache-maven - - - - - junit - junit - 3.8.1 - test - - - - - 2.0.9 - - - - - - - - org.apache.maven - maven-plugin-descriptor - ${mavenVersion} - - - org.apache.maven - maven-error-diagnostics - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact-test - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-plugin-registry - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.1 - - - org.apache.maven.wagon - wagon-provider-api - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-ssh-external - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-file - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - org.apache.maven.wagon - wagon-http-lightweight - 1.0-beta-2 - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.version}/ - - - - - - release - - - - maven-assembly-plugin - false - - - src/main/assembly/src.xml - - gnu - maven-${project.version}-src - - - - make-assembly - package - - single - - - - - - - - - run-its - - maven-core-it-runner - - - - - - reporting-aggregate - - - - org.apache.maven.plugins - maven-jxr-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - true - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 deleted file mode 100644 index 60c25b02b97d704c19ccdd3d9a67807245417d7f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -696e3d1eaf254c63347613715faa31e5eecb282d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.2.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.2.0/_remote.repositories deleted file mode 100644 index cfc4b5e125e9963e3d41009e3e9b8941fc14a4c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.2.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:43 CST 2019 -maven-2.2.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom b/artifacts/m2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom deleted file mode 100644 index 8986c5b494b9b915601c397fbaae6eb5f816382d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom +++ /dev/null @@ -1,613 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 11 - ../pom/maven/pom.xml - - - maven - 2.2.0 - pom - - Maven - Maven is a project development 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 - 2001 - - - jira - http://jira.codehaus.org/browse/MNG - - - - - 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://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/components/tags/maven-2.2.0 - scm:svn:https://svn.apache.org/repos/asf/maven/components/tags/maven-2.2.0 - http://svn.apache.org/viewvc/maven/components/tags/maven-2.2.0 - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - maven-assembly-plugin - 2.2-beta-4 - - - maven-shade-plugin - 1.0 - - - maven-surefire-plugin - 2.3 - - - maven-deploy-plugin - 2.3 - - - maven-install-plugin - 2.1 - - - maven-site-plugin - 2.0 - - - maven-resources-plugin - 2.2 - - - maven-remote-resources-plugin - 1.0-beta-2 - - - maven-clean-plugin - 2.1.1 - - - maven-release-plugin - 2.0-beta-7 - - https://svn.apache.org/repos/asf/maven/components/tags - true - install - - - - org.codehaus.modello - modello-maven-plugin - 1.0.1 - - true - - - - site-docs - pre-site - - xdoc - xsd - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.1 - - - 2.1.0 - - org/apache/maven/project/artifact/ArtifactWithProject* - org/apache/maven/project/artifact/ProjectArtifactFactory* - org/apache/maven/project/artifact/VersionExpressionTransformation* - - - - - - - - maven-enforcer-plugin - 1.0-alpha-4 - - - enforce-jdk - - enforce - - - - - [1.5.0,] - - - true - - - - - - - - - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-compat - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - maven-toolchain - apache-maven - - - - 2.2.0 - 1.0-beta-6 - 1.1 - - - - - - junit - junit - 3.8.1 - test - - - - - - - - - - org.apache.maven - maven-plugin-descriptor - ${mavenVersion} - - - org.apache.maven - maven-error-diagnostics - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact-test - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-compat - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-plugin-registry - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - - commons-cli - commons-cli - 1.2 - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-logging-api - ${doxiaVersion} - - - - org.codehaus.plexus - plexus-interpolation - 1.11 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.15 - - - org.sonatype.plexus - plexus-sec-dispatcher - 1.3 - - - org.apache.maven.wagon - wagon-provider-api - ${wagonVersion} - - - org.apache.maven.wagon - wagon-ssh - ${wagonVersion} - - - org.apache.maven.wagon - wagon-ssh-external - ${wagonVersion} - - - org.apache.maven.wagon - wagon-file - ${wagonVersion} - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - ${wagonVersion} - - - org.apache.maven.wagon - wagon-http - ${wagonVersion} - - - org.slf4j - slf4j-jdk14 - 1.5.6 - - - org.slf4j - jcl-over-slf4j - 1.5.6 - - - backport-util-concurrent - backport-util-concurrent - 3.1 - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.version}/ - - - - - - quality-checks - - - - - org.codehaus.mojo - clirr-maven-plugin - - - clirr-check - verify - - check - - - - - - - - - release - - - - - org.codehaus.mojo - clirr-maven-plugin - - - - check - - - - - - - - - run-its - - maven-core-it-runner - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.1 - - - org.codehaus.mojo - clirr-maven-plugin - - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - true - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 deleted file mode 100644 index 0f9b9f601def44d24a5722d21460fddef955ab09..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c5bb0fda80306d0d27b3221d511c5032c95b27fa \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven/2.2.1/_remote.repositories deleted file mode 100644 index ccd82686d64a809d4cf08b9d58437857496720e7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:49 CST 2019 -maven-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom b/artifacts/m2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom deleted file mode 100644 index e2fde29d3255e8d81e7ec5b6afa49d53eef3b95e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom +++ /dev/null @@ -1,613 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven - maven-parent - 11 - ../pom/maven/pom.xml - - - maven - 2.2.1 - pom - - Maven - Maven is a project development 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 - 2001 - - - jira - http://jira.codehaus.org/browse/MNG - - - - - 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://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/maven-2/tags/maven-2.2.1 - scm:svn:https://svn.apache.org/repos/asf/maven/maven-2/tags/maven-2.2.1 - http://svn.apache.org/viewvc/maven/maven-2/tags/maven-2.2.1 - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - maven-assembly-plugin - 2.2-beta-4 - - - maven-shade-plugin - 1.0 - - - maven-surefire-plugin - 2.3 - - - maven-deploy-plugin - 2.3 - - - maven-install-plugin - 2.1 - - - maven-site-plugin - 2.0 - - - maven-resources-plugin - 2.2 - - - maven-remote-resources-plugin - 1.0-beta-2 - - - maven-clean-plugin - 2.1.1 - - - maven-release-plugin - 2.0-beta-7 - - https://svn.apache.org/repos/asf/maven/maven-2/tags - true - install - - - - org.codehaus.modello - modello-maven-plugin - 1.0.1 - - true - - - - site-docs - pre-site - - xdoc - xsd - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - org.codehaus.mojo - clirr-maven-plugin - 2.2.1 - - - 2.2.0 - - org/apache/maven/artifact/manager/WagonManager* - org/apache/maven/extension/ExtensionManager* - org/apache/maven/plugin/PluginManager* - - - - - - - - maven-enforcer-plugin - 1.0-alpha-4 - - - enforce-jdk - - enforce - - - - - [1.5.0,] - - - true - - - - - - - - - maven-artifact - maven-artifact-manager - maven-artifact-test - maven-compat - maven-core - maven-error-diagnostics - maven-model - maven-monitor - maven-plugin-api - maven-plugin-descriptor - maven-plugin-parameter-documenter - maven-plugin-registry - maven-profile - maven-project - maven-reporting - maven-repository-metadata - maven-script - maven-settings - maven-toolchain - apache-maven - - - - 2.2.1 - 1.0-beta-6 - 1.1 - - - - - - junit - junit - 3.8.1 - test - - - - - - - - - - org.apache.maven - maven-plugin-descriptor - ${mavenVersion} - - - org.apache.maven - maven-error-diagnostics - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact-test - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-compat - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-plugin-registry - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - org.apache.maven - maven-toolchain - ${mavenVersion} - - - - commons-cli - commons-cli - 1.2 - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-logging-api - ${doxiaVersion} - - - - org.codehaus.plexus - plexus-interpolation - 1.11 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.15 - - - org.sonatype.plexus - plexus-sec-dispatcher - 1.3 - - - org.apache.maven.wagon - wagon-provider-api - ${wagonVersion} - - - org.apache.maven.wagon - wagon-ssh - ${wagonVersion} - - - org.apache.maven.wagon - wagon-ssh-external - ${wagonVersion} - - - org.apache.maven.wagon - wagon-file - ${wagonVersion} - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - ${wagonVersion} - - - org.apache.maven.wagon - wagon-http - ${wagonVersion} - - - org.apache.maven.wagon - wagon-http-lightweight - ${wagonVersion} - - - org.slf4j - slf4j-jdk14 - 1.5.6 - - - org.slf4j - jcl-over-slf4j - 1.5.6 - - - backport-util-concurrent - backport-util-concurrent - 3.1 - - - easymock - easymock - 1.2_Java1.3 - test - - - classworlds - classworlds - 1.1 - - - - - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.version}/ - - - - - - quality-checks - - - - - org.codehaus.mojo - clirr-maven-plugin - - - clirr-check - verify - - check - - - - - - - - - release - - - - - org.codehaus.mojo - clirr-maven-plugin - - - - check - - - - - - - - - run-its - - maven-core-it-runner - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.1 - - - org.codehaus.mojo - clirr-maven-plugin - - - - - - - reporting-aggregate - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - true - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2se/1.4.2/docs/api - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - true - - - - - - - diff --git a/artifacts/m2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 deleted file mode 100644 index 81cb1ea110f77ea57dab61b38f7113a115831c0b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7bc311044fbacb404de025b76feefa3567f0e5d7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/maven/3.0/_remote.repositories deleted file mode 100644 index f3686f51293d133c1057867a61ba03dfd21ab285..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:15 CST 2019 -maven-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/3.0/maven-3.0.pom b/artifacts/m2/org/apache/maven/maven/3.0/maven-3.0.pom deleted file mode 100644 index fdd5b4ec076cc3dd8e90a40eedee875bcabaec9a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.0/maven-3.0.pom +++ /dev/null @@ -1,581 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 15 - ../pom/maven/pom.xml - - - maven - 3.0 - pom - - Apache Maven 3.x - Maven is a project development 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/ - 2001 - - - 2.2.3 - 1.2 - 1.2_Java1.3 - 3.8.2 - 1.5.5 - 1.14 - 2.0.4 - 1.4.2 - 1.0-beta-6 - 1.3 - 1.4 - 1.4 - 1.3 - 1.7 - true - - - - - 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://old.nabble.com/Maven-Developers-f179.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://old.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://old.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-commits - - http://www.mail-archive.com/commits@maven.apache.org - http://old.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://old.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://old.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - maven-core - apache-maven - maven-model - maven-settings - maven-settings-builder - maven-artifact - maven-aether-provider - maven-repository-metadata - maven-plugin-api - maven-model-builder - maven-embedder - maven-compat - - - - scm:svn:http://svn.apache.org/repos/asf/maven/maven-3/tags/maven-3.0 - scm:svn:https://svn.apache.org/repos/asf/maven/maven-3/tags/maven-3.0 - http://svn.apache.org/viewvc/maven/maven-3/tags/maven-3.0 - - - jira - http://jira.codehaus.org/browse/MNG - - - - apache.website - scp://people.apache.org/www/maven.apache.org/ref/${project.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.codehaus.plexus - plexus-utils - ${plexusUtilsVersion} - - - org.sonatype.sisu - sisu-inject-plexus - ${sisuInjectVersion} - - - org.codehaus.plexus - plexus-component-annotations - ${plexusVersion} - - - junit - junit - - - - - org.codehaus.plexus - plexus-classworlds - ${classWorldsVersion} - - - org.codehaus.plexus - plexus-interpolation - ${plexusInterpolationVersion} - - - - org.apache.maven.wagon - wagon-provider-api - ${wagonVersion} - - - org.apache.maven.wagon - wagon-file - ${wagonVersion} - - - org.apache.maven.wagon - wagon-http-lightweight - ${wagonVersion} - - - - org.sonatype.aether - aether-api - ${aetherVersion} - - - org.sonatype.aether - aether-impl - ${aetherVersion} - - - org.sonatype.aether - aether-util - ${aetherVersion} - - - org.sonatype.aether - aether-connector-wagon - ${aetherVersion} - - - org.codehaus.plexus - plexus-container-default - - - - - - commons-cli - commons-cli - ${commonsCliVersion} - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - commons-jxpath - commons-jxpath - ${jxpathVersion} - - - org.sonatype.plexus - plexus-sec-dispatcher - ${securityDispatcherVersion} - - - org.sonatype.plexus - plexus-cipher - ${cipherVersion} - - - - easymock - easymock - ${easyMockVersion} - test - - - - - - - - - - junit - junit - ${junitVersion} - test - - - - - - - - - org.codehaus.plexus - plexus-component-metadata - ${plexusVersion} - - - - generate-metadata - generate-test-metadata - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/maven-3/tags - true - - - - maven-surefire-plugin - - -Xmx256m - - - - org.codehaus.modello - modello-maven-plugin - ${modelloVersion} - - true - - - - site-docs - pre-site - - xdoc - xsd - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - org.apache.felix - maven-bundle-plugin - 1.0.0 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.2 - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.1 - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - check-java-1.5-compat - process-classes - - check - - - - - - - - - - apache-release - - - - maven-assembly-plugin - - - source-release-assembly - - - true - - - - - - - - - reporting - - - - maven-javadoc-plugin - 2.5 - - - maven-pmd-plugin - - 1.5 - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - - - - - - - - - - maven-repo-local - - - maven.repo.local - - - - - - maven-surefire-plugin - - - - - maven.repo.local - ${maven.repo.local} - - - - - - - - - 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/maven/3.0/maven-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/maven/3.0/maven-3.0.pom.sha1 deleted file mode 100644 index 896f7843317eb9116086fcdd0b99231c44acce55..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.0/maven-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -30c961aaf964aadcc028102ebe03d1afff324ec0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/3.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven/3.1.1/_remote.repositories deleted file mode 100644 index 0920c7aa89e936240d32e30d1848910f8d60617e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:38 CST 2019 -maven-3.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom b/artifacts/m2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom deleted file mode 100644 index 922976fc9a14bf8a3693f326fab0a3b2c83b822e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom +++ /dev/null @@ -1,628 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../pom/maven/pom.xml - - - maven - 3.1.1 - 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 - - - 2.5.1 - 1.2 - 1.2_Java1.3 - 3.8.2 - 1.5.5 - 1.19 - 3.0.15 - - 11.0.2 - 3.1.3 - 0.0.0.M5 - 2.4 - 1.3 - 1.7 - 1.8.1 - 1.3 - 0.9.0.M2 - 1.7.5 - true - - apache-maven - Maven - Apache Maven - ref/3-LATEST - - - - maven-plugin-api - 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.1.1 - - - jira - http://jira.codehaus.org/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/content/${maven.site.path} - - - - - - Stuart McCulloch - - - - - - - - - - - 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.codehaus.plexus - plexus-utils - ${plexusUtilsVersion} - - - com.google.guava - guava - ${guavaVersion} - - - org.sonatype.sisu - sisu-guice - ${guiceVersion} - - - org.sonatype.sisu - sisu-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-wagon - ${aetherVersion} - - - - commons-cli - commons-cli - ${commonsCliVersion} - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - commons-jxpath - commons-jxpath - ${jxpathVersion} - - - org.sonatype.plexus - plexus-sec-dispatcher - ${securityDispatcherVersion} - - - org.sonatype.plexus - plexus-cipher - ${cipherVersion} - - - - easymock - easymock - ${easyMockVersion} - test - - - - - - - - - - junit - junit - ${junitVersion} - test - - - - - - - - - org.codehaus.plexus - plexus-component-metadata - ${plexusVersion} - - - - generate-metadata - generate-test-metadata - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/maven-3/tags - true - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12 - - -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.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${maven.site.cache}/${maven.site.path} - true - - - - org.apache.rat - apache-rat-plugin - 0.9 - - - src/test/resources*/** - src/test/projects/** - src/test/remote-repo/** - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - check-java-1.5-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 - false - - - bootstrap/** - README.bootstrap.txt - - - false - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - - - - - apache-release - - - - maven-assembly-plugin - - - source-release-assembly - - - true - - - - - - org.apache.rat - apache-rat-plugin - true - - - check - - check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - 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 - 2.3 - - - aggregate - false - - aggregate - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - - - - - - - - - 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.1.1/maven-3.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom.sha1 deleted file mode 100644 index 607247bce18ac3d529bec6ec0204ab4951660421..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -309f55e492c59e5ad5008dc86293ba0c3b6eb616 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/maven/3.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/maven/3.2.1/_remote.repositories deleted file mode 100644 index 382edbe3b18c715f5b84299d95e9faa5283166f6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:01 CST 2019 -maven-3.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/maven/3.2.1/maven-3.2.1.pom b/artifacts/m2/org/apache/maven/maven/3.2.1/maven-3.2.1.pom deleted file mode 100644 index 57ac31976218095e0c080d4b461de4b2149f5d2b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.2.1/maven-3.2.1.pom +++ /dev/null @@ -1,644 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../pom/maven/pom.xml - - - maven - 3.2.1 - 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 - - - 2.5.1 - 1.2 - 1.2_Java1.3 - 3.8.2 - 1.5.5 - 1.19 - 3.0.17 - - 14.0.1 - 3.1.3 - 0.0.0.M5 - 2.6 - 1.3 - 1.7 - 1.8.1 - 1.3 - 0.9.0.M2 - 1.7.5 - true - - apache-maven - Maven - Apache Maven - ref/3-LATEST - - - - maven-plugin-api - 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.2.1 - - - jira - http://jira.codehaus.org/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/content/${maven.site.path} - - - - - - Stuart McCulloch - - - - - 2.2.1 - - - - - - - - - - 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.codehaus.plexus - plexus-utils - ${plexusUtilsVersion} - - - com.google.guava - guava - ${guavaVersion} - - - org.sonatype.sisu - sisu-guice - ${guiceVersion} - - - org.sonatype.sisu - sisu-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-wagon - ${aetherVersion} - - - - commons-cli - commons-cli - ${commonsCliVersion} - - - commons-lang - commons-lang - - - commons-logging - commons-logging - - - - - commons-jxpath - commons-jxpath - ${jxpathVersion} - - - org.sonatype.plexus - plexus-sec-dispatcher - ${securityDispatcherVersion} - - - org.sonatype.plexus - plexus-cipher - ${cipherVersion} - - - - easymock - easymock - ${easyMockVersion} - test - - - - - - - - - - junit - junit - ${junitVersion} - test - - - - - - - - - org.codehaus.plexus - plexus-component-metadata - ${plexusVersion} - - - - generate-metadata - generate-test-metadata - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-release-plugin - - true - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.16 - - -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.apache.maven.plugins - maven-assembly-plugin - 2.4 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - org.apache.maven.doxia - doxia-module-markdown - 1.5 - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0 - - ${maven.site.cache}/${maven.site.path} - true - - - - org.apache.rat - apache-rat-plugin - 0.10 - - - src/test/resources*/** - src/test/projects/** - src/test/remote-repo/** - **/*.odg - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.9 - - - org.codehaus.mojo.signature - java16 - 1.1 - - - - - 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 - false - - - bootstrap/** - README.bootstrap.txt - - - false - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - - - - - apache-release - - - - maven-assembly-plugin - - - source-release-assembly - - - true - - - - - - org.apache.rat - apache-rat-plugin - true - - - check - - check - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9.1 - - 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 - 2.4 - - - aggregate - false - - aggregate - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - - - - - - - - - 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.2.1/maven-3.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/maven/3.2.1/maven-3.2.1.pom.sha1 deleted file mode 100644 index 464610638471becd261ab5312a22abb3f31ffa1e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/maven/3.2.1/maven-3.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -54af5be0a5677e896e9eaa356bbb82abda06bd76 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/_remote.repositories b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/_remote.repositories deleted file mode 100644 index 5421e241916ff47f8f1bb76c72dd87589af08f19..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:11 CST 2019 -maven-plugin-annotations-3.3.pom>repo.jenkins-ci.org= -maven-plugin-annotations-3.3.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.jar b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.jar deleted file mode 100644 index 5828c7144942bf3c1e629c215fac9093ed965641..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.jar.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.jar.sha1 deleted file mode 100644 index ccf2724342bed9c5cc451ae165fb175805d17cf3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -101cb0295bb16c64e85f2b5354b57058e907b061 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.pom b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.pom deleted file mode 100644 index 28e532fbfac0034d6d19ae371698c96982931976..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - - 4.0.0 - - - maven-plugin-tools - org.apache.maven.plugin-tools - 3.3 - - - 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.3/maven-plugin-annotations-3.3.pom.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.pom.sha1 deleted file mode 100644 index f1bf414c9d893b2f4b77140ceb7a707e7c2157e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.3/maven-plugin-annotations-3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9d77631275f6bf69a640d451002df492671c0485 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/_remote.repositories b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/_remote.repositories deleted file mode 100644 index a4b45da62e7e995e80e22394de6eea17989082ed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:28 CST 2019 -maven-plugin-tools-api-2.4.3.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/maven-plugin-tools-api-2.4.3.jar b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/maven-plugin-tools-api-2.4.3.jar deleted file mode 100644 index 58f94ab1cec0ec6e32b22f9d2f7f79ecc8d5034f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/maven-plugin-tools-api-2.4.3.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/maven-plugin-tools-api-2.4.3.jar.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/maven-plugin-tools-api-2.4.3.jar.sha1 deleted file mode 100644 index a30e06b8b383c91377ca75833a520050f29b1e51..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools-api/2.4.3/maven-plugin-tools-api-2.4.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e6d3abeb84081004ad2ff1b1b4ca921ed912a0d9 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/_remote.repositories b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/_remote.repositories deleted file mode 100644 index 53863af0463aa2663df94b6b6217a00c06f77a87..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:12 CST 2019 -maven-plugin-tools-3.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/maven-plugin-tools-3.3.pom b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/maven-plugin-tools-3.3.pom deleted file mode 100644 index 0af658b0a803b1705eca673ce8e8b31e12ce0e9d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/maven-plugin-tools-3.3.pom +++ /dev/null @@ -1,373 +0,0 @@ - - - - 4.0.0 - - - maven-parent - org.apache.maven - 24 - ../pom/maven/pom.xml - - - org.apache.maven.plugin-tools - maven-plugin-tools - 3.3 - 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. - - http://maven.apache.org/plugin-tools - 2004 - - - - Muminur Choudhury - - - Tinguaro Barreno - - - James Phillpotts - - - Slawomir Jaranowski - - - Mikolaj Izdebski - - - - - 2.2.1 - - - - maven-script - maven-plugin-tools-generators - maven-plugin-tools-api - maven-plugin-tools-java - maven-plugin-tools-javadoc - maven-plugin-annotations - maven-plugin-tools-annotations - maven-plugin-tools-ant - maven-plugin-tools-beanshell - maven-plugin-tools-model - maven-plugin-plugin - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugin-tools/tags/maven-plugin-tools-3.3 - scm:svn:https://svn.apache.org/repos/asf/maven/plugin-tools/tags/maven-plugin-tools-3.3 - http://svn.apache.org/viewvc/maven/plugin-tools/tags/maven-plugin-tools-3.3 - - - jira - http://jira.codehaus.org/browse/MPLUGIN - - - Jenkins - https://builds.apache.org/job/maven-plugin-tools/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 1.2 - 2.2.1 - 1.7.1 - 1.8 - plugin-tools-archives/plugin-tools-LATEST - - - - - - - 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.15 - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - junit - junit - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-archiver - 2.1.1 - - - org.codehaus.plexus - plexus-velocity - 1.1.8 - - - velocity - velocity - - - - - - - org.apache.velocity - velocity - 1.7 - - - - com.thoughtworks.qdox - qdox - 1.12.1 - - - - org.ow2.asm - asm - 5.0.2 - - - org.ow2.asm - asm-commons - 5.0.2 - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - ${pluginTestingHarnessVersion} - test - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - junit - junit - 3.8.2 - test - - - org.easytesting - fest-assert - 1.4 - test - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/plugin-tools/tags - true - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - generate-test-metadata - - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - - http://sonatype.github.com/sonatype-aether/apidocs/ - - - - - 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 - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/maven-plugin-tools-3.3.pom.sha1 b/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/maven-plugin-tools-3.3.pom.sha1 deleted file mode 100644 index f45bb0e4f2ba8d70768bcbef1bc066234ed83363..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugin-tools/maven-plugin-tools/3.3/maven-plugin-tools-3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f278e0eb9e6cf75a3113b1f8aa2c10654cb5e703 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/_remote.repositories deleted file mode 100644 index 6e94bf73ce620ed64ea94be1a5eac7e4d8e4c9b8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:45 CST 2019 -maven-antrun-plugin-1.8.jar>repo.jenkins-ci.org= -maven-antrun-plugin-1.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar b/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar deleted file mode 100644 index cc8a169fb6fa5f41930b320bd6f65535f5d60a63..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar.sha1 deleted file mode 100644 index 27100d2c7ea82416312924ea46fa72a3080f4efd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0d02c0af622aa6a0c86e81c519299e888e0a32a3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom b/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom deleted file mode 100644 index 2ab291f756f2e4b7cfd6732420445de422040041..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 27 - ../maven-plugins/pom.xml - - - maven-antrun-plugin - 1.8 - maven-plugin - - Apache Maven AntRun Plugin - Runs Ant scripts embedded in the POM - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.8 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-antrun-plugin-1.8 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-antrun-plugin-1.8 - - - jira - http://jira.codehaus.org/browse/MANTRUN - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.apache.ant - ant - 1.9.4 - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom.sha1 deleted file mode 100644 index aa97d5faafeb670cb487beb463abdb8a34cfa523..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-antrun-plugin/1.8/maven-antrun-plugin-1.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9e81fe7535b053176fcff17837d8a58eb2f93ff3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/_remote.repositories deleted file mode 100644 index bb29302877da4095352be081b721d73029c5c033..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:47 CST 2019 -maven-assembly-plugin-2.6.jar>repo.jenkins-ci.org= -maven-assembly-plugin-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.jar b/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.jar deleted file mode 100644 index ca2c9d1cb0442207b23f5859a180ed219a0d1c6d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.jar.sha1 deleted file mode 100644 index 826c538d8cd091688ab648d64c68667c8e1272e6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a62c97a1bf000c80ff48995d10e1c8f31a2a9cf0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.pom b/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.pom deleted file mode 100644 index 6aada288ac2a664966354b378f2ae07f4ed09dba..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.pom +++ /dev/null @@ -1,438 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 27 - ../maven-plugins/pom.xml - - - maven-assembly-plugin - 2.6 - maven-plugin - - Apache Maven Assembly Plugin - A Maven plugin to create archives of your project's sources, classes, dependencies etc. from flexible assembly descriptors. - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-assembly-plugin-2.6 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-assembly-plugin-2.6 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-assembly-plugin-2.6 - - - jira - https://issues.apache.org/jira/browse/MASSEMBLY - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} - - - - - 1.6 - 1.6 - - 1.1.3 - 2.5 - 1.3 - 2.2.1 - true - RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder,JavadocMethod - - - - - Stephen Colebourne - - - Tony Jewell - - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven.shared - maven-common-artifact-filters - 1.4 - - - com.google.code.findbugs - jsr305 - 2.0.1 - provided - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - org.codehaus.plexus - plexus-interpolation - 1.22 - - - org.codehaus.plexus - plexus-archiver - 3.0.1 - - - org.apache.maven.shared - file-management - 1.1 - - - org.apache.maven.shared - maven-shared-io - 1.1 - - - commons-io - commons-io - 2.2 - - - org.apache.maven.shared - maven-filtering - ${mavenFilteringVersion} - - - org.codehaus.plexus - plexus-io - 2.6 - - - org.apache.maven - maven-archiver - ${mavenArchiverVersion} - - - org.codehaus.plexus - plexus-utils - 3.0.21 - - - org.apache.maven.shared - maven-repository-builder - 1.0 - - - org.apache.maven.plugin-testing - maven-plugin-testing-tools - 1.3 - test - - - org.apache.maven.plugin-testing - maven-test-tools - 1.3 - test - - - org.easymock - easymockclassextension - 2.5.2 - test - - - org.easymock - easymock - 2.5.2 - test - - - jdom - jdom - 1.0 - test - - - jaxen - jaxen - 1.0-FCS - test - - - saxpath - saxpath - 1.0-FCS - test - - - junit - junit - 4.8.1 - test - - - org.codehaus.plexus - plexus-component-annotations - provided - - - - - - - src/main/resources - true - - - ${project.build.directory}/generated-resources/plexus - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.6 - - - descriptors - - generate-metadata - generate-test-metadata - - - - - - org.codehaus.modello - modello-maven-plugin - 1.8.3 - - ${mdoVersion} - - src/main/mdo/descriptor.mdo - src/main/mdo/component.mdo - - - - - mdo - generate-sources - - xpp3-reader - xpp3-writer - java - xsd - - - - mdo-site - pre-site - - xdoc - xsd - - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - \ - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${testOutputToFile} - - - ${project.build.testOutputDirectory} - - - - - org.apache.rat - apache-rat-plugin - - - - src/it/projects/basic-features/outputFileNameMapping-withArtifactBaseVersion/repository/org/codehaus/plexus/plexus-utils/** - src/functional-tests/remote-repo/assembly/dependency-artifact/** - - src/it/projects/repositories/repo-with-snapshot-parents/child/remote-repository/org/codehaus/plexus/plexus-utils/1.4.3-SNAPSHOT/plexus-utils-1.4.3-SNAPSHOT.pom - src/it/projects/container-descriptors/metaInf-services-aggregation/**/* - src/it/projects/container-descriptors/metaInf-spring-aggregation/**/* - - src/it/**/*.txt - - src/it/**/*.file - src/it/projects/filtering-feature/filters-defined-in-build/src/main/config/** - src/it/projects/bugs/massembly-731/** - - - - - - - - - - run-its - - 1.9 - ${project.build.directory}/it/it-project-parent - ${project.build.directory}/it/projects - ${project.build.directory}/local-repository - file://${project.build.testOutputDirectory}/remote-repository - **/pom.xml - false - true - ${project.version} - false - - - - - - org.apache.maven.plugins - maven-invoker-plugin - ${invokerPluginVersion} - - ${localRepositoryPath} - - ${useJvmChmod} - ${testVersion} - ${localRepositoryPath} - ${invokerPluginVersion} - - true - - - - setup-integration-test-env - pre-integration-test - - install - run - - - true - - install - - src/it/it-project-parent - ${itParent} - - pom.xml - - ${it.streamLogs} - - - - integration-test - integration-test - - src/it/projects - true - ${itProjects} - test.properties - - ${useJvmChmod} - - ${it.debug} - src/it/settings.xml - - ${it.pomIncludes} - - ${it.streamLogs} - - repositories/repo-with-snapshot-parents/pom.xml - - - bugs/massembly-285/massembly-285-*/pom.xml - - dependency-sets/depSet-enum-vs-wildcard/enum/pom.xml - dependency-sets/depSet-enum-vs-wildcard/wildcard/pom.xml - - **/my-app*/pom.xml - **/child*/pom.xml - **/module*/pom.xml - **/descriptor/pom.xml - **/handler-def/pom.xml - **/assembly/pom.xml - dependency-sets/depSet-transFromProfile/pom.xml - - verify - - - - - - org.apache.commons - commons-compress - 1.9 - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.pom.sha1 deleted file mode 100644 index fa841f77b186f388e0cad1ddb58151a713f3a2ac..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-assembly-plugin/2.6/maven-assembly-plugin-2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -255c6859e6c9edef1672edd6d2f24661cea6e64b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/_remote.repositories deleted file mode 100644 index 742979371d3719c239522f197e3138a177d70dd2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:23 CST 2019 -maven-clean-plugin-2.6.1.jar>repo.jenkins-ci.org= -maven-clean-plugin-2.6.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar deleted file mode 100644 index c8adc081e253e268583219d59d9c26107dabf7d5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar.sha1 deleted file mode 100644 index 1d286cb1039ba508456c430a795de44c215c9a43..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -bfdf7d6c2f8fc8759457e9d54f458ba56ac7b30f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom deleted file mode 100644 index 0e734bf4969b3a643c2577438af5424738797df6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 26 - ../maven-plugins/pom.xml - - - maven-clean-plugin - 2.6.1 - 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:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-clean-plugin-2.6.1 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-clean-plugin-2.6.1 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-clean-plugin-2.6.1 - - - JIRA - http://jira.codehaus.org/browse/MCLEAN - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - 3.2 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven.shared - maven-shared-utils - 0.7 - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 1.3 - test - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - true - - - - mojo-descriptor - - descriptor - - - - - - - - - - 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/2.6.1/maven-clean-plugin-2.6.1.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom.sha1 deleted file mode 100644 index a07aff74bc80bcbc5c6af69c5d622708d3d10ab3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9cf81de16d08b47b068f5af6c7d2a2a9910f734f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/_remote.repositories deleted file mode 100644 index 507a4aada976dd40654759d01c3da7b50779de56..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:31 CST 2019 -maven-compiler-plugin-3.1.pom>repo.jenkins-ci.org= -maven-compiler-plugin-3.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar deleted file mode 100644 index 167be4f28621795842330eeb7ab65cee47fd8e34..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar.sha1 deleted file mode 100644 index b4b89d2fbf8ee293b9cab07555cb2397a071a257..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9977a8d04e75609cf01badc4eb6a9c7198c4c5ea \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom deleted file mode 100644 index a725b9d78858573edf56f4f41362e2855639d3f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom +++ /dev/null @@ -1,305 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 24 - ../maven-plugins/pom.xml - - - maven-compiler-plugin - 3.1 - maven-plugin - - Maven Compiler Plugin - The Compiler Plugin is used to compile the sources of your project. - 2001 - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.1 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-compiler-plugin-3.1 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-compiler-plugin-3.1 - - - JIRA - http://jira.codehaus.org/browse/MCOMPILER - - - - 2.0.9 - 3.2 - 2.2 - 1.8.0 - 2.7.0-01 - 2.0.4-04 - 2.2.0 - - - - - Jan Sievers - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginPluginVersion} - provided - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - - - org.apache.maven.wagon - wagon-file - - - org.apache.maven.wagon - wagon-http-lightweight - - - org.apache.maven.wagon - wagon-ssh - - - org.apache.maven.wagon - wagon-ssh-external - - - commons-cli - commons-cli - - - classworlds - classworlds - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-interactivity-api - - - - - org.apache.maven - maven-toolchain - 1.0 - - - org.apache.maven.shared - maven-shared-utils - 0.1 - - - org.apache.maven.shared - maven-shared-incremental - 1.1 - - - - 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.codehaus.plexus - plexus-container-default - 1.5.5 - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 2.0-alpha-1 - test - - - - junit - junit - 4.8.1 - test - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - true - - - - mojo-descriptor - process-classes - - descriptor - - - - help-goal - - helpmojo - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - src/it - ${project.build.directory}/it - - */pom.xml - extras/*/pom.xml - - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - 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} - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom.sha1 deleted file mode 100644 index ef99e5730ab9c3fd1ffed41e8c3b97eaf2a48559..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-compiler-plugin/3.1/maven-compiler-plugin-3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5fa5457d1460c3af6a72521226d71cd9c1f395d8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/_remote.repositories deleted file mode 100644 index eb3821ed124f5085208da4f50817a10453606657..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:48 CST 2019 -maven-dependency-plugin-2.10.jar>repo.jenkins-ci.org= -maven-dependency-plugin-2.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.jar b/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.jar deleted file mode 100644 index 80d2461736281f3f1cd2cae9b5743a59a9533324..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.jar.sha1 deleted file mode 100644 index b55e9c10b3baf33380efadcaac1b15a3adbe43df..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -af87ceeb71c6499147c5d27f74c9317bf707538e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.pom b/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.pom deleted file mode 100644 index ed30e29dfc365ca52475e5aebd64d7ebf26ad9e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.pom +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 27 - ../maven-plugins/pom.xml - - - maven-dependency-plugin - 2.10 - maven-plugin - - Apache Maven Dependency Plugin - Provides utility goals to work with dependencies like copying, unpacking, analyzing, resolving and many more. - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-dependency-plugin-2.10 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-dependency-plugin-2.10 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-dependency-plugin-2.10 - - - JIRA - http://jira.codehaus.org/browse/MDEP - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - - Bakito - - - Baptiste MATHUS - - - Kalle Korhonen - - - Ryan Heinen - - - Andreas Kuhtz - - - Holger Mense - - - - - 2.2.1 - 1.4 - 2.1 - - - - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-repository-metadata - ${mavenVersion} - - - - - org.apache.maven.reporting - maven-reporting-api - 3.0 - - - org.apache.maven.reporting - maven-reporting-impl - 2.2 - - - commons-io - commons-io - 1.4 - - - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-site-renderer - ${doxiaVersion} - - - - - org.codehaus.plexus - plexus-archiver - 2.9 - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.apache.maven.shared - file-management - 1.2.1 - - - org.codehaus.plexus - plexus-io - 2.4 - - - - - org.apache.maven.shared - maven-dependency-analyzer - 1.6 - - - org.apache.maven.shared - maven-dependency-tree - 2.2 - - - org.apache.maven.shared - maven-common-artifact-filters - 1.4 - - - org.apache.maven.shared - maven-invoker - 2.1.1 - - - - commons-lang - commons-lang - 2.6 - - - - commons-collections - commons-collections - 3.2.1 - - - - classworlds - classworlds - 1.1 - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - junit - junit - 4.11 - test - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - - - org.codehaus.plexus - plexus-interpolation - 1.21 - test - - - - - - - - - org.apache.rat - apache-rat-plugin - - - - src/it/projects/tree/expected.txt - src/it/projects/tree-includes/expected.txt - src/it/projects/tree-verbose/expected.txt - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - -Xmx384m - - ${maven.home} - - - - - - - - - run-its - - - - org.apache.maven.plugins - maven-invoker-plugin - - - clean - process-sources - - src/it/projects - - purge-local-repository-bad-pom/pom.xml - - - src/it/mrm/settings.xml - - ${repository.proxy.url} - - - - - org.codehaus.mojo - mrm-maven-plugin - 1.0-beta-2 - - - - start - stop - - - - - repository.proxy.url - - - src/it/mrm/repository - - - - - - - - - - - reporting - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - de - pt_BR - sv - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.pom.sha1 deleted file mode 100644 index a41be73bc0995bd386b1d5cdc788e01adb46c686..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-dependency-plugin/2.10/maven-dependency-plugin-2.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4daa1e9a380987e9decc89da7cb59c89e1060dcc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/_remote.repositories deleted file mode 100644 index 92ffbead2a2b9702419efe489b649b87293ec273..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:37 CST 2019 -maven-deploy-plugin-2.8.2.pom>repo.jenkins-ci.org= -maven-deploy-plugin-2.8.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar b/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar deleted file mode 100644 index 6bf26ffb0ca37bfadeef5c416382baaee33cdf44..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar.sha1 deleted file mode 100644 index e6c0535a42951877c9452788384db393e2253064..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3c2d83ecd387e9843142ae92a0439792c1500319 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom b/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom deleted file mode 100644 index 03b2d9c3a73c159e0c84685f2429ba440987a03d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.plugins - maven-plugins - 25 - ../maven-plugins/pom.xml - - - maven-deploy-plugin - 2.8.2 - maven-plugin - - Apache Maven Deploy Plugin - Uploads the project artifacts to the internal remote repository. - 2004 - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-deploy-plugin-2.8.2 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-deploy-plugin-2.8.2 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-deploy-plugin-2.8.2 - - - JIRA - http://jira.codehaus.org/browse/MDEPLOY - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - 3.2 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginPluginVersion} - provided - - - org.codehaus.plexus - plexus-utils - 3.0.15 - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 1.2 - test - - - org.mockito - mockito-core - 1.9.5 - test - - - junit - junit - 3.8.2 - test - - - - - - - Hermann Josef Hill - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - true - - - - mojo-descriptor - process-classes - - descriptor - - - - help-goal - - helpmojo - - - - - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - ${project.build.directory}/it - true - - */pom.xml - */non-default-pom.xml - - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - deploy - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - 2.3 - - - Type,Key,Summary,Assignee,Status,Resolution,Fix Version - true - Closed - Type,Key - - - - - jira-report - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom.sha1 deleted file mode 100644 index df53d03cb621fe8cb0e48bac75e079e4f6f57517..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7feb36f26137084a8a8654d83efcbd8fb3d8a0a1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/_remote.repositories deleted file mode 100644 index 9bc448cfd371f2ee1a397016a2d74756ac6aee43..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:04 CST 2019 -maven-help-plugin-2.2.jar>repo.jenkins-ci.org= -maven-help-plugin-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.jar b/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.jar deleted file mode 100644 index 19314d626e32fbaf4ecd8e9020551d0939db13db..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.jar.sha1 deleted file mode 100644 index 26cbcd1016b17eb71715aeef0882a5511941ef8c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c8b771337bbe83860e351d2f594287d94aefc305 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.pom b/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.pom deleted file mode 100644 index fbca107b91f36b34a225defb36ab2922aa337e1e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.pom +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 24 - ../maven-plugins/pom.xml - - - maven-help-plugin - 2.2 - maven-plugin - - Maven Help Plugin - - The Maven Help plugin provides goals aimed at helping to make sense out of - the build environment. It includes the ability to view the effective - POM and settings files, after inheritance and active profiles - have been applied, as well as a describe a particular plugin goal to give usage information. - - 2001 - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-help-plugin-2.2 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-help-plugin-2.2 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-help-plugin-2.2 - - - JIRA - http://jira.codehaus.org/browse/MPH - - - - 2.2.1 - 3.2 - - - - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-plugin-descriptor - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-profile - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - org.apache.maven - maven-plugin-parameter-documenter - ${mavenVersion} - - - - - org.apache.maven.plugin-tools - maven-plugin-tools-api - 2.4.3 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginVersion} - provided - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9 - - - org.codehaus.plexus - plexus-component-annotations - provided - - - org.codehaus.plexus - plexus-interactivity-api - 1.0-alpha-4 - - - plexus - plexus-utils - - - - - org.codehaus.plexus - plexus-utils - 1.5.7 - - - - - jdom - jdom - 1.0 - - - com.thoughtworks.xstream - xstream - 1.4.3 - - - commons-lang - commons-lang - 2.4 - - - - - junit - junit - 3.8.2 - test - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 1.2 - test - - - junit-addons - junit-addons - 1.4 - test - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginVersion} - - true - org.apache.maven.plugins.help - - - - - - - maven-plugin-plugin - - - generate-descriptor - - descriptor - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.8 - - true - ${project.build.directory}/it - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.pom.sha1 deleted file mode 100644 index 4911a05cd1b06a076572f2d98c67504fac2ff2a2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-help-plugin/2.2/maven-help-plugin-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -92e824a961704e7223f8424013810b1b091290ac \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/_remote.repositories deleted file mode 100644 index bd6b326ccbd59f69135ba7a1869f3794768f0c19..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:36 CST 2019 -maven-install-plugin-2.5.2.jar>repo.jenkins-ci.org= -maven-install-plugin-2.5.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar b/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar deleted file mode 100644 index 50674a1f40a3e676254feccc04e54da07dc23c1e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar.sha1 deleted file mode 100644 index 53fe77112e5069f9e67145be5ee27073173157d6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8a67631619fc3c1d1f036e59362ddce71e1e496f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom b/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom deleted file mode 100644 index 11852e947b4791f0b385c32c3364c1a295bd0bff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 25 - ../maven-plugins/pom.xml - - - maven-install-plugin - 2.5.2 - maven-plugin - - Apache Maven Install Plugin - Copies the project artifacts to the user's local repository. - 2004 - - - ${mavenVersion} - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-install-plugin-2.5.2 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-install-plugin-2.5.2 - - http://svn.apache.org/viewvc/maven/plugins/tags/maven-install-plugin-2.5.2 - - - jira - http://jira.codehaus.org/browse/MINSTALL - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - 3.2 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-artifact-manager - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginPluginVersion} - provided - - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 1.2 - test - - - commons-codec - commons-codec - 1.6 - - - org.apache.maven.shared - maven-shared-utils - 0.4 - - - org.codehaus.plexus - plexus-utils - 3.0.15 - - - - - - - Hermann Josef Hill - - - Ludwig Magnusson - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - true - - - - mojo-descriptor - process-classes - - descriptor - - - - - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - ${project.build.directory}/it - true - - */pom.xml - */non-default-pom.xml - - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - true - - clean - install - - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom.sha1 deleted file mode 100644 index b15be99630c046dc7eef48c12413b2bf29ecf3cd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6247f7b4dc0b0a710e3577c806bf73b35f3fb363 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/_remote.repositories deleted file mode 100644 index 114b30daba33038d13a8fc2893565c564c5ff8db..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:29 CST 2019 -maven-jar-plugin-2.6.jar>repo.jenkins-ci.org= -maven-jar-plugin-2.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar deleted file mode 100644 index c722d27577589ac51bc1346657aa8e9a74dcc7b6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar.sha1 deleted file mode 100644 index 40007caf065164704af1e717075a857c1f547af9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -618f08d0fcdd3929af846ef1b65503b5904f93e3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom deleted file mode 100644 index 101c1d346492727e769e93eb99ae352f7a8b2d87..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 27 - ../maven-plugins/pom.xml - - - maven-jar-plugin - 2.6 - 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:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-jar-plugin-2.6 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-jar-plugin-2.6 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-jar-plugin-2.6 - - - JIRA - http://jira.codehaus.org/browse/MJAR - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.6 - 2.2.1 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-archiver - ${mavenArchiverVersion} - - - org.codehaus.plexus - plexus-utils - 3.0.20 - runtime - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - org.codehaus.plexus - plexus-archiver - 2.9 - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 1.3 - test - - - - - - - - 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 - - - - - integration-test - - install - integration-test - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom.sha1 deleted file mode 100644 index 7fcf9fca91f746ce6bf6eb10c15fb66ff399a6d4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-jar-plugin/2.6/maven-jar-plugin-2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0640c36e2ec6439fcdb3ae80279653d5104d6d78 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/_remote.repositories deleted file mode 100644 index 60dd33a5d2e297c40630cfd9f46eba0df6703a4d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:24 CST 2019 -maven-plugins-23.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom deleted file mode 100644 index 7ab0adfd68dd9e58856e5d631da09232655eb0a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom +++ /dev/null @@ -1,256 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 22 - ../../pom/maven/pom.xml - - - org.apache.maven.plugins - maven-plugins - 23 - pom - - Maven Plugins - Maven Plugins - http://maven.apache.org/plugins/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-23 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-23 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-23 - - - Jenkins - https://builds.apache.org/hudson/job/maven-plugins/ - - - - - apache.website - scp://people.apache.org/www/maven.apache.org/plugins/ - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.7.1 - - - 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 - 1 - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/plugins/tags - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/plugins/${project.artifactId}-${project.version} - - - - - - - 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 - - - generated-helpmojo - - helpmojo - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.1 - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-docck-plugin - - - docck-check - verify - - check - - - - - - - - - run-its - - - - 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 - - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.6 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom.sha1 deleted file mode 100644 index 89d873428a7c9d4da2fc1fca236084ad4746e1dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/23/maven-plugins-23.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a86c3e2a2ba2cf62c7f052635e526c3312760179 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/_remote.repositories deleted file mode 100644 index 8548b750e3e1f0931f06bcbb8fbea093916edc07..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:01 CST 2019 -maven-plugins-24.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom deleted file mode 100644 index c09b464fff3a9be8744aef8e926337349b981e3f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom +++ /dev/null @@ -1,295 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../../pom/maven/pom.xml - - - org.apache.maven.plugins - maven-plugins - 24 - pom - - Maven Plugins - Maven Plugins - http://maven.apache.org/plugins/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-24 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-24 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-24 - - - Jenkins - https://builds.apache.org/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/plugins - - - - - ${user.home}/maven-sites - plugins-archives/${project.artifactId}-${project.version} - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.7.1 - - - JIRA - - 1000 - true - - org/apache/maven/plugins - annoucement.txt - - [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/plugins/tags - - - - org.apache.maven.plugins - maven-site-plugin - 3.2 - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - ${project.reporting.outputDirectory} - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - ${maven.site.cache}/${maven.site.path} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - 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 - - - generated-helpmojo - - helpmojo - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.6 - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-docck-plugin - - - docck-check - verify - - check - - - - - - - - - run-its - - - - 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 - - - - - integration-test - - install - integration-test - verify - - - - - - - - - site-release - - plugins/${project.artifactId} - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.7 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 deleted file mode 100644 index 69cdd17b6ebf5fea696cc75c1eea959d3d25c036..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b5076e536f02b66fd6911a684542abbfb43d0bec \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/_remote.repositories deleted file mode 100644 index 31199b479185e119c10f582f889aa711b0fd5457..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:34 CST 2019 -maven-plugins-25.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom deleted file mode 100644 index dd9bc173518d6d953711a7d5fb99ee37bef96b54..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom +++ /dev/null @@ -1,262 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 24 - ../../pom/maven/pom.xml - - - org.apache.maven.plugins - maven-plugins - 25 - pom - - Apache Maven Plugins - Maven Plugins - http://maven.apache.org/plugins/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-25 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-25 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-25 - - - Jenkins - https://builds.apache.org/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - plugins-archives/${project.artifactId}-LATEST - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.9 - - - 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 - 1 - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/plugins/tags - apache-release,rat,run-its - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - 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 - - - generated-helpmojo - - helpmojo - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - - - - - - quality-checks - - - quality-checks - true - - - - - - org.apache.maven.plugins - maven-docck-plugin - - - docck-check - verify - - check - - - - - - - - - run-its - - - - 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 - - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.8 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom.sha1 deleted file mode 100644 index 22f818ec411873a1f14aa6872faf51cf9628c245..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -703028af854f99af53d514c4d30b71f45e50e865 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/_remote.repositories deleted file mode 100644 index dbaf331204842927775a6d76a142e5362652b72b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:21 CST 2019 -maven-plugins-26.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom deleted file mode 100644 index 1a1b79791236ccb972f34951b4406ab9b6c88eb6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom +++ /dev/null @@ -1,311 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 25 - ../../pom/maven/pom.xml - - - org.apache.maven.plugins - maven-plugins - 26 - pom - - Apache Maven Plugins - Maven Plugins - http://maven.apache.org/plugins/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-26 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-26 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-26 - - - Jenkins - https://builds.apache.org/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - plugins-archives/${project.artifactId}-LATEST - - - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.11 - - - 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 - 1 - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/plugins/tags - apache-release,rat,run-its - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginToolsVersion} - - - default-descriptor - process-classes - - - generated-helpmojo - - helpmojo - - - true - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - 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 - - - - 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 - - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - maven-2 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - true - - - - mojo-descriptor - - descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom.sha1 deleted file mode 100644 index 08474cb9aa8d23c4acf8a3e81bed4ff3649400dd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/26/maven-plugins-26.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b2cdc7fa01b2689e91ba6572938cba3f063046db \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/_remote.repositories deleted file mode 100644 index c10cfab20ceae5cea6bad81f788c978de929266b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:28 CST 2019 -maven-plugins-27.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom deleted file mode 100644 index 3299235736309e004bafe06c7dc6424ad2452704..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom +++ /dev/null @@ -1,311 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 26 - ../../pom/maven/pom.xml - - - org.apache.maven.plugins - maven-plugins - 27 - pom - - Apache Maven Plugins - Maven Plugins - http://maven.apache.org/plugins/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-27 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-27 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-27 - - - Jenkins - https://builds.apache.org/job/maven-plugins/ - - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - plugins-archives/${project.artifactId}-LATEST - - - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.11 - - - 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 - 1 - - - - - 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 - - - generated-helpmojo - - helpmojo - - - true - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - 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 - - - - 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 - - - - - integration-test - - install - integration-test - verify - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.9 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - maven-2 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - true - - - - mojo-descriptor - - descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom.sha1 deleted file mode 100644 index cf2ddd3f21d6a89c08c2c6dc9e5db6b68e80d575..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -98f02edc252e8bf595aa446b78cddb239691f207 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/_remote.repositories deleted file mode 100644 index 92659b724dd790435304347defa06020a4856362..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:39 CST 2019 -maven-plugins-28.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom b/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom deleted file mode 100644 index 99661643030a241c99294a330fa4c141bf583696..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom +++ /dev/null @@ -1,325 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 27 - ../../pom/maven/pom.xml - - - org.apache.maven.plugins - maven-plugins - 28 - pom - - Apache Maven Plugins - Maven Plugins - http://maven.apache.org/plugins/ - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-28 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-plugins-28 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-28 - - - 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 - 2.0.0 - - - - - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.11 - - - 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 - 1 - - - - - org.apache.maven.plugins - maven-invoker-plugin - ${mavenInvokerPluginVersion} - - - 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-plugin-plugin - - - org.apache.maven.plugins - maven-scm-publish-plugin - - ${project.reporting.outputDirectory} - - - - 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 - ${mavenInvokerPluginVersion} - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - maven-2 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - true - - - - mojo-descriptor - - descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom.sha1 deleted file mode 100644 index 6f641f281e441deac14998ef08b5f5c8e9da350e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d4c9e1274a376eef7d59dd31328e0802c0c4292b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories deleted file mode 100644 index b702f0ee5e881a8f720691107d289ce6f9502f3e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:26 CST 2019 -maven-resources-plugin-2.6.pom>repo.jenkins-ci.org= -maven-resources-plugin-2.6.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar deleted file mode 100644 index dfffe64b38070c09916d083fc2ca9cb14ecad553..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar.sha1 deleted file mode 100644 index 01b506d646658d789dbd5ad31f9c9000114d0f90..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd093ff6a4b680eae7ae83b5ab04310249fc6590 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom deleted file mode 100644 index a6554197169f79cfbd589975c660dfcc0a455dd5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 23 - ../maven-plugins/pom.xml - - - maven-resources-plugin - 2.6 - maven-plugin - - 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:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-resources-plugin-2.6 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-resources-plugin-2.6 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-resources-plugin-2.6 - - - JIRA - http://jira.codehaus.org/browse/MRESOURCES - - - - 1.1 - 2.0.6 - 3.1 - - - - - Graham Leggett - - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginPluginVersion} - provided - - - - org.codehaus.plexus - plexus-utils - 2.0.5 - - - - org.apache.maven.shared - maven-filtering - ${mavenFilteringVersion} - - - - org.codehaus.plexus - plexus-interpolation - 1.13 - - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.0-beta-1 - test - - - commons-io - commons-io - 1.4 - test - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - true - - - - mojo-descriptor - - descriptor - - - - help-goal - - helpmojo - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - - - - - - run-its - - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.7 - - true - verify - ${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-maven-plugin - - - - test-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom.sha1 deleted file mode 100644 index 09d26e912f5875694c8729b375f6c71e0bea0568..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5db5c3a879f31e8de7b580c79a52b245454c4620 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/_remote.repositories deleted file mode 100644 index 621aeeffb902e53e1d7fe025c23b3b0e59c14afe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:13 CST 2019 -maven-shade-plugin-2.2.pom>repo.jenkins-ci.org= -maven-shade-plugin-2.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar deleted file mode 100644 index 83b9eed914e876eab4e561888b1877ac6e564952..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 deleted file mode 100644 index 12470f433b7378ea4aa52e1b6f989c0bb2c5788b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -71450816528f4565b853c6ab2e9d4451fc50e130 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom deleted file mode 100644 index 47e9c5afe315164457eee92f5c3f42f227e9402b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - 4.0.0 - - - maven-plugins - org.apache.maven.plugins - 24 - ../maven-plugins/pom.xml - - - maven-shade-plugin - 2.2 - 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:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-2.2 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-2.2 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-shade-plugin-2.2 - - - jira - http://jira.codehaus.org/browse/MSHADE - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 3.0 - ${project.version} - 3.2 - plugins-archives/${project.artifactId}-LATEST - - - - - 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-compat - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - ${mavenPluginVersion} - provided - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 3.0.15 - - - - - asm - asm - 3.3.1 - - - asm - asm-commons - 3.3.1 - - - org.jdom - jdom - 1.1 - - - org.apache.maven.shared - maven-dependency-tree - 2.1 - - - org.vafer - jdependency - 0.7 - - - org.codehaus.plexus - plexus-component-annotations - provided - - - - junit - junit - 4.10 - test - - - - xmlunit - xmlunit - 1.3 - test - - - - com.google.guava - guava - 11.0.2 - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginVersion} - - true - - - - mojo-descriptor - - descriptor - - - - - help-goal - - helpmojo - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - generate-test-metadata - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginVersion} - - - - - - - run-its - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.8 - - - clean - install - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 deleted file mode 100644 index c96549da0f3d1d14939e8d103007a7ba48b35bae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bcbbc30706f00cb13a1c651a13abba89766b6581 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/_remote.repositories deleted file mode 100644 index f09ce1fed2cc0e4854ad29d3410ab4685517026c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:41 CST 2019 -maven-site-plugin-3.5.1.jar>repo.jenkins-ci.org= -maven-site-plugin-3.5.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.jar b/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.jar deleted file mode 100644 index 16a9881d4247cf36744e7e3db9efd9b0aad25885..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.jar.sha1 deleted file mode 100644 index 485a4539e748983bbd93ca3c663dcd5967de7ca5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -73b29fa407ee39cc62e80d6edcc4ec8078276408 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.pom b/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.pom deleted file mode 100644 index 99bbf90dba6f0e7a97db61e6e24dcc6921f1edbd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.pom +++ /dev/null @@ -1,564 +0,0 @@ - - - - maven-plugins - org.apache.maven.plugins - 28 - ../../pom/maven/maven-plugins/pom.xml - - 4.0.0 - maven-site-plugin - maven-plugin - Apache Maven Site Plugin - 3.5.1 - The Maven Site Plugin is a plugin that generates a site for the current project. - - ${prerequisiteMavenVersion} - - - JIRA - https://issues.apache.org/jira/browse/MSITE - - - - Naoki Nose - ikkoan@mail.goo.ne.jp - - Japanese translator - - - - Michael Wechner - michael.wechner@wyona.com - - German translator - - - - Christian Schulte - cs@schulte.it - - German translator - - - - Piotr Bzdyl - piotr@bzdyl.net - - Polish translator - - - - Domingos Creado - dcreado@users.sf.net - - Brazilian Portuguese translator - - - - John Allen - john_h_allen@hotmail.com - - - Laszlo Hornyak Kocka - laszlo.hornyak@gmail.com - - Hungarian translator - - - - Hermod Opstvedt - hermod.opstvedt@dnbnor.no - - Norwegian translator - - - - Yue Ni - ni2yue4@gmail.com - - Chinese translator - - - - Arturo Vazquez - vaz@root.com.mx - - Spanish translator - - - - Woonsan Ko - woon_san@yahoo.com - - Korean translator - - - - Martin Vysny - mvy@whitestein.com - - Slovak translator - - - - Petr Ferschmann - pferschmann@softeu.com - - Czech translator - - - - Kristian Mandrup - kristian@mandrup.dk - - Danish translator - - - - Samuel Santos - samaxes@gmail.com - - Portuguese translator - - - - Mindaugas Greibus - spantus@gmail.com - - Lithuanian translator - - - - Marvin Froeder - velo.br@gmail.com - - msite-504 - - - - Yevgeny Nyden - yev@curre.net - - Russian translator - - - - Daniel Fernández - daniel.fernandez.garrido@gmail.com - - Galician translator - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-site-plugin-3.5.1 - scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-site-plugin-3.5.1 - http://svn.apache.org/viewvc/maven/plugins/tags/maven-site-plugin-3.5.1 - - - - - - org.apache.rat - apache-rat-plugin - - - dependency-reduced-pom.xml - - - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.6 - - - - generate-metadata - - - - - - maven-shade-plugin - 1.4 - - - package - - shade - - - - - org.apache.maven.reporting:maven-reporting-api - org.apache.maven:maven-artifact - - - - - org.apache.maven.reporting:maven-reporting-api - - **/MavenMultiPageReport.class - - - - org.apache.maven:maven-artifact - - **/ComparableVersion.class - **/ComparableVersion$*.class - - - - - - - - - - - - run-its - - - - - maven-invoker-plugin - 2.0.0 - - - clean - org.apache.maven.plugins:maven-site-plugin:3.5.1:site - - - - - - - - - reporting - - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - ca - cs - da - de - es - fr - gl - hu - it - ja - ko - lt - nl - no - pl - pt - pt_BR - ru - sk - sv - tr - zh_CN - zh_TW - - - - - - - - dev - - - - - maven-site-plugin - ${project.version} - - - - - - - - - org.apache.maven.reporting - maven-reporting-exec - 1.2 - compile - - - org.apache.maven - maven-compat - 3.0 - provided - - - org.apache.maven - maven-core - 3.0 - compile - - - org.apache.maven - maven-model - 3.0 - compile - - - org.apache.maven - maven-plugin-api - 3.0 - compile - - - org.apache.maven - maven-settings - 3.0 - compile - - - org.apache.maven - maven-settings-builder - 3.0 - compile - - - org.apache.maven - maven-archiver - 2.5 - compile - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.4 - provided - - - org.sonatype.sisu - sisu-inject-plexus - 1.4.2 - compile - - - org.codehaus.plexus - plexus-archiver - 2.9 - compile - - - org.codehaus.plexus - plexus-i18n - 1.0-beta-7 - compile - - - plexus-component-api - org.codehaus.plexus - - - - - org.codehaus.plexus - plexus-utils - 3.0.20 - compile - - - org.codehaus.plexus - plexus-classworlds - 2.2.3 - compile - - - org.apache.maven.doxia - doxia-sink-api - 1.7 - compile - - - org.apache.maven.doxia - doxia-module-xhtml - 1.7 - compile - - - org.apache.maven.doxia - doxia-module-apt - 1.7 - runtime - - - org.apache.maven.doxia - doxia-module-xdoc - 1.7 - compile - - - org.apache.maven.doxia - doxia-module-fml - 1.7 - runtime - - - org.apache.maven.doxia - doxia-module-markdown - 1.7 - runtime - - - javax.servlet - servlet-api - 2.5 - compile - - - org.apache.maven.doxia - doxia-decoration-model - 1.7.1 - compile - - - org.apache.maven.doxia - doxia-site-renderer - 1.7.1 - compile - - - org.apache.maven.doxia - doxia-integration-tools - 1.7.1 - compile - - - org.apache.maven.wagon - wagon-provider-api - 1.0 - compile - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 1.0 - test - - - slf4j-nop - org.slf4j - - - wagon-http-shared - org.apache.maven.wagon - - - jackrabbit-webdav - org.apache.jackrabbit - - - - - org.mortbay.jetty - jetty - 6.1.25 - compile - - - org.mortbay.jetty - jetty-util - 6.1.25 - compile - - - org.mortbay.jetty - jetty-client - 6.1.25 - test - - - jetty-sslengine - org.mortbay.jetty - - - jetty-util5 - org.mortbay.jetty - - - - - org.slf4j - slf4j-api - 1.5.3 - test - - - org.slf4j - slf4j-simple - 1.5.3 - test - - - org.slf4j - jcl-over-slf4j - 1.6.1 - test - - - org.apache.commons - commons-lang3 - 3.4 - compile - - - commons-io - commons-io - 1.4 - compile - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 2.0-alpha-1 - test - - - junit - junit - 4.8.1 - test - - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path} - - - - 1.5.4 - 3.0.1 - 1.7.1 - 3.0 - 1.4 - 1.0 - 2.2.1 - 2.9.1 - 2.7 - 2.9.1 - 1.7 - - - diff --git a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.pom.sha1 deleted file mode 100644 index 13824b3fb3e78b36cfc50f2d34873bf413f07731..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-site-plugin/3.5.1/maven-site-plugin-3.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c77677b39b2691e7e818752af3799ad3dd02196b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/_remote.repositories deleted file mode 100644 index 40c533710794679a18eac85e642575074e2276f8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:33 CST 2019 -maven-surefire-plugin-2.18.1.jar>repo.jenkins-ci.org= -maven-surefire-plugin-2.18.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar deleted file mode 100644 index 1b73409abb2e5ac303f2630df883241c9acdf44d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar.sha1 deleted file mode 100644 index 8305e4c94ba8850ba5aeafb722fb4aef67e649d4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -402fd3066fd6d85ea4a1a3e7cd82a7e35037e6e8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom deleted file mode 100644 index 480d8bf92c937f566e11ed1b1becca34982bf633..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom +++ /dev/null @@ -1,188 +0,0 @@ - - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 2.18.1 - ../pom.xml - - - org.apache.maven.plugins - maven-surefire-plugin - maven-plugin - - Maven Surefire Plugin - - - 2.2.1 - - - - Surefire - Failsafe - - - - - org.apache.maven - maven-plugin-api - - - org.apache.maven.surefire - maven-surefire-common - - - org.apache.maven.surefire - surefire-api - - - org.apache.maven - maven-toolchain - - - org.apache.maven.plugin-tools - maven-plugin-annotations - compile - - - - - - - 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 - - - build-site - package - - single - - - true - site-source - - src/assembly/site-source.xml - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - ${mavenPluginPluginVersion} - - - 1.4 - - - - - - - - - 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.18.1/maven-surefire-plugin-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom.sha1 deleted file mode 100644 index fb7c81ee34efb933f0a34435c306a15b1f48a410..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/plugins/maven-surefire-plugin/2.18.1/maven-surefire-plugin-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d3af2c45104529951a155f2993a472f14e2a7b0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/_remote.repositories deleted file mode 100644 index 6e71d409ef8f32f819d60931fa3e1c50383be159..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -maven-reporting-api-2.0.6.jar>repo.jenkins-ci.org= -maven-reporting-api-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar deleted file mode 100644 index 8d2834c873baf8ecae1ba6285be15e9c8bfb197e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 deleted file mode 100644 index a12caa2493a6ccb34d87e0b34bff83d1bfa5da08..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -29ec352c90968c345b628be6c40ddfb5ec7010a8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom deleted file mode 100644 index 39860731f4dda23c06dd444bc67167b9e567ba0d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - maven-reporting - org.apache.maven.reporting - 2.0.6 - - 4.0.0 - maven-reporting-api - Maven Reporting API - - - vsiveton - Vincent Siveton - vincent.siveton@gmail.com - - Java Developer - - -5 - - - - - org.apache.maven.doxia - doxia-sink-api - 1.0-alpha-7 - - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 deleted file mode 100644 index 2c271194f6a50e02fa3ffcb6d23c15cbdb7f2335..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8d8037467cc092dbaf1ca8b513172e2a893b5b9b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/_remote.repositories deleted file mode 100644 index 77843d3b488da7f203d0deb3ab67bae16a735b6a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:29 CST 2019 -maven-reporting-api-2.2.1.jar>repo.jenkins-ci.org= -maven-reporting-api-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar deleted file mode 100644 index 1a2e4902a9b80ed5138d413234130b82577b3f05..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar.sha1 deleted file mode 100644 index 70804a6f8e99699a0adbd47010499b1b9f2ed08c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -61942e490c112f84b3a1a61572d570f369414939 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom deleted file mode 100644 index 4c291280541ae6cfcd931c3064252bf7f48a3ea2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - 4.0.0 - - - org.apache.maven.reporting - maven-reporting - 2.2.1 - - - maven-reporting-api - - Maven Reporting API - - - - vsiveton - Vincent Siveton - vincent.siveton@gmail.com - - Java Developer - - -5 - - - - - - org.apache.maven.doxia - doxia-sink-api - - - org.apache.maven.doxia - doxia-logging-api - - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom.sha1 deleted file mode 100644 index 93f6ce88ad6aab576cb0f58eea08e15f07616a4f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -54d326154c3a5befd2fee3ff054ffc8cea635c54 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/_remote.repositories deleted file mode 100644 index 362648454cedb46a588fada4976c39bc1db8da34..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-reporting-api-3.0.jar>repo.jenkins-ci.org= -maven-reporting-api-3.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar deleted file mode 100644 index 5e76d45170ec8f235ab55f2d145cecd7454aaa90..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 deleted file mode 100644 index 5239be542cc5292fd9e18a3e594281fbee2598c8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b2541dd07d08cd5eff9bd4554a2ad6a4198e2dfe \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom deleted file mode 100644 index fdf2b89bb600559f95c103a4da2d2aaf96661060..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 15 - - - org.apache.maven.reporting - maven-reporting-api - 3.0 - - Maven Reporting API - API to manage report generation. - - - - vsiveton - Vincent Siveton - vincent.siveton@gmail.com - - Java Developer - - -5 - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-api-3.0 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-api-3.0 - http://svn.apache.org/viewvc/maven/shared/tags/maven-reporting-api-3.0 - - - - jira - http://jira.codehaus.org/browse/MSHARED/component/14413 - - - - - org.apache.maven.doxia - doxia-sink-api - 1.0 - - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 deleted file mode 100644 index d6e17f8f9382ef47d294af38386931818d33424b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -eca7bd81ad86e6d8a978f37e1d077fee5c59d41e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/_remote.repositories deleted file mode 100644 index 941884244c5bb483b738729752b1a64d19159b1c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:52 CST 2019 -maven-reporting-exec-1.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/maven-reporting-exec-1.2.jar b/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/maven-reporting-exec-1.2.jar deleted file mode 100644 index db85a4316e247ccd2a808001e57cea4c5cc6c8ab..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/maven-reporting-exec-1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/maven-reporting-exec-1.2.jar.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/maven-reporting-exec-1.2.jar.sha1 deleted file mode 100644 index 063d77bf7e24a7005856966991aae195cdd183ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-exec/1.2/maven-reporting-exec-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0d95fc8f5c4abb846142998c176a06bc71c5ae2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/_remote.repositories deleted file mode 100644 index 809559ad826836cccd67660c4d5eacbe24c66ad0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -maven-reporting-impl-2.1.jar>repo.jenkins-ci.org= -maven-reporting-impl-2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar deleted file mode 100644 index a6712fb0eb8b1cc6a1e4666e1b243a924aa69e33..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar.sha1 deleted file mode 100644 index ac7e985f99465a82d7a4690b768ef9a122d66e5e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -898da3a82a8dee7ce1d8a6e1d24efcc52ba28383 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom deleted file mode 100644 index b2b5af931d3ec3915273bb2e1bf42a267c72b5c2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom +++ /dev/null @@ -1,143 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 15 - - - org.apache.maven.reporting - maven-reporting-impl - 2.1 - - Maven Reporting Implementation - Abstract classes to manage report generation. - - - - vsiveton - Vincent Siveton - vincent.siveton@gmail.com - - Java Developer - - -5 - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-impl-2.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-impl-2.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-reporting-impl-2.1 - - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13274 - - - - 2.0.10 - 1.1.2 - - - - - org.apache.maven.reporting - maven-reporting-api - 3.0 - - - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-site-renderer - ${doxiaVersion} - - - - - commons-validator - commons-validator - 1.2.0 - - - org.codehaus.plexus - plexus-utils - 1.5.8 - - - - - junit - junit - 3.8.2 - test - - - junit-addons - junit-addons - 1.4 - test - - - - - - reporting - - - - org.codehaus.mojo - clirr-maven-plugin - - 2.0.4.1 - - - - - - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom.sha1 deleted file mode 100644 index 12f2454f3999f5fb9ddc04b15072ffb7e5960705..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3ce3717600158fda20c4ea40981be5fb3ff4133a \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/_remote.repositories deleted file mode 100644 index e58349bf9ec053fe7c647ddae45da1ea3e60cd60..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-reporting-impl-2.2.jar>repo.jenkins-ci.org= -maven-reporting-impl-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.jar b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.jar deleted file mode 100644 index fe960e337b9823bac2014665bc91311929f27829..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.jar.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.jar.sha1 deleted file mode 100644 index c55d4409e9c15a1a5954a57ca1d8685758b63375..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -42d1bd175eca91bcc613b699331125ab3b2292e1 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.pom deleted file mode 100644 index f15603ee4c21616afc70a065af187419ed08196f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.pom +++ /dev/null @@ -1,143 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 17 - ../maven-shared-components/pom.xml - - - org.apache.maven.reporting - maven-reporting-impl - 2.2 - - Maven Reporting Implementation - Abstract classes to manage report generation. - - - - vsiveton - Vincent Siveton - vincent.siveton@gmail.com - - Java Developer - - -5 - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-impl-2.2 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-reporting-impl-2.2 - http://svn.apache.org/viewvc/maven/shared/tags/maven-reporting-impl-2.2 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13274 - - - - 2.2.1 - 1.2 - - - - - org.apache.maven.reporting - maven-reporting-api - 3.0 - - - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - - - org.apache.maven.doxia - doxia-sink-api - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-core - ${doxiaVersion} - - - org.apache.maven.doxia - doxia-site-renderer - ${doxiaVersion} - - - - - commons-validator - commons-validator - 1.3.1 - - - org.codehaus.plexus - plexus-utils - 1.5.8 - - - - - junit - junit - 3.8.2 - test - - - junit-addons - junit-addons - 1.4 - test - - - - - - reporting - - - - org.codehaus.mojo - clirr-maven-plugin - - 2.0.4.1 - - - - - - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.pom.sha1 deleted file mode 100644 index 162f9c93667c697db43a26ee283c3a9f3aa2d7f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting-impl/2.2/maven-reporting-impl-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b14da1737523ae14f8cb8428c5ffd0518fbd76f7 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories deleted file mode 100644 index 93a3f4677b65fc9b20327a972f10768a27146763..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:21 CST 2019 -maven-reporting-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom deleted file mode 100644 index d294b7cfcc14b423b69c89eeddb683f06dbc8b2f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - maven - org.apache.maven - 2.0.6 - - 4.0.0 - org.apache.maven.reporting - maven-reporting - pom - Maven Reporting - 2005 - - maven-reporting-api - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 deleted file mode 100644 index 9a993413ccb6c92198aebaef570085933b3461f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0257fe61312283ef58817edf197e9c90db0bba25 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories deleted file mode 100644 index 723e8c3ecce0c88a0958a0f9a2cfc817b5798c2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:07 CST 2019 -maven-reporting-2.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom b/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom deleted file mode 100644 index 61f53dcb666df97d22921e96d7a5d4a2e867845e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom +++ /dev/null @@ -1,38 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven - 2.2.1 - - - org.apache.maven.reporting - maven-reporting - pom - - Maven Reporting - 2005 - - - maven-reporting-api - - diff --git a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom.sha1 deleted file mode 100644 index 18426cf2902c314f24e8bfd7de408c19692d4fbc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c68c4978e03d8044ba074130178435a4df1bb3dc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/_remote.repositories deleted file mode 100644 index fd804ab48270dab73761a77f91740f8e1e397831..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -file-management-1.2.1.jar>repo.jenkins-ci.org= -file-management-1.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar b/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar deleted file mode 100644 index 200400ba1a6410dc23b8ca9af356412e08a666b3..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 deleted file mode 100644 index 33a3f789cdd903c8ef773154dcb1ad024b1411b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8f98bcaa7fd3625a172fd3de10bba8c32b9820ea \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom b/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom deleted file mode 100644 index b1276fa53aa7ff89446eeb71fba70e27bccd4ab8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 10 - - - file-management - 1.2.1 - - Maven File Management API - API to collect files from a given directory using several include/exclude rules. - - - - Joakim Erdfelt - joakim@erdfelt.com - - - - - 2.0.6 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/file-management-1.2.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/file-management-1.2.1 - http://svn.apache.org/viewvc/maven/shared/tags/file-management-1.2.1 - - - - - - org.apache.maven - maven-plugin-api - 2.0.6 - - - org.apache.maven.shared - maven-shared-io - 1.1 - - - - - org.codehaus.plexus - plexus-utils - 1.5.6 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9 - - - - - junit - junit - 3.8.2 - test - - - - - - - org.codehaus.modello - modello-maven-plugin - 1.0-alpha-21 - - - fileset - - xpp3-reader - xpp3-writer - java - xsd - - - - src/main/mdo/fileset.mdo - - - - - - 1.1.0 - - - - maven-surefire-plugin - 2.4.3 - - - - diff --git a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 deleted file mode 100644 index 3a4c04302f40e07fc2a2ba9c868624ed338d9d98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9aacc3da37949502b89807f0df2e6529ef33da0c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/_remote.repositories deleted file mode 100644 index d64c1c22a7ee2f3decfa45e6eeb5ee9bd9adb567..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-common-artifact-filters-1.4.jar>repo.jenkins-ci.org= -maven-common-artifact-filters-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar deleted file mode 100644 index 035128fefdc94ab9fe0fb41ee982910e4d9c8ff1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 deleted file mode 100644 index 87d63d4fc8a9eef3ca1c39d911bdda96a2d363ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -de97ff2efd804f06c3698a914f2d55205742bcc4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom deleted file mode 100644 index c30c8a0e4b8aa2692b5f675f8dec93d96d94d639..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom +++ /dev/null @@ -1,90 +0,0 @@ - - - - 4.0.0 - - - maven-shared-components - org.apache.maven.shared - 17 - ../maven-shared-components/pom.xml - - - maven-common-artifact-filters - 1.4 - - 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-1.4 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-common-artifact-filters-1.4 - http://svn.apache.org/viewvc/maven/shared/tags/maven-common-artifact-filters-1.4 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13269 - - - - - org.apache.maven - maven-artifact - 2.0.8 - - - org.apache.maven - maven-model - 2.0.8 - - - org.apache.maven - maven-project - 2.0.8 - - - org.apache.maven - maven-plugin-api - 2.0.8 - - - org.codehaus.plexus - plexus-container-default - 1.5.5 - - - org.codehaus.plexus - plexus-utils - 2.1 - - - junit - junit - 4.9 - test - - - org.apache.maven.shared - maven-test-tools - 1.0-alpha-2 - test - - - easymock - easymock - 1.2_Java1.3 - test - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 deleted file mode 100644 index 08830f889b15b8d4e765eb73639976ccb3373970..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -40c60d137280b0583ebff4b80361cd2a28ea9c42 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/_remote.repositories deleted file mode 100644 index 0ec04f10db5c7659e58611e1d41e4621eb61ed01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-dependency-analyzer-1.6.jar>repo.jenkins-ci.org= -maven-dependency-analyzer-1.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.jar b/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.jar deleted file mode 100644 index d823067823a85e3f9f73a8ce10c612d6def7f915..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.jar.sha1 deleted file mode 100644 index 5ad2b1b884480fcc00ac5865a34f472b1d381356..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8a005ad010c2c49bac8c76eecd4602aeab4adf0b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.pom b/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.pom deleted file mode 100644 index 96b83c4c1283cd2ad11e5709fe9e6410bff822bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.pom +++ /dev/null @@ -1,166 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 21 - ../maven-shared-components/pom.xml - - - maven-dependency-analyzer - jar - 1.6 - - Apache Maven Dependency Analyzer - - Analyzes the dependencies of a project for undeclared or unused artifacts. - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-dependency-analyzer-1.6 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-dependency-analyzer-1.6 - http://svn.apache.org/viewvc/maven/shared/tags/maven-dependency-analyzer-1.6 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13265 - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.0.5 - - - - - org.ow2.asm - asm - 5.0.2 - - - org.codehaus.plexus - plexus-utils - 1.5.1 - - - org.codehaus.plexus - plexus-component-annotations - 1.6 - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven.plugin-testing - maven-plugin-testing-tools - 1.3 - test - - - jmock - jmock - 1.1.0 - test - - - junit - junit - 3.8.2 - test - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - maven.home - ${maven.home} - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.6 - - - - generate-metadata - - - - - - - - - - maven-repo-local - - - maven.repo.local - - - - - - maven-surefire-plugin - - - - - maven.repo.local - ${maven.repo.local} - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.pom.sha1 deleted file mode 100644 index 94fbcae31c275dda62924b8c3fd8441c52c9f827..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-analyzer/1.6/maven-dependency-analyzer-1.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -596267a6a0f39bd6004544ecee5658cc1d763885 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/_remote.repositories deleted file mode 100644 index 8965348289700cf5d5f772ab8ce97e3ed16205a4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -maven-dependency-tree-2.1.jar>repo.jenkins-ci.org= -maven-dependency-tree-2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar deleted file mode 100644 index b78a6a569f83283eb255fd43060aade0c684e32a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 deleted file mode 100644 index 4c6f30ac626bd5d300a277dbaef46e186b66deb7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -29c4d6aeae519809b9af0607156bbdd174efb0bb \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom deleted file mode 100644 index 9ccef69e642d77c3c601f641afc67f0c5fd7e865..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom +++ /dev/null @@ -1,196 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 19 - ../maven-shared-components/pom.xml - - - maven-dependency-tree - 2.1 - - 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-2.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-dependency-tree-2.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-dependency-tree-2.1 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13264 - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.0 - shared-archives/maven-dependency-tree-LATEST - - - - - Tuomas Kiviaho - - - - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-core - 3.0.4 - provided - - - org.codehaus.plexus - plexus-component-annotations - - - 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 - - - - 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 - - */pom.xml - - - maven-version/pom.xml - mshared-167/pom.xml - - - - - integration-test - - install - integration-test - verify - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - Maven 2 & 3 Dependency Graph - org.apache.maven.shared.dependency.graph* - - - Maven 2-specific Dependency Tree - org.apache.maven.shared.dependency.tree* - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 deleted file mode 100644 index a01a72edf3c56c9a0c2ef4182d39e2849359d911..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -772a49d54d50ffe30dbfc50e86ed8318a188746c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/_remote.repositories deleted file mode 100644 index 5fa23db75f77eb055d739e3c7c73be483f103b7c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-dependency-tree-2.2.jar>repo.jenkins-ci.org= -maven-dependency-tree-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar deleted file mode 100644 index 4f5ea9d24ddedcb3e88daf4df3ccaddb49c9f100..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar.sha1 deleted file mode 100644 index 088c27242a952cb36df2928548428b6d0b0107b3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5d9ce6add7b714b8095f0e3e396c5e9f8c5dcfef \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom deleted file mode 100644 index 46a1d1439d517c09ae8516d9904ca27d849881cf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom +++ /dev/null @@ -1,215 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 20 - ../maven-shared-components/pom.xml - - - maven-dependency-tree - 2.2 - - 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-2.2 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-dependency-tree-2.2 - http://svn.apache.org/viewvc/maven/shared/tags/maven-dependency-tree-2.2 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13264 - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - - - - - Tuomas Kiviaho - - - - - - org.apache.maven - maven-project - ${mavenVersion} - provided - - - org.apache.maven - maven-core - 3.0.4 - provided - - - org.codehaus.plexus - plexus-component-annotations - - - 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 - - - - 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 - - - - - 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 2 & 3 Dependency Graph - org.apache.maven.shared.dependency.graph* - - - Maven 2-specific Dependency Tree - org.apache.maven.shared.dependency.tree* - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom.sha1 deleted file mode 100644 index 24ab118858f0d6efe56c24e48c52e278988ddea6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-dependency-tree/2.2/maven-dependency-tree-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1a2de65598fb12cf65c3e435b1c61b4fc743a235 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories deleted file mode 100644 index fd67ee52f33afc3dab6fc391b06aeb699200dc95..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:28 CST 2019 -maven-filtering-1.1.pom>repo.jenkins-ci.org= -maven-filtering-1.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar b/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar deleted file mode 100644 index 28f9c799872005d2728ec8eef133e1375b398553..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar.sha1 deleted file mode 100644 index 3a5c3f16060b89b2ba419cb5a9064cc8d32d6efc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c223ff4ef9e9b3b51b2c9310dda59527a4b85baf \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom b/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom deleted file mode 100644 index 0375d3b11f1d5e1bd0070c579192b5fda97cb8b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom +++ /dev/null @@ -1,178 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 17 - ../maven-shared-components/pom.xml - - - org.apache.maven.shared - maven-filtering - 1.1 - jar - - Maven Filtering - A component to assist in filtering of resource files with properties from a Maven project. - - - 2.0.6 - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-filtering-1.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-filtering-1.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-filtering-1.1 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13380 - - - - 2.0.6 - - - - - Graham Leggett - - - - - - - junit - junit - 3.8.1 - test - - - - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven - maven-monitor - ${mavenVersion} - test - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.15 - - - org.codehaus.plexus - plexus-interpolation - 1.12 - - - org.sonatype.plexus - plexus-build-api - 0.0.4 - - - org.sonatype.plexus - plexus-build-api - 0.0.4 - test - tests - - - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.4 - - - - descriptor - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-changes-plugin - 2.4 - - Type,Key,Summary,Assignee,Status,Resolution,Created - 200 - true - Key - maven-filtering- - - - - - jira-report - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom.sha1 deleted file mode 100644 index 4ef11e9cdb1b1a0eee2ca2af07a9f18ccab67c74..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-filtering/1.1/maven-filtering-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -58f9827f70cc29dd6aed2477b6384f14462f9576 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/_remote.repositories deleted file mode 100644 index 3649919c3361ad95534488432c0a9b7ee2551bdf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-invoker-2.1.1.jar>repo.jenkins-ci.org= -maven-invoker-2.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.jar b/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.jar deleted file mode 100644 index 95fde1dc6e3d84ef1990f6e96094518b8a2b0980..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.jar.sha1 deleted file mode 100644 index a2522afced87e36487cc5db5435f398622134d0b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -78cb230a29f501cf0631070e78f436902e3305dd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.pom b/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.pom deleted file mode 100644 index a6e3f21ff8613e69a0282c23752ddb20f5bc34b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.pom +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 18 - ../maven-shared-components/pom.xml - - - maven-invoker - 2.1.1 - - Maven Invoker - A component to programmatically invoke Maven. - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-invoker-2.1.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-invoker-2.1.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-invoker-2.1.1 - - - jira - http://jira.codehaus.org/browse/MSHARED/component/13271 - - - - - Lucien Weller - - - - - - org.codehaus.plexus - plexus-utils - 3.0.8 - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - junit - junit - 3.8.2 - test - - - - - - - maven-surefire-plugin - - true - - - - maven.home - ${maven.home} - - - - test-build-should*/** - - - - - org.codehaus.plexus - plexus-component-metadata - - - create-component-descriptor - - generate-metadata - - - - - - - - - - maven-repo-local - - - maven.repo.local - - - - - - maven-surefire-plugin - - - - maven.repo.local - ${maven.repo.local} - - - - - - - - - apache-release - - - - maven-assembly-plugin - - - source-release-assembly - - true - - - - source-release-assembly-fixed - package - - single - - - - src/main/assembly/source-release.xml - - gnu - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.pom.sha1 deleted file mode 100644 index 433958dabda4cf71529da108ff56c6ba7ca05c6c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-invoker/2.1.1/maven-invoker-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b4396ba494cd132e89c2f99beeab39996c50d34b \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/_remote.repositories deleted file mode 100644 index 1806831b26f30ae572209f0eb95012e50384cb8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:31 CST 2019 -maven-shared-components-10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom deleted file mode 100644 index c783929e0ed8b6bad1eaac26d4b9fabaa19c57ca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 9 - ../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 10 - pom - - Maven Shared Components - Maven shared components - http://maven.apache.org/shared/ - - - - 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://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-10 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-10 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-10 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - - apache.website - scp://people.apache.org/www/maven.apache.org/shared/ - - - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/shared/tags - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/shared/${project.artifactId}-${project.version} - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 deleted file mode 100644 index 82c3a78a672149c438bf92244e8a0062edfcfc82..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a7dabc7cff7b683d810e33a63c85cbc630c3ebf3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/_remote.repositories deleted file mode 100644 index 450d7e1eb36573d4cd922d4c862e8284d82fb0d8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:22 CST 2019 -maven-shared-components-15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom deleted file mode 100644 index 0820bf9b5827cd0cfff9bf91180481e9f953980c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - 4.0.0 - - - org.apache.maven - maven-parent - 16 - ../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 15 - pom - - Maven Shared Components - Maven shared components - http://maven.apache.org/shared/ - - - - 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://www.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://www.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://www.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - http://www.mail-archive.com/commits@maven.apache.org - http://www.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://www.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://www.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - file-management - maven-ant - maven-archiver - maven-common-artifact-filters - maven-dependency-analyzer - maven-dependency-tree - maven-downloader - maven-doxia-tools - maven-filtering - maven-invoker - maven-model-converter - maven-osgi - maven-reporting-impl - maven-repository-builder - maven-runtime - - maven-shared-io - maven-shared-jar - maven-shared-monitor - maven-verifier - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-15 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-15 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-15 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - - apache.website - scp://people.apache.org/www/maven.apache.org/shared/ - - - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/shared/tags - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/shared/${project.artifactId}-${project.version} - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - - org.codehaus.plexus - plexus-javadoc - 1.0 - - - - - - - - - jre-1.5+ - - !1.4 - - - maven-artifact-resolver - - - - parent-release - - - - maven-release-plugin - - -N -Papache-release - - - - maven-assembly-plugin - - - source-release-assembly - - - src - - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 deleted file mode 100644 index 62d84403d05eb1dff0a830badebdfd13012eb671..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ea4cecd1845e61708cd05f20d5d428a3d429e67c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/_remote.repositories deleted file mode 100644 index 3551677f960fd6124c00d347efe8927243d32ed2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:27 CST 2019 -maven-shared-components-17.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom deleted file mode 100644 index 46900cad165e940f5222a585082de6e7b29f3756..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +++ /dev/null @@ -1,186 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 21 - ../../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 17 - pom - - Maven Shared Components - Maven shared components - http://maven.apache.org/shared/ - - - - 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://old.nabble.com/Maven---Users-f178.html - http://maven.users.markmail.org/ - - - - 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://old.nabble.com/Maven-Developers-f179.html - http://maven.dev.markmail.org/ - - - - Maven Issues List - issues-subscribe@maven.apache.org - issues-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-issues/ - - http://www.mail-archive.com/issues@maven.apache.org - http://old.nabble.com/Maven---Issues-f15573.html - http://maven.issues.markmail.org/ - - - - Maven Commits List - commits-subscribe@maven.apache.org - commits-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-dev - - http://www.mail-archive.com/commits@maven.apache.org - http://old.nabble.com/Maven---Commits-f15575.html - http://maven.commits.markmail.org/ - - - - - Maven Announcements List - announce@maven.apache.org - announce-subscribe@maven.apache.org - announce-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-announce/ - - http://www.mail-archive.com/announce@maven.apache.org - http://old.nabble.com/Maven-Announcements-f15617.html - http://maven.announce.markmail.org/ - - - - Maven Notifications List - notifications-subscribe@maven.apache.org - notifications-unsubscribe@maven.apache.org - http://mail-archives.apache.org/mod_mbox/maven-notifications/ - - http://www.mail-archive.com/notifications@maven.apache.org - http://old.nabble.com/Maven---Notifications-f15574.html - http://maven.notifications.markmail.org/ - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-17 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-17 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-17 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - Jenkins - https://builds.apache.org/job/maven-shared/ - - - - apache.website - scp://people.apache.org/www/maven.apache.org/shared/ - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.6 - - - 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 - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/shared/${project.artifactId}-${project.version} - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 deleted file mode 100644 index 2de80713051520eba4aeb466ad4d852cf306e744..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -edd3aef66f2a59c19b77cebe2a794880f1434674 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/_remote.repositories deleted file mode 100644 index 1df4fd2ee0926c34f960ec8fc6f0e04c9e408d62..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:08 CST 2019 -maven-shared-components-18.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom deleted file mode 100644 index c204856f3b557596a8e3b2e9fb959ee03bae5c2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom +++ /dev/null @@ -1,113 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 22 - ../../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 18 - pom - - 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-18 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-18 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-18 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - Jenkins - https://builds.apache.org/job/maven-shared/ - - - - apache.website - scp://people.apache.org/www/maven.apache.org/shared/ - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.7 - - - 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 - - - - maven-site-plugin - - scp://people.apache.org/www/maven.apache.org/shared/${project.artifactId}-${project.version} - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom.sha1 deleted file mode 100644 index c2240aaa5cf854bf7d37793e1427606ced03d43c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -040806324fdf93be8aed960505aea819c0a39055 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/_remote.repositories deleted file mode 100644 index dc4792f850dde0b017a39f4478dc429315467a25..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:55 CST 2019 -maven-shared-components-19.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom deleted file mode 100644 index 5c735e31a9c08a0d5eb03b2e44bcbf581d18ced4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +++ /dev/null @@ -1,151 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 23 - ../../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 19 - pom - - 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-19 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-19 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-19 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - Jenkins - https://builds.apache.org/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/shared - - - - - ${user.home}/maven-sites - shared-archives/${project.artifactId}-${project.version} - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.7 - - - 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-site-plugin - 3.2 - - true - - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.0-beta-2 - - ${project.reporting.outputDirectory} - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - ${maven.site.cache}/${maven.site.path} - true - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - site-release - - shared/${project.artifactId} - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 deleted file mode 100644 index 54b5733c477c7ec756372d29f350f9bdcfe93d2e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aee8f24974d6fd003fef70b22f1988c037451d78 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/_remote.repositories deleted file mode 100644 index 737cf60d5ba21f26fbde1414b8ed94e4627ae9f1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:52 CST 2019 -maven-shared-components-20.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom deleted file mode 100644 index 36c394efcd0404e20d1fbdd8aa47df346dd10d78..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 24 - ../../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 20 - 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-20 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-20 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-20 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - Jenkins - https://builds.apache.org/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - shared-archives/${project.artifactId}-LATEST - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.9 - - - 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/20/maven-shared-components-20.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom.sha1 deleted file mode 100644 index 9c034cbbb760d17929049d1c65ae290c30807204..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8bfc0cb0c7cbe78219d8347360b708f9f0ec161f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/_remote.repositories deleted file mode 100644 index d62ebdabd8ce501f7fa8bf7697b22e6aec349451..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:43 CST 2019 -maven-shared-components-21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom deleted file mode 100644 index c183a7806108fd257299e4bdaf18ee07e7bdc7ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - 4.0.0 - - - org.apache.maven - maven-parent - 25 - ../../pom/maven/pom.xml - - - org.apache.maven.shared - maven-shared-components - 21 - 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-21 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-21 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-components-21 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - Jenkins - https://builds.apache.org/job/maven-shared/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 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/21/maven-shared-components-21.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom.sha1 deleted file mode 100644 index 1e936fd7f8947395b583a765a4c0c70a6ffb4d2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e6d03b88e88227c9bbb2f0a645b1480825bfbd3c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/_remote.repositories deleted file mode 100644 index 4d645b13aace72a276ed424f5478652eca797520..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:34 CST 2019 -maven-shared-components-8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom deleted file mode 100644 index fb5a997ffdd2361dadcd92bcabe6a9f15acc9338..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom +++ /dev/null @@ -1,65 +0,0 @@ - - 4.0.0 - - org.apache.maven - maven-parent - 7 - ../pom/maven/pom.xml - - org.apache.maven.shared - maven-shared-components - pom - 8 - Maven Shared Components - Maven shared components - http://maven.apache.org/shared/ - - jira - http://jira.codehaus.org/browse/MNG - - - - apache.website - scp://people.apache.org/www/maven.apache.org/shared/ - - - - maven-ant - maven-archiver - maven-plugin-tools - maven-reporting-impl - maven-model-converter - maven-shared-io - maven-shared-monitor - file-management - maven-plugin-testing-harness - maven-invoker - maven-verifier - maven-web-ui-tests - maven-app-configuration - maven-plugin-testing-tools - maven-test-tools - maven-repository-builder - maven-script - maven-common-artifact-filters - maven-dependency-analyzer - maven-shared-jar - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-8 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-components-8 - http://svn.apache.org/viewcvs.cgi/maven/shared/tags/maven-shared-components-8 - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/shared/tags - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 deleted file mode 100644 index a351e416afed3056868edbc00f06d157bf4c2010..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a6b88e9b00b5eea13069ce324293a85e427e57c6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories deleted file mode 100644 index 4114bbd34862b94e56d2ee782c591abe2f51dd1b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:55 CST 2019 -maven-shared-incremental-1.1.jar>repo.jenkins-ci.org= -maven-shared-incremental-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar deleted file mode 100644 index 692c7d81eb05f883dcae97653037409c8f819da4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1 deleted file mode 100644 index 427c971be9f20f7ad7e6b4f6e81bb46b4128ab9e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9d017a7584086755445c0a260dd9a1e9eae161a5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom deleted file mode 100644 index f832f26710e999cfa15d6239270c3db5bdcb5fec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +++ /dev/null @@ -1,136 +0,0 @@ - - - - 4.0.0 - - org.apache.maven.shared - maven-shared-components - 19 - ../maven-shared-components/pom.xml - - - maven-shared-incremental - 1.1 - Maven Incremental Build support utilities - - Various utility classes and plexus components for supporting - incremental build functionality in maven plugins. - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-incremental-1.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-incremental-1.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-incremental-1.1 - - - - jira - https://jira.codehaus.org/browse/MSHARED/component/15650 - - - - 2.2.1 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven.reporting - maven-reporting-api - - - org.apache.maven.wagon - wagon-file - - - org.apache.maven.wagon - wagon-http-lightweight - - - org.apache.maven.wagon - wagon-ssh - - - org.apache.maven.wagon - wagon-ssh-external - - - commons-cli - commons-cli - - - classworlds - classworlds - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-interactivity-api - - - - - org.apache.maven.shared - maven-shared-utils - 0.1 - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-16 - provided - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1 deleted file mode 100644 index 2b3eca1c5e56236457e1dea8a9e89f312d1559c2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c607b2c64c027151c440f27b5ec86e062b9e9953 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/_remote.repositories deleted file mode 100644 index 93a4943bcbd66b1577059ab72fe4a4c36ac91fbd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -maven-shared-io-1.1.jar>repo.jenkins-ci.org= -maven-shared-io-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar deleted file mode 100644 index 6001703cce15b0f10a8d2b4974836dd1fb8ce9f2..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 deleted file mode 100644 index 92448fc26e413a1612ce2f1e573421cd5ea1fec7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -02e1d57be05ecac7dbe56a3c73b113e98f22240f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom deleted file mode 100644 index 0468f43e23e579f4e7c23f8dda42c744183b687b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.shared - maven-shared-components - 8 - - - maven-shared-io - 1.1 - Maven Shared I/O API - API for I/O support like logging, download or file scanning. - - - 2.0.6 - - - - - Joakim Erdfelt - joakim@erdfelt.com - - - - - - - org.apache.maven - maven-artifact - 2.0.2 - - - org.apache.maven - maven-artifact-manager - 2.0.2 - - - org.apache.maven.wagon - wagon-provider-api - 1.0-alpha-6 - - - org.apache.maven - maven-plugin-api - 2.0 - true - - - - - org.codehaus.plexus - plexus-utils - 1.4.6 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9 - true - - - - easymock - easymock - 1.2_Java1.3 - test - - - - - - - maven-surefire-plugin - 2.3 - - - **/TestUtils* - - - - - - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-io-1.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-io-1.1 - http://svn.apache.org/viewcvs.cgi/maven/shared/tags/maven-shared-io-1.1 - - - - - apache.snapshots - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 deleted file mode 100644 index 14148bbc1c65438bbdb18cd68a93cea74870ca75..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -031970802f3b9937e43a82ff11518e02a51669dc \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories deleted file mode 100644 index 5862e5f70009787e3992a1adf65a20d2d17f9ed0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:53 CST 2019 -maven-shared-utils-0.1.pom>repo.jenkins-ci.org= -maven-shared-utils-0.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar deleted file mode 100644 index 82e6779868260195ab50b4e7f8066be6797826be..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar.sha1 deleted file mode 100644 index 3054ad2acf6c2d35c4c05964dd7f03dfb36648c6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5366d4739b5239472598227e80b97ad57f5d95e4 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom deleted file mode 100644 index 34533bb484b4684de1f5491c965fe26cdadcc13c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom +++ /dev/null @@ -1,112 +0,0 @@ - - - - maven-shared-components - org.apache.maven.shared - 18 - ../maven-shared-components/pom.xml/pom.xml - - 4.0.0 - maven-shared-utils - Maven Shared Utils - 0.1 - Shared utils without any further dependencies - - ${mavenVersion} - - - jira - http://jira.codehaus.org/browse/MSHARED - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-0.1 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-0.1 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-utils-0.1 - - - - - maven-shade-plugin - 1.7.1 - - - package - - shade - - - true - true - - - commons-io:commons-io - - - - - org.apache.commons.io - org.apache.maven.internal.commons.io - - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - - findbugs-exclude.xml - - - - org.apache.rat - apache-rat-plugin - - - .git/**/* - .idea/**/* - **/.svn/**/* - **/*.iml - **/*.ipr - **/*.iws - **/*.versionsBackup - .gitignore - src/test/resources/directorywalker/**/* - dependency-reduced-pom.xml - - - - - - - - junit - junit - 4.9 - test - - - hamcrest-core - org.hamcrest - - - - - org.apache.commons - commons-lang3 - 3.1 - test - - - com.google.code.findbugs - jsr305 - 2.0.1 - compile - - - - 2.1.0 - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom.sha1 deleted file mode 100644 index da0666122351681643fdc76ab8536cb244e9f0a9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c638aa76e8eb374e14c4a3d25f66f36454645a54 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/_remote.repositories deleted file mode 100644 index a09bd317f8c3d220893d000584ee004442a5f89b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:26 CST 2019 -maven-shared-utils-0.4.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar deleted file mode 100644 index b8060ebdff8da0a9284a8662298e8055594d653c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar.sha1 deleted file mode 100644 index c2ec9899ed7381aa32f694bfd0e5e03a40b1a636..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -41dcd40e6bf13247698b84977e47c4ec9f41c26c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/_remote.repositories b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/_remote.repositories deleted file mode 100644 index c0136164c83d72e1aca3582884e42d68cf78e847..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:25 CST 2019 -maven-shared-utils-0.7.jar>repo.jenkins-ci.org= -maven-shared-utils-0.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar deleted file mode 100644 index 8bca46ab5ecf6963d01008effd96a31ab7ff776c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar.sha1 deleted file mode 100644 index 18b39da48b4587e6e61fd98dbed55f868469a02b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0704e679088765e7df5e1ef3eef400c4a061c9ef \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom deleted file mode 100644 index 3a5da795f02fb882023149a4c5a62410293eb1ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - - maven-shared-components - org.apache.maven.shared - 20 - ../maven-shared-components/pom.xml/pom.xml - - 4.0.0 - maven-shared-utils - Apache Maven Shared Utils - 0.7 - Shared utils without any further dependencies - - 2.2.1 - - - jira - http://jira.codehaus.org/browse/MSHARED - - - scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-0.7 - scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-shared-utils-0.7 - http://svn.apache.org/viewvc/maven/shared/tags/maven-shared-utils-0.7 - - - - - maven-shade-plugin - 2.3 - - - package - - shade - - - true - true - - - commons-io:commons-io - - - - - org.apache.commons.io - org.apache.maven.internal.commons.io - - - - - - - - org.codehaus.mojo - findbugs-maven-plugin - - findbugs-exclude.xml - - - - org.apache.rat - apache-rat-plugin - - - .git/**/* - .idea/**/* - **/.svn/**/* - **/*.iml - **/*.ipr - **/*.iws - **/*.versionsBackup - .gitignore - src/test/resources/directorywalker/**/* - dependency-reduced-pom.xml - - - - - - - - reporting - - - - maven-checkstyle-plugin - 2.13 - - - - - - - - junit - junit - 4.11 - test - - - org.hamcrest - hamcrest-core - 1.3 - test - - - org.apache.commons - commons-lang3 - 3.1 - test - - - com.google.code.findbugs - jsr305 - 2.0.1 - compile - - - org.apache.maven - maven-toolchain - 2.2.1 - provided - - - maven-core - org.apache.maven - - - maven-artifact - org.apache.maven - - - - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - diff --git a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom.sha1 b/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom.sha1 deleted file mode 100644 index 46aa167082e5477cdd3d62c2ff41525a0231b87c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4a7c585a051cd9d9553f25b0d616adcb0d800ac5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/_remote.repositories deleted file mode 100644 index 9cfbba98bb1230f8b63e8aff69d71ac95b35b39f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:11 CST 2019 -maven-surefire-common-2.18.1.pom>repo.jenkins-ci.org= -maven-surefire-common-2.18.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.jar b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.jar deleted file mode 100644 index 5054c3ea37b65e89ad26e1d3f1270b8d8ef51aef..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.jar.sha1 deleted file mode 100644 index b43581b00e64dbbf09614a7885fec33d83c1ec93..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9fff3ee116243c395aa42c9139499d6fe4ae7994 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.pom b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.pom deleted file mode 100644 index ca396ad3ad9b8cf4a1f1a223677131c5e21c048c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.pom +++ /dev/null @@ -1,183 +0,0 @@ - - - - surefire - org.apache.maven.surefire - 2.18.1 - - 4.0.0 - maven-surefire-common - Maven Surefire Common - - 2.2.1 - - - - - maven-surefire-plugin - - - org.apache.maven.surefire - surefire-shadefire - 2.12.4 - - - - true - - - - 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.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.maven - maven-plugin-api - 2.2.1 - compile - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.3 - compile - - - org.apache.maven.surefire - surefire-api - 2.18.1 - compile - - - org.apache.maven.surefire - surefire-booter - 2.18.1 - 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 - - - org.apache.commons - commons-lang3 - 3.1 - compile - - - com.google.code.findbugs - jsr305 - 2.0.1 - provided - - - org.mockito - mockito-all - 1.8.4 - test - - - junit - junit - 3.8.1 - test - - - - diff --git a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.pom.sha1 deleted file mode 100644 index 2e1acaec00ad4bd4b75e20671d6812a4b3b93f3b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/maven-surefire-common/2.18.1/maven-surefire-common-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -452c143558038d24441b4ed3304ecbcc84429a93 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/_remote.repositories deleted file mode 100644 index 241c26c23a3f93e39cda9717246b9023258b98da..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:13 CST 2019 -surefire-api-2.18.1.pom>repo.jenkins-ci.org= -surefire-api-2.18.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.jar b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.jar deleted file mode 100644 index 539a23c47584cb32809cd5cb3c69c44f2c39a03d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.jar.sha1 deleted file mode 100644 index 91a0ee43c80c7b7c94066398f43d71446b44faba..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7838e4f65460ddde64bf818bebfade0b1c630de6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.pom b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.pom deleted file mode 100644 index 2b5c6fbe0bf06b087a2c99bded47f80375b4f485..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.pom +++ /dev/null @@ -1,64 +0,0 @@ - - - - surefire - org.apache.maven.surefire - 2.18.1 - - 4.0.0 - surefire-api - SureFire API - - - - maven-surefire-plugin - - - org.apache.maven.surefire - surefire-shadefire - 2.12.4 - - - - - maven-shade-plugin - - - package - - shade - - - true - - - org.apache.maven.shared:maven-shared-utils - commons-lang:commons-lang - - - - - org.apache.maven.shared - org.apache.maven.surefire.shade.org.apache.maven.shared - - - org.apache.commons.lang - org.apache.maven.surefire.shade.org.apache.commons.lang - - - - - - - - - - - junit - junit - 3.8.1 - test - - - - diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.pom.sha1 deleted file mode 100644 index 16af7f5bc5d127ae795549e23f83a1b0742db9f9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-api/2.18.1/surefire-api-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cceabe24d5b9ea4606578b6dcaf43b26d97001bd \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/_remote.repositories deleted file mode 100644 index be3995470b6cdc8954be9992331714228d6e6dd2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:20 CST 2019 -surefire-booter-2.18.1.jar>repo.jenkins-ci.org= -surefire-booter-2.18.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.jar b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.jar deleted file mode 100644 index 66e0377e6bd2660adb887a6ebae0e9a1a6e676a2..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.jar.sha1 deleted file mode 100644 index 3c37a17f05c1df724ef9afdf6a6cdd350785900b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0eb85fe5a28cb9fd6bf9381dc95a45f7acab6b9c \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.pom b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.pom deleted file mode 100644 index 7a5856626ea54f665a27ae7d7b98a1930ee100f0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.pom +++ /dev/null @@ -1,81 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 2.18.1 - ../pom.xml - - - surefire-booter - - SureFire Booter - - - - org.apache.maven.surefire - surefire-api - - - - - - - maven-surefire-plugin - - - org.apache.maven.surefire - surefire-shadefire - 2.12.4 - - - - - org.apache.maven.plugins - maven-shade-plugin - - - package - - shade - - - true - - - commons-lang:commons-lang - - - - - org.apache.commons.lang - org.apache.maven.surefire.shade.org.apache.commons.lang - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.pom.sha1 deleted file mode 100644 index a9dfc9d0abd64fcf9634b033cebde087e4197e38..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-booter/2.18.1/surefire-booter-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -58fb19d6c8d4a40eca8b1561885d3ac8ba2962c2 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/_remote.repositories deleted file mode 100644 index dec22d1814a096443371dfbacdb67f4e7c1a4a97..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:23 CST 2019 -surefire-junit4-2.18.1.jar>repo.jenkins-ci.org= -surefire-junit4-2.18.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.jar b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.jar deleted file mode 100644 index 15f26c57d6e361e75c4d60e93bb49b291e0d4b0a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.jar.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.jar.sha1 deleted file mode 100644 index 280d115026e5d07223d5043a5852c78980b3b66c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -90ef8afb719d8a9571ce760c1774e2ca9074799d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.pom b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.pom deleted file mode 100644 index e28c32832066c5f857dfd5d61f23187b2b167ecd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.pom +++ /dev/null @@ -1,71 +0,0 @@ - - - - surefire-providers - org.apache.maven.surefire - 2.18.1 - - 4.0.0 - surefire-junit4 - SureFire JUnit4 Runner - - - - META-INF - src/main/resources/META-INF - - - - - maven-surefire-plugin - - ${java.home}/bin/java - - - - 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.18.1 - compile - - - - diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.pom.sha1 deleted file mode 100644 index efe418e2dc9b687c4615328f71fa84df51fa0e51..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-junit4/2.18.1/surefire-junit4-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4403c3ae08faf186d696a2bed8edd5021832927e \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/_remote.repositories deleted file mode 100644 index 767e17015c2d7e544ef931bdd377df419a5788ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:22 CST 2019 -surefire-providers-2.18.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/surefire-providers-2.18.1.pom b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/surefire-providers-2.18.1.pom deleted file mode 100644 index 519f6a8a736bff0b8d5fc9d670ff6ec29b49e0ed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/surefire-providers-2.18.1.pom +++ /dev/null @@ -1,71 +0,0 @@ - - - - - 4.0.0 - - - org.apache.maven.surefire - surefire - 2.18.1 - ../pom.xml - - - surefire-providers - pom - - SureFire Providers - - - common-junit3 - common-java5 - common-junit4 - common-junit48 - surefire-junit3 - surefire-junit4 - surefire-junit47 - surefire-testng-utils - surefire-testng - - - - - org.apache.maven.surefire - surefire-api - - - - - - - maven-surefire-plugin - 2.12.4 - - - org.apache.maven.surefire - surefire-shadefire - 2.12.4 - - - - - - - diff --git a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/surefire-providers-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/surefire-providers-2.18.1.pom.sha1 deleted file mode 100644 index 7ba1aff2618336f23df50e3e7d1fb729a704c2e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire-providers/2.18.1/surefire-providers-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f8ce82435708168c5b4516034f42f713aa8c6b0d \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/_remote.repositories b/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/_remote.repositories deleted file mode 100644 index b23a4e816bae2e47601054063ffc43924d140ada..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:32 CST 2019 -surefire-2.18.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom b/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom deleted file mode 100644 index 4e7de5714936c872bbff7b9259b50f5b45f3fe40..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom +++ /dev/null @@ -1,462 +0,0 @@ - - - - 4.0.0 - - - maven-parent - org.apache.maven - 26 - ../pom/maven/pom.xml - - - org.apache.maven.surefire - surefire - 2.18.1 - pom - - Apache Maven Surefire - Surefire is a test framework project. - http://maven.apache.org/surefire - 2004 - - - - Jesse Kuhnert - - - Marvin Froeder - marvin@marvinformatics.com - - - - - surefire-shadefire - surefire-api - surefire-booter - surefire-grouper - surefire-providers - maven-surefire-common - surefire-report-parser - maven-surefire-plugin - maven-failsafe-plugin - maven-surefire-report-plugin - surefire-setup-integration-tests - surefire-integration-tests - - - - ${maven.surefire.scm.devConnection} - ${maven.surefire.scm.devConnection} - https://github.com/apache/maven-surefire/tree/${project.scm.tag} - surefire-2.18.1_vote-1 - - - jira - http://jira.codehaus.org/browse/SUREFIRE - - - Jenkins - https://builds.apache.org/job/maven-surefire/ - - - - apache.website - scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path} - - - - - 2.2.1 - - 3.3 - scm:git:https://git-wip-us.apache.org/repos/asf/maven-surefire.git - surefire-archives/surefire-LATEST - - - - - - org.apache.maven.surefire - surefire-api - ${project.version} - - - org.apache.commons - commons-lang3 - 3.1 - - - commons-io - commons-io - 2.2 - - - org.apache.maven.surefire - surefire-booter - ${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 - ${mavenPluginPluginVersion} - 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.shared - maven-shared-utils - 0.4 - - - org.apache.maven.shared - maven-verifier - 1.5 - - - jmock - jmock - 1.0.1 - test - - - junit - junit - 3.8.1 - test - - - com.google.code.findbugs - jsr305 - 2.0.1 - provided - - - - - - junit - junit - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.11 - - - signature-check - - check - - - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - maven-surefire-plugin - 2.12.4 - - - false - - - - maven-release-plugin - - true - clean install - - - - maven-shade-plugin - 1.5 - - - maven-plugin-plugin - ${mavenPluginPluginVersion} - - true - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.apache.rat - apache-rat-plugin - - - rat-check - - check - - - - .git/**/* - **/.idea - **/.svn/**/* - src/test/resources/**/* - **/*.jj - src/test/resources/**/*.css - **/*.iml - **/*.ipr - **/*.iws - **/*.versionsBackup - **/dependency-reduced-pom.xml - .gitignore - src/main/resources/META-INF/services/org.apache.maven.surefire.providerapi.SurefireProvider - - - - - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - false - - ${maven.surefire.scm.devConnection} - ${maven.surefire.scm.devConnection} - - - - - 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.12.4 - - - - - - - - - - reporting - - - - - - org.apache.maven.plugins - maven-site-plugin - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.11 - - - 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.18.1/surefire-2.18.1.pom.sha1 b/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom.sha1 deleted file mode 100644 index 3f3e63b1565d68c14ebdef2d3f425625e30890aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/surefire/surefire/2.18.1/surefire-2.18.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -86c69e79aa595f22b02b2bdd4e46ab34e3431375 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/_remote.repositories deleted file mode 100644 index 0b19130fbf26f005f32e5a0b80f498e717f7bcf6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -wagon-provider-api-1.0-alpha-6.jar>repo.jenkins-ci.org= -wagon-provider-api-1.0-alpha-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar deleted file mode 100644 index a5dd6da272402e044515c3432129c2f4ebf72477..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar.sha1 deleted file mode 100644 index efc535425ffe2ed96008b7842ea6cf1fedbbeab3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3c986c63fc873fbaef75ad4e57cd162fd5c9dd6 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom deleted file mode 100644 index 694a24167ce5e3743cb65be3465cc06b8185dd93..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom +++ /dev/null @@ -1,20 +0,0 @@ - - - wagon - org.apache.maven.wagon - 1.0-alpha-6 - - 4.0.0 - wagon-provider-api - Maven Wagon API - 1.0-alpha-6 - - - org.codehaus.plexus - plexus-utils - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 deleted file mode 100644 index 1fe36b67d4ed2a3e09bb36c02bdfbae8ac7a2a67..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c1add559b9ed89168c2ae447481cfb63937ce2f \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/_remote.repositories deleted file mode 100644 index fe5309f86d7e6e6d02a4651806cf042f69d8818a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -wagon-provider-api-1.0-beta-6.jar>repo.jenkins-ci.org= -wagon-provider-api-1.0-beta-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar deleted file mode 100644 index 246548df0381caea4c519266247421eb7da45679..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar.sha1 deleted file mode 100644 index 81a6ea635df94bd6264d18dac49f099fa7e7064f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f952e0282ae77ae59851d96bb18015e520b6208 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom deleted file mode 100644 index 8209bf85d110c28b5d33b7452f14aaa0f1876059..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - - 4.0.0 - - - org.apache.maven.wagon - wagon - 1.0-beta-6 - ../pom.xml - - - wagon-provider-api - Maven Wagon API - Maven Wagon API that defines the contract between different Wagon implementations - - - - org.codehaus.plexus - plexus-utils - - - easymock - easymock - 1.2_Java1.3 - test - - - diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 deleted file mode 100644 index ee05ba18484d484495eca81aaf30782bf8ea77d7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5dfdc8e497311085c9a1d6a634320b553442d281 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/_remote.repositories deleted file mode 100644 index a82e2330eb431da4adb8f3b6b3398d971d7dbaf6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:09 CST 2019 -wagon-provider-api-1.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar deleted file mode 100644 index a49be18dd0146c7ccb76a01bd23ef2cbedd8a1ba..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar.sha1 deleted file mode 100644 index c9a4dfea475639bed47788e488f5fc6b4a2e99a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -12bcd211158c0c09b027d06b70371861398fedea \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/_remote.repositories deleted file mode 100644 index 03b4dbff5bce35c3a26eca71c7752a5768090bb6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:40 CST 2019 -wagon-1.0-alpha-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom b/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom deleted file mode 100644 index 04bfffbdb2383699c206a9f0b58a7125ec3412d9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom +++ /dev/null @@ -1,179 +0,0 @@ - - 4.0.0 - org.apache.maven.wagon - wagon - pom - Maven Wagon - 1.0-alpha-6 - Tools to manage artifacts and deployment - - jira - http://jira.codehaus.org/browse/WAGON - - - wagon-dev@maven.apache.org - - -
wagon-dev@maven.apache.org
-
-
-
- 2003 - - - Maven Wagon User List - wagon-users-subscribe@maven.apache.org - wagon-users-unsubscribe@maven.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=wagon-users@maven.apache.org - - - Maven Wagon Developer List - wagon-dev-subscribe@maven.apache.org - wagon-dev-unsubscribe@maven.apache.org - http://nagoya.apache.org/eyebrowse/SummarizeList?listName=wagon-dev@maven.apache.org - - - - - michal - Michal Maczka - michal@codehaus.com - Codehaus - - Developer - - - - brett - Brett Porter - brett@apache.org - - Developer - - +10 - - - jvanzyl - Jason van Zyl - jason@maven.org - - Developer - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:svn:http://svn.apache.org/repos/asf/maven/wagon/tags/wagon-1.0-alpha-6 - scm:svn:https://svn.apache.org/repos/asf/maven/wagon/tags/wagon-1.0-alpha-6 - http://svn.apache.org/viewcvs.cgi/maven/wagon/tags/wagon-1.0-alpha-6 - - - Apache Software Foundation - http://www.apache.org/ - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - - - - - - - wagon-provider-api - wagon-provider-test - wagon-providers - - - - junit - junit - test - - - - - - org.apache.maven.wagon - wagon-provider-api - 1.0-alpha-6 - - - org.apache.maven.wagon - wagon-provider-test - 1.0-alpha-6 - - - junit - junit - 3.8.1 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-8 - - - org.codehaus.plexus - plexus-utils - 1.0.4 - - - - - - repo1 - scp://beaver.codehaus.org/home/projects/maven/repository-staging/to-ibiblio/maven2 - - - snapshots - scp://beaver.codehaus.org/home/projects/maven/repository-staging/snapshots/maven2 - - -
\ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 deleted file mode 100644 index 69be843fb65b4e99c0a4c03cf39f4c4d6fae0daf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -69aa7db6cd9b32c6026dfb3d77d6a6865a2a9fc3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/_remote.repositories b/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/_remote.repositories deleted file mode 100644 index b302509724c4aa74d064d72d91d0b0dd16ea31a0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:33 CST 2019 -wagon-1.0-beta-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom b/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom deleted file mode 100644 index dbd123fc275518a05211634101d162316d0471a2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom +++ /dev/null @@ -1,351 +0,0 @@ - - - - 4.0.0 - - - maven-parent - org.apache.maven - 11 - ../pom/maven/pom.xml - - - org.apache.maven.wagon - wagon - 1.0-beta-6 - pom - - Maven Wagon - Tools to manage artifacts and deployment - http://maven.apache.org/wagon - 2003 - - - - michal - Michal Maczka - michal@codehaus.org - Codehaus - - Developer - - - - - - 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 - - - - - - Wagon User List - 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://www.nabble.com/Wagon---Users-f13870.html - http://maven.wagon.users.markmail.org/ - - - - Wagon Developer List - 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://www.nabble.com/Wagon---Dev-f13871.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:svn:http://svn.apache.org/repos/asf/maven/wagon/tags/wagon-1.0-beta-6 - scm:svn:https://svn.apache.org/repos/asf/maven/wagon/tags/wagon-1.0-beta-6 - http://svn.apache.org/viewvc/maven/wagon/tags/wagon-1.0-beta-6 - - - jira - http://jira.codehaus.org/browse/WAGON - - - - - wagon-provider-api - wagon-providers - wagon-provider-test - - - - - junit - junit - test - - - - - - org.apache.maven.wagon - wagon-provider-api - 1.0-beta-6 - - - org.apache.maven.wagon - wagon-provider-test - 1.0-beta-6 - - - org.apache.maven.wagon - wagon-ssh-common-test - 1.0-beta-6 - - - org.apache.maven.wagon - wagon-ssh-common - 1.0-beta-6 - - - junit - junit - 3.8.1 - - - 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.0-alpha-9 - test - - - org.codehaus.plexus - plexus-utils - 1.4.2 - - - - - - - - - maven-release-plugin - - https://svn.apache.org/repos/asf/maven/wagon/tags - true - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - - - - org.codehaus.plexus - plexus-maven-plugin - - 1.3.5 - - - - - - org.codehaus.plexus - plexus-maven-plugin - - - generate - - descriptor - - - - - - - - - - - maven-javadoc-plugin - - - http://java.sun.com/j2ee/1.4/docs/api - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/ - - - - - - - - - - release - - - - - maven-assembly-plugin - 2.2-beta-4 - - - make-project-src-distro - package - - single - - - - src/main/assembly/source-release.xml - - true - gnu - - - - - - - - - diff --git a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 b/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 deleted file mode 100644 index 0f123c19fedee540995b6228b1a8fa839a31fee1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a5a7966afb1b64f97c2f3f23a3e80592dc94986 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-core/1.3.8/_remote.repositories b/artifacts/m2/org/apache/struts/struts-core/1.3.8/_remote.repositories deleted file mode 100644 index 99e2ff9b8686f9c98617c16eb7e8d8fdf7db99e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-core/1.3.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -struts-core-1.3.8.jar>repo.jenkins-ci.org= -struts-core-1.3.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar b/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar deleted file mode 100644 index a4074127507e7d4ad83a3ca0c4805f80da7cdc5e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 b/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 deleted file mode 100644 index bb49edade0ccdbbc339cad6cdc03092fb6ebb252..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -66178d4a9279ebb1cd1eb79c10dc204b4199f061 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom b/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom deleted file mode 100644 index 83213c9ab81752a1820eef5c54bdf77901c7b556..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom +++ /dev/null @@ -1,149 +0,0 @@ - - - struts-parent - org.apache.struts - 1.3.8 - - 4.0.0 - org.apache.struts - struts-core - Struts Core - 1.3.8 - http://struts.apache.org - - scm:svn:http://svn.apache.org/repos/asf/struts/struts1/trunk/core/ - scm:svn:https://svn.apache.org/repos/asf/struts/struts1/trunk/core - http://svn.apache.org/repos/asf/struts/struts1/trunk/core - - - - - src/main/resources - - - src/main/java - - **/*.properties - - - - - - src/test/java - - **/*.xml - **/*.properties - - - - - - - pre-assembly - - - - maven-javadoc-plugin - - - attach-javadoc - - jar - - - - - - maven-source-plugin - - - attach-source - - jar - - - - - - - - - - - antlr - antlr - 2.7.2 - - - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-chain - commons-chain - 1.1 - - - myfaces-api - myfaces - - - portlet-api - javax.portlet - - - - - commons-digester - commons-digester - 1.8 - - - commons-fileupload - commons-fileupload - 1.1.1 - true - - - commons-logging - commons-logging - 1.0.4 - - - commons-validator - commons-validator - 1.3.1 - - - xml-apis - xml-apis - - - - - javax.servlet - servlet-api - 2.3 - provided - - - junit - junit - 3.8.1 - true - - - oro - oro - 2.0.8 - - - - - apache-site - scp://people.apache.org/www/struts.apache.org/1.x/struts-core - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 b/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 deleted file mode 100644 index 454fe5a20841711b3cb193c21f083612be97fd08..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce1c07f0ecddb23c50c2f0a12c0b12d8cf1eb6d5 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-master/4/_remote.repositories b/artifacts/m2/org/apache/struts/struts-master/4/_remote.repositories deleted file mode 100644 index 598f9b0a2a9e484c357685e11bc8d291e208783a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-master/4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:20 CST 2019 -struts-master-4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/struts/struts-master/4/struts-master-4.pom b/artifacts/m2/org/apache/struts/struts-master/4/struts-master-4.pom deleted file mode 100644 index 8d52e9bf0f1ff70d533c6ab258a59c9b48807fa0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-master/4/struts-master-4.pom +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - 4.0.0 - - org.apache - apache - 2 - - org.apache.struts - struts-master - 4 - pom - Apache Struts - - - scm:svn:http://svn.apache.org/repos/asf/struts/maven/trunk/pom - scm:svn:http://svn.apache.org/repos/asf/struts/maven/trunk/pom - http://svn.apache.org/repos/asf/struts/maven/trunk/pom - - - - The goal of the Apache Struts project is to encourage application - architectures based on the "Model 2" approach, a variation of the classic - Model-View-Controller (MVC) design paradigm. Under Model 2, a servlet (or - equivalent) manages business logic execution, and presentation logic - resides mainly in server pages. - - http://struts.apache.org/ - 2000 - - - - Struts User List - user-subscribe@struts.apache.org - user-unsubscribe@struts.apache.org - user@struts.apache.org - http://mail-archives.apache.org/mod_mbox/struts-user/ - - http://struts.apache.org/mail.html#Archives - - - - Struts Developer List - dev-subscribe@struts.apache.org - dev-unsubscribe@struts.apache.org - dev@struts.apache.org - http://mail-archives.apache.org/mod_mbox/struts-dev/ - - http://struts.apache.org/mail.html#Archives - - - - Struts Commits List - commits-subscribe@struts.apache.org - commits-unsubscribe@struts.apache.org - http://mail-archives.apache.org/mod_mbox/struts-commits/ - - http://struts.apache.org/mail.html#Archives - - - - Struts Issues List - issues-subscribe@struts.apache.org - issues-unsubscribe@struts.apache.org - http://mail-archives.apache.org/mod_mbox/struts-issues/ - - http://struts.apache.org/mail.html#Archives - - - - - - - Craig R. McClanahan - craigmcc - craigmcc at apache.org - - PMC Member - - - - Ted Husted - husted - husted at apache.org - - PMC Member - - - - Cedric Dumoulin - cedric - cedric.dumoulin at lifl.fr - - PMC Member - - - - Martin Cooper - martinc - martinc at apache.org - - PMC Chair - - - - James Holmes - jholmes - jholmes at apache.org - - PMC Member - - - - David M. Karr - dmkarr - dmkarr at apache.org - - PMC Member - - - - Eddie Bush - ekbush - ekbush at apache.org - - Committer - - - - David Graham - dgraham - dgraham at apache.org - - PMC Member - - - - James Mitchell - jmitchell - jmitchell at apache.org - - PMC Member - - - - Don Brown - mrdon - mrdon at apache.org - - PMC Member - - - - Joe Germuska - germuska - germuska at apache.org - - PMC Member - - - - Niall Pemberton - niallp - niallp at apache.org - - PMC Member - - - - Hubert Rabago - hrabago - hrabago at apache.org - - PMC Member - - - - David Geary - dgeary - dgeary at apache.org - - Committer - - - - Wendy Smoak - wsmoak - wsmoak at apache.org - - PMC Member - - - - Gary VanMatre - gvanmatre - gvanmatre at apache.org - - PMC Member - - - - Sean Schofield - schof - schof at apache.org - - PMC Member - - - - Greg Reddin - greddin - greddin at apache.org - - PMC Member - - - - Laurie Harper - laurieh - laurieh at apache.org - - Committer - - - - Richard Feit - rich - rich at apache.org - - Committer - - - - Jason Carreira - jcarreira - jcarreira at apache.org - - Committer - - - - Patrick Lightbody - plightbo - plightbo at apache.org - - Committer - - - - Alexandru Popescu - apopescu - apopescu at apache.org - - Committer - - - - Rene Gielen - rgielen - rgielen at apache.org - - Committer - - - - Rainer Hermanns - hermanns - hermanns at apache.org - - Committer - - - - Toby Jee - tmjee - tmjee at apache.org - - Committer - - - - Ian Roughley - roughley - roughley at apache.org - - Committer - - - - Paul Benedict - - - - Committer - - - - Michael Jouravlev - mikus - mikus at apache.org - - Committer - - - - Bob Lee - crazybob - crazybob at apache.org - - Committer - - - - David H. DeWolf - ddewolf - ddewolf at apache.org - - Committer - - - - - - - struts-staging - Apache Struts Staging Repository - scp://people.apache.org/www/people.apache.org/builds/struts/m2-staging-repository - - - true - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - apache-site - Apache Struts Website - scp://people.apache.org/www/struts.apache.org - - - - - diff --git a/artifacts/m2/org/apache/struts/struts-master/4/struts-master-4.pom.sha1 b/artifacts/m2/org/apache/struts/struts-master/4/struts-master-4.pom.sha1 deleted file mode 100644 index 279349e06be83662169f33ca4a482821d001ad54..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-master/4/struts-master-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c8da55c806d8fbf788c512e25109c0a000dc19c \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-parent/1.3.8/_remote.repositories b/artifacts/m2/org/apache/struts/struts-parent/1.3.8/_remote.repositories deleted file mode 100644 index 30c832d6ed6e0783e0b5174ce9874ae649604d43..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-parent/1.3.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:20 CST 2019 -struts-parent-1.3.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom b/artifacts/m2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom deleted file mode 100644 index 20b0fb684cf1bfb57527dd0faab95ebf9eec7f7b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom +++ /dev/null @@ -1,259 +0,0 @@ - - - - - org.apache.struts - struts-master - 4 - - - 4.0.0 - org.apache.struts - struts-parent - 1.3.8 - pom - Struts - http://struts.apache.org/ - Apache Struts - - 2000 - - - scm:svn:http://svn.apache.org/repos/asf/struts/struts1/trunk - scm:svn:https://svn.apache.org/repos/asf/struts/struts1/trunk - http://svn.apache.org/viewcvs.cgi/struts/struts1/trunk - - - - JIRA - http://issues.apache.org/struts/ - - - - - - - apache-site - scp://people.apache.org/www/struts.apache.org/1.x/ - - - - - - apps - - - apps - - - - apps - - - - itest - - - itest - - - - integration - - - - assembly - - - assembly - - - - assembly - - - - release - - - release - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - core - el - extras - faces - mailreader-dao - scripting - taglib - tiles - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - Apache Software Foundation - http://www.apache.org/ - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - maven-site-plugin - 2.0-beta-4 - - - maven-source-plugin - 2.0.1 - - - maven-jar-plugin - 2.1 - - - - true - true - - - - - - net.sf.dtddoc - dtddoc-maven-plugin - 1.0.0 - - - net.sourceforge.maven-taglib - maven-taglib-plugin - 2.3 - - - - - - maven-antrun-plugin - false - 1.1 - - - copy-dtds - site - - - - - - - - - - run - - - - - - - install - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - maven-javadoc-plugin - 2.1 - - true - - - - maven-surefire-report-plugin - - - maven-checkstyle-plugin - - http://svn.apache.org/repos/asf/struts/maven/trunk/build/struts_checks.xml - - - - org.apache.maven.plugins - maven-jxr-plugin - - - maven-pmd-plugin - - - net.sf.dtddoc - dtddoc-maven-plugin - - - **/web-app* - - - - - - - - - - - diff --git a/artifacts/m2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 b/artifacts/m2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 deleted file mode 100644 index cfd5389d7aedc06b03382dd8f6fee74c3f420bba..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -291b2e506ad9e66ffd4086a2af61d156a4e533e8 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/_remote.repositories b/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/_remote.repositories deleted file mode 100644 index b1749d45df76ad71fe724757983b22f3f1806651..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -struts-taglib-1.3.8.jar>repo.jenkins-ci.org= -struts-taglib-1.3.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar b/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar deleted file mode 100644 index 62a1df0fc58c36443b730b62ffcea597841f2097..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 b/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 deleted file mode 100644 index 47fa764a90ffdc9231ac8b302b1ed9716d95f1e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e87e9817bdf03c2367fb5f6d5ead953db2df4c21 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom b/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom deleted file mode 100644 index 42814035df8112156ede4013897f83912a8fffc0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom +++ /dev/null @@ -1,107 +0,0 @@ - - - struts-parent - org.apache.struts - 1.3.8 - - 4.0.0 - org.apache.struts - struts-taglib - Struts Taglib - 1.3.8 - http://struts.apache.org - - scm:svn:http://svn.apache.org/repos/asf/struts/struts1/trunk/taglib/ - scm:svn:https://svn.apache.org/repos/asf/struts/struts1/trunk/taglib/ - http://svn.apache.org/repos/asf/struts/struts1/trunk/taglib/ - - - - - src/main/resources - - - src/main/java - - **/*.properties - - - - - - src/test/java - - **/*.java - - - - - - - pre-assembly - - - - maven-javadoc-plugin - - - attach-javadoc - - jar - - - - - - maven-source-plugin - - - attach-source - - jar - - - - - - - - - - - junit - junit - 3.8.1 - test - - - javax.servlet - servlet-api - 2.3 - provided - - - org.apache.struts - struts-core - 1.3.8 - - - - - - net.sourceforge.maven-taglib - maven-taglib-plugin - - ${basedir}/src/main/resources/META-INF/tld - - - - - - - apache-site - scp://people.apache.org/www/struts.apache.org/1.x/struts-taglib - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 b/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 deleted file mode 100644 index 0f4cb8de98fb3bd31a77944e29f76686a2f99b98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2aeddb7ea2febcd4734ebcdf33968925c847ead3 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/_remote.repositories b/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/_remote.repositories deleted file mode 100644 index 254e079b61b6a88f739d96e4572bd297bb72f528..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -struts-tiles-1.3.8.jar>repo.jenkins-ci.org= -struts-tiles-1.3.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar b/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar deleted file mode 100644 index 0f551ac9cc4b6f48d0661c02e5abc2e1810c5390..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 b/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 deleted file mode 100644 index 32a8a272e9ae781993688b1741a635cb1cb6f5e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d212f8ea5d908bc9906e669428b7694dff60785 \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom b/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom deleted file mode 100644 index ae711e0d8fcfb19cb29f488bb6ad7a0bf584c347..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom +++ /dev/null @@ -1,101 +0,0 @@ - - - struts-parent - org.apache.struts - 1.3.8 - - 4.0.0 - org.apache.struts - struts-tiles - Struts Tiles - 1.3.8 - http://struts.apache.org - - scm:svn:http://svn.apache.org/repos/asf/struts/struts1/trunk/tiles/ - scm:svn:https://svn.apache.org/repos/asf/struts/struts1/trunk/tiles/ - http://svn.apache.org/repos/asf/struts/struts1/trunk/tiles/ - - - - - src/main/resources - - - - - src/test/java - - **/*.xml - - - - - - - pre-assembly - - - - maven-javadoc-plugin - - - attach-javadoc - - jar - - - - - - maven-source-plugin - - - attach-source - - jar - - - - - - - - - - - javax.servlet - servlet-api - 2.3 - provided - - - junit - junit - 3.8.1 - test - - - org.apache.struts - struts-core - 1.3.8 - - - - - - net.sourceforge.maven-taglib - maven-taglib-plugin - - ${basedir}/src/main/resources/META-INF/tld - - - - - - - apache-site - scp://people.apache.org/www/struts.apache.org/1.x/struts-tiles - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 b/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 deleted file mode 100644 index a94745bfc95d4c4404d71b87489ddd3f529f60f1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3f13b707b4220197c94b48d366e6ca79cb28f805 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/_remote.repositories b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/_remote.repositories deleted file mode 100644 index d7ff0230123b35c8516b1497e3a5c4447fe88df2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -tomcat-embed-core-8.5.5.jar>repo.jenkins-ci.org= -tomcat-embed-core-8.5.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.jar b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.jar deleted file mode 100644 index 666d2daeb1516d28db069887ad58fcb8e6128aed..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.jar.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.jar.sha1 deleted file mode 100644 index 85b5cf5cfb4ec7a45195de4bbec8cfae5b0f3d86..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d55e12a418ff99ecd723a118c2a28bb91079972d \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.pom b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.pom deleted file mode 100644 index 46d31b51a97dcae8057d9b1f00bea1ff291b2b6b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-core - 8.5.5 - Core Tomcat implementation - http://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-core/8.5.5/tomcat-embed-core-8.5.5.pom.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.pom.sha1 deleted file mode 100644 index f11882239638854b6ec1a309cc13a64fb29f54d6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-core/8.5.5/tomcat-embed-core-8.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a8b09863c69385ed73c27a904763038c553a177e \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/_remote.repositories b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/_remote.repositories deleted file mode 100644 index bcf0dd180d5f292ce4fcc96f07d0484811223ef2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -tomcat-embed-el-8.5.5.jar>repo.jenkins-ci.org= -tomcat-embed-el-8.5.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.jar b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.jar deleted file mode 100644 index 675eab72bd713cc4ee80df2f97d2a0b9d9812c7f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.jar.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.jar.sha1 deleted file mode 100644 index 16d3d96377072e37272506ef5539cee536e0a630..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -54bd595afa6e4fd141c70fb2d1cecacf4bd11e53 \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.pom b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.pom deleted file mode 100644 index b2844a3911f9dc88405da52035c437f6c7d37d25..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-el - 8.5.5 - Core Tomcat implementation - http://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/8.5.5/tomcat-embed-el-8.5.5.pom.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.pom.sha1 deleted file mode 100644 index 8aa1d02fd4d5a8f00bde1e85b8692a3f0e319bbb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-el/8.5.5/tomcat-embed-el-8.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e4051036bbe23be079e6328850677098af37465e \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/_remote.repositories b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/_remote.repositories deleted file mode 100644 index 5a3a9d29dab3a867e1b8e37dd3814968dcad6e81..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -tomcat-embed-websocket-8.5.5.jar>repo.jenkins-ci.org= -tomcat-embed-websocket-8.5.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.jar b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.jar deleted file mode 100644 index cc68682428da9eab91307d9f091a69b42d206fc0..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.jar.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.jar.sha1 deleted file mode 100644 index 64d51800f8c260dc143ba382950365b13370d2c1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd99cd1cd4c824abdf03466f0509f067747f0d1a \ No newline at end of file diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.pom b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.pom deleted file mode 100644 index 593cab243c7ddd1ae2ee4fec4ecbffb2ecad563e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - 4.0.0 - org.apache.tomcat.embed - tomcat-embed-websocket - 8.5.5 - Core Tomcat implementation - http://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 - 8.5.5 - compile - - - diff --git a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.pom.sha1 b/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.pom.sha1 deleted file mode 100644 index 73bc31e8e71e17e6dbfcee2814fb3ca60b13502d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.5/tomcat-embed-websocket-8.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -81338d4c389fec18fe0b934fb72fee72d8809594 \ No newline at end of file diff --git a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/_remote.repositories b/artifacts/m2/org/apache/velocity/velocity-tools/2.0/_remote.repositories deleted file mode 100644 index a890b23ef97da64aadf30e328424125c7ac109df..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -velocity-tools-2.0.pom>repo.jenkins-ci.org= -velocity-tools-2.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar b/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar deleted file mode 100644 index beb7434d58f5e15b46263c9f24e197c50695b46d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 b/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 deleted file mode 100644 index 55806b20eeb2eec7a4423b238c09033c0ef2ce2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -69936384de86857018b023a8c56ae0635c56b6a0 \ No newline at end of file diff --git a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom b/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom deleted file mode 100644 index fb9fd245d4b7bfde982f441e0a650c666d5dde48..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - 4.0.0 - - org.apache.velocity - velocity-tools - VelocityTools - 2.0 - jar - - - Apache Software Foundation - http://velocity.apache.org/ - - http://velocity.apache.org/tools/devel/ - - VelocityTools is an integrated collection of Velocity subprojects - with the common goal of creating tools and infrastructure to speed and ease - development of both web and non-web applications using the Velocity template - engine. - - 2002 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - install - build/classes - dist - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-site-plugin - - UTF-8 - UTF-8 - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/Test*.java - **/*Test.java - **/*TestCase.java - **/*Tests.java - - - - - - - src/main/java - - **/*.java - - - - - - - - velocity.apache.org - scpexe://people.apache.org/www/velocity.apache.org/tools/releases/velocity-tools-2.0/ - - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - nbubna - Nathan Bubna - nbubna@apache.org - ESHA Research - -8 - - Java Developer - - - - henning - Henning Schmiedehausen - henning@apache.org - - Java Developer - - - - wglass - Will Glass-Husain - wglass@apache.org - - Java Developer - - - - geirm - Geir Magnusson Jr. - geirm@apache.org - - Java Developer - - - - dlr - Daniel Rall - dlr@apache.org - - Java Developer - - - - marino - Marinó A. Jónsson - marino@apache.org - - Java Developer - - - - cbrisson - Claude Brisson - cbrisson@apache.org - - Java Developer - - - - - - Craig R. McClanahan - - - Christopher Schultz - - - Chris Townsen - - - Dave Bryson - - - David Graham - - - David Winterfeldt - - - Denis Bredelet - - - Dmitri Colebatch - - - Gabriel Sidler - - - Jon S. Stevens - - - Kent Johnson - - - Leon Messerschmidt - - - Mike Kienenberger - - - S. Brett Sutton - - - Shinobu Kawai - - - Ted Husted - - - Tim Colson - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - dependencies - issue-tracking - license - summary - scm - - - - - - org.apache.maven.plugins - maven-changes-plugin - - - - changes-report - jira-report - - - - - - sorter/field=issuekey&sorter/order=ASC - 100 - http://velocity.apache.org/who-we-are.html - - - - org.codehaus.mojo - taglist-maven-plugin - - TODO - FIXME - - - - org.apache.maven.plugins - maven-jxr-plugin - - - org.apache.maven.plugins - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.5.0/docs/api - http://jakarta.apache.org/commons/lang/api-release - http://jakarta.apache.org/commons/logging/api-release - http://jakarta.apache.org/commons/collections/api-release - http://logging.apache.org/log4j/docs/api - http://velocity.apache.org/engine/releases/velocity-1.5/apidocs - - - - - org.apache.maven.plugins - maven-changelog-plugin - - - - - - - Velocity User List - user-subscribe@velocity.apache.org - user-unsubscribe@velocity.apache.org - http://mail-archives.apache.org/mod_mbox/velocity-user/ - - http://marc.theaimsgroup.com/?l=velocity-user&r=1&w=2 - http://dir.gmane.org/gmane.comp.jakarta.velocity.user - http://www.nabble.com/Velocity---User-f347.html - http://www.mail-archive.com/user%40velocity.apache.org/ - http://www.mail-archive.com/velocity-user%40jakarta.apache.org/ - - - - Velocity Developer List - dev-subscribe@velocity.apache.org - dev-unsubscribe@velocity.apache.org - http://mail-archives.apache.org/mod_mbox/velocity-dev/ - - http://marc.theaimsgroup.com/?l=velocity-dev&r=1&w=2/ - http://dir.gmane.org/gmane.comp.jakarta.velocity.devel - http://www.nabble.com/Velocity---Dev-f346.html - http://www.mail-archive.com/dev%40velocity.apache.org/ - http://www.mail-archive.com/velocity-dev%40jakarta.apache.org/ - - - - - - - JIRA - http://issues.apache.org/jira/browse/VELTOOLS - - - scm:svn:http://svn.apache.org/repos/asf/velocity/tools/trunk - scm:svn:https://svn.apache.org/repos/asf/velocity/tools/trunk - HEAD - http://svn.apache.org/repos/asf/velocity/tools/trunk - - - - - commons-beanutils - commons-beanutils - 1.7.0 - - - commons-digester - commons-digester - 1.8 - - - commons-chain - commons-chain - 1.1 - - - javax.portlet - portlet-api - - - myfaces - myfaces-api - - - - - commons-collections - commons-collections - 3.2 - - - commons-lang - commons-lang - 2.2 - true - - - commons-logging - commons-logging - 1.1 - - - avalon-framework - avalon-framework - - - logkit - logkit - - - log4j - log4j - - - - - commons-validator - commons-validator - 1.3.1 - - - xml-apis - xml-apis - - - - - dom4j - dom4j - 1.1 - compile - - - javax.servlet - servlet-api - 2.3 - provided - - - oro - oro - 2.0.8 - - - sslext - sslext - 1.2-0 - - - struts - struts - - - - - org.apache.struts - struts-core - 1.3.8 - - - org.apache.struts - struts-taglib - 1.3.8 - - - org.apache.struts - struts-tiles - 1.3.8 - - - org.apache.velocity - velocity - 1.6.2 - - - httpunit - httpunit - 1.6.1 - test - - - org.mortbay.jetty - jetty-embedded - 6.0.1 - test - - - org.mortbay.jetty - jetty-embedded - 6.0.1 - test - - - nekohtml - nekohtml - 0.9.5 - test - - - rhino - js - 1.6R5 - test - - - xerces - xercesImpl - 2.8.1 - test - - - xerces - xmlParserAPIs - 2.6.2 - test - - - junit - junit - 4.1 - test - - - - - diff --git a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 b/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 deleted file mode 100644 index 0d300ad1aee56d34cc43194200041c1cac8493ca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dfbd6d8a50df5de5ba9949e9ca9d0cf9af6ca99e \ No newline at end of file diff --git a/artifacts/m2/org/apache/velocity/velocity/1.5/_remote.repositories b/artifacts/m2/org/apache/velocity/velocity/1.5/_remote.repositories deleted file mode 100644 index 3be7a40ceb627122126ffac7f811def2b5c7fb07..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -velocity-1.5.pom>repo.jenkins-ci.org= -velocity-1.5.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.jar b/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.jar deleted file mode 100644 index 7c7f2c43b4379bba7921bdb00a878ac48bd28fd4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 b/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 deleted file mode 100644 index d3f637eb63f8051e6d8f2b3a682e46541e457129..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -09f306baf7523ffc0e81a6353d08a584d254133b \ No newline at end of file diff --git a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom b/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom deleted file mode 100644 index 861454fea8404f98a58be8f1cfc2082fe369522e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom +++ /dev/null @@ -1,230 +0,0 @@ - - - 4.0.0 - org.apache.velocity - velocity - pom - Apache Velocity - 1.5 - Apache Velocity is a general purpose template engine. - http://velocity.apache.org/engine/releases/velocity-1.5/ - - JIRA - https://issues.apache.org/jira/browse/VELOCITY - - 2000 - - - wglass - Will Glass-Husain - wglass@forio.com - Forio Business Simulations - - Java Developer - - - - geirm - Geir Magnusson Jr. - geirm@optonline.net - Independent (DVSL Maven) - - Java Developer - - - - dlr - Daniel Rall - dlr@finemaltcoding.com - CollabNet, Inc. - - Java Developer - - - - henning - Henning P. Schmiedehausen - hps@intermeta.de - INTERMETA - Gesellschaft für Mehrwertdienste mbH - - Java Developer - - 2 - - - nbubna - Nathan Bubna - nathan@esha.com - ESHA Research - - Java Developer - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - scm:svn:http://svn.apache.org/repos/asf/velocity/engine/tags/Velocity_1.5 - scm:svn:https://svn.apache.org/repos/asf/velocity/engine/tags/Velocity_1.5 - http://svn.apache.org/viewvc/velocity/engine/tags/Velocity_1.5 - - - The Apache Software Foundation - http://www.apache.org/ - - - src/java - src/test - install - - - maven-site-plugin - - UTF-8 - UTF-8 - ${basedir}/xdocs/docs - - - - - - - - commons-collections - commons-collections - 3.1 - - - commons-lang - commons-lang - 2.1 - - - oro - oro - 2.0.8 - - - jdom - jdom - 1.0 - provided - - - log4j - log4j - 1.2.12 - provided - - - javax.servlet - servlet-api - 2.3 - provided - - - logkit - logkit - 2.0 - provided - - - ant - ant - 1.6 - provided - - - werken-xpath - werken-xpath - 0.9.4 - provided - - - - - - maven-project-info-reports-plugin - - - - dependencies - issue-tracking - license - summary - scm - - - - - - maven-changes-plugin - - 12311337 - fixfor=12310253&fixfor=12312142&fixfor=12312057&sorter/field=issuekey&sorter/order=ASC - 500 - http://velocity.apache.org/who-we-are.html - - - - - changes-report - jira-report - - - - - - org.codehaus.mojo - taglist-maven-plugin - - TODO - FIXME - - - - maven-jxr-plugin - - - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api - http://jakarta.apache.org/oro/api - http://jakarta.apache.org/commons/lang/api-release - http://jakarta.apache.org/commons/collections/api-release - http://www.jdom.org/docs/apidocs - http://logging.apache.org/log4j/docs/api - http://excalibur.apache.org/apidocs - http://tomcat.apache.org/tomcat-4.1-doc/servletapi - - - - - maven-changelog-plugin - - - - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - velocity.apache.org - scpexe://people.apache.org/www/velocity.apache.org/engine/releases/velocity-1.5/ - - deployed - - diff --git a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 b/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 deleted file mode 100644 index 6a20f83314879833175364b4536d30e9883ced7d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.5/velocity-1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9ee50da2c84190ba6e3b8528428f06b2b669851c \ No newline at end of file diff --git a/artifacts/m2/org/apache/velocity/velocity/1.6.2/_remote.repositories b/artifacts/m2/org/apache/velocity/velocity/1.6.2/_remote.repositories deleted file mode 100644 index f805b3c861d6d3b03e2a45d9fc372bf9fa05d365..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.6.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:23 CST 2019 -velocity-1.6.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom b/artifacts/m2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom deleted file mode 100644 index 791a73cf254b602e7dfaad77dbd0837d9d0e1380..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - - 4.0.0 - - - org.apache - apache - 4 - - - org.apache.velocity - velocity - 1.6.2 - - Apache Velocity - http://velocity.apache.org/engine/releases/velocity-1.6.2/ - Apache Velocity is a general purpose template engine. - 2000 - jar - - - 2.0.9 - - - - install - src/java - src/test - - - org.apache.maven.plugins - maven-site-plugin - - UTF-8 - UTF-8 - ${basedir}/xdocs/docs - - - - - - src/java - - **/*.java - - - - - - - - velocity.apache.org - scpexe://people.apache.org/www/velocity.apache.org/engine/releases/velocity-1.6.2/ - - - apache.releases - Apache Release Distribution Repository - scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository - - - apache.snapshots - Apache Development Snapshot Repository - scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository - - - - - - Will Glass-Husain - wglass - wglass@forio.com - Forio Business Simulations - - Java Developer - - - - - Geir Magnusson Jr. - geirm - geirm@optonline.net - Independent (DVSL Maven) - - Java Developer - - - - - Daniel Rall - dlr - dlr@finemaltcoding.com - CollabNet, Inc. - - Java Developer - - - - - Henning P. Schmiedehausen - henning - hps@intermeta.de - INTERMETA - Gesellschaft für Mehrwertdienste mbH - - Java Developer - - 2 - - - - Nathan Bubna - nbubna - nathan@esha.com - ESHA Research - - Java Developer - - - - - - - - commons-collections - commons-collections - 3.2.1 - - - commons-lang - commons-lang - 2.4 - - - oro - oro - 2.0.8 - - - jdom - jdom - 1.0 - provided - - - commons-logging - commons-logging - 1.1 - provided - - - avalon-framework - avalon-framework - - - log4j - log4j - - - javax.servlet - servlet-api - - - - - log4j - log4j - 1.2.12 - provided - - - javax.servlet - servlet-api - 2.3 - provided - - - logkit - logkit - 2.0 - provided - - - ant - ant - 1.6 - provided - - - werken-xpath - werken-xpath - 0.9.4 - provided - - - junit - junit - 3.8.1 - test - - - hsqldb - hsqldb - 1.7.1 - test - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - - dependencies - issue-tracking - license - summary - scm - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.0 - - - - changes-report - jira-report - - - - - ${jira.browse.url}/%ISSUE% - - 12311337 - - fixfor=12310290&sorter/field=issuekey&sorter/order=ASC - 100 - http://velocity.apache.org/who-we-are.html - - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - TODO - FIXME - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2se/1.4.2/docs/api - http://jakarta.apache.org/oro/api - http://jakarta.apache.org/commons/lang/api-release - http://jakarta.apache.org/commons/collections/api-release - - http://www.jdom.org/docs/apidocs - http://logging.apache.org/log4j/docs/api - http://excalibur.apache.org/apidocs - http://tomcat.apache.org/tomcat-4.1-doc/servletapi - - - - - org.apache.maven.plugins - maven-changelog-plugin - 2.1 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.2 - - true - Low - Max - build/findbugs-exclude.xml - xdocs - - - - - - - scm:svn:http://svn.apache.org/repos/asf/velocity/engine/branches/1.6.x - scm:svn:https://svn.apache.org/repos/asf/velocity/engine/branches/1.6.x - HEAD - http://svn.apache.org/viewvc/velocity/engine/branches/1.6.x - - - - https://issues.apache.org/jira/browse - - - - JIRA - ${jira.browse.url}/VELOCITY - - diff --git a/artifacts/m2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 b/artifacts/m2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 deleted file mode 100644 index 385006671181a65ce4cb573fdd3e18d8fb5abf35..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -929626ce5697f341cdf81bbbd9c7387b701a821f \ No newline at end of file diff --git a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/_remote.repositories b/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/_remote.repositories deleted file mode 100644 index b139ce56dab06efa6d822c509e2d70f497ae6e5e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -xbean-reflect-3.4.jar>repo.jenkins-ci.org= -xbean-reflect-3.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar b/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar deleted file mode 100644 index 2c274c7ff552e6ad2d0ffa4230fcd5658ec90c7c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar and /dev/null differ diff --git a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar.sha1 b/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar.sha1 deleted file mode 100644 index f6b52b086c7eb2663fc464d450340ff28ad1d2f7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -26fd55dceb037f4789b399b22874d74f4d2db66f \ No newline at end of file diff --git a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom b/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom deleted file mode 100644 index 262c8ddda2ab5cbe9349aa77cfa7bbb3979fedec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - - 4.0.0 - - - xbean - org.apache.xbean - 3.4 - - - xbean-reflect - bundle - Apache XBean :: Reflect - - - - asm - asm - 2.2.3 - true - - - asm - asm-commons - 2.2.3 - true - - - log4j - log4j - 1.2.12 - compile - - - commons-logging - commons-logging-api - 1.1 - compile - - - - - - - - DEBUG - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.2 - - pertest - - -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005 - -enableassertions - - ${basedir}/target - - - - - - - diff --git a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 b/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 deleted file mode 100644 index 1f136b6c5e5982e522883898336f6822d10bb81a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5027123eb872a166f5205a5eb00d3ed186b63277 \ No newline at end of file diff --git a/artifacts/m2/org/apache/xbean/xbean/3.4/_remote.repositories b/artifacts/m2/org/apache/xbean/xbean/3.4/_remote.repositories deleted file mode 100644 index 0d3918824aa7a2950ab829cc27b8aba07b9d5bb6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean/3.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:03 CST 2019 -xbean-3.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/apache/xbean/xbean/3.4/xbean-3.4.pom b/artifacts/m2/org/apache/xbean/xbean/3.4/xbean-3.4.pom deleted file mode 100644 index 1e6916dec6654311213e5dddf14c62fafc9c4c32..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean/3.4/xbean-3.4.pom +++ /dev/null @@ -1,483 +0,0 @@ - - - - - - - - 4.0.0 - - - org.apache - apache - 4 - - - org.apache.xbean - xbean - Apache XBean - pom - 2005 - - 3.4 - - - XBean is a plugin based server architecture. - - - http://geronimo.apache.org/xbean - - - scm:svn:http://svn.apache.org/repos/asf/geronimo/xbean/tags/xbean-3.4 - scm:svn:https://svn.apache.org/repos/asf/geronimo/xbean/tags/xbean-3.4 - http://svn.apache.org/viewvc/geronimo/xbean/tags/xbean-3.4 - - - - - * - org.apache.xbean* - - !META-INF*,${xbean.osgi.export.pkg}*;version=${xbean.osgi.export.version} - ${project.version} - !META-INF*,${xbean.osgi.import.pkg} - ${groupId}.${artifactId} - - - - - jira - http://issues.apache.org/jira/browse/XBEAN - - - - - xbean developers - mailto:xbean-dev-subscribe@geronimo.apache.org - mailto:xbean-dev-unsubscribe@xbean.org - - - xbean users - mailto:xbean-user-subscribe@geronimo.apache.org - mailto:xbean-user-unsubscribe@geronimo.apache.org - - - - - - chirino - Hiram Chirino - - Commiter - - -5 - - - dain - Dain Sundstrom - dain@iq80.com - - Commiter - - -8 - - - dblevins - David Blevins - dblevins@visi.com - - Commiter - - -8 - - - jstrachan - James Strachan - - Commiter - - -8 - - - jvanzyl - Jason van Zyl - - Commiter - - -8 - - - maguro - Alan D. Cabrera - - Commiter - - -8 - - - gnodet - Guillaume Nodet - - Commiter - - +1 - - - - - - - - ant - ant - 1.6.2 - - - - cglib - cglib-nodep - 2.1_2 - - - - commons-beanutils - commons-beanutils - 1.7.0 - - - - commons-logging - commons-logging - 1.0.3 - - - - groovy - groovy - 1.0-jsr-03 - - - - mx4j - mx4j - 3.0.1 - - - - org.springframework - spring-beans - 2.0.5 - - - - org.springframework - spring-context - 2.0.5 - - - - org.springframework - spring-web - 2.0.5 - - - - org.springframework - spring-jmx - 2.0.5 - - - - com.thoughtworks.qdox - qdox - 1.6.3 - - - - - - - - - junit - junit - 3.8.1 - test - - - - - - install - - - - - org.apache.xbean - maven-xbean-plugin - ${pom.version} - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - false - - - - - org.apache.maven.plugins - maven-idea-plugin - - 1.5 - 1.5 - true - - - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - clean,verify,install - true - - - - - - maven-remote-resources-plugin - 1.0 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - true - true - Apache XBean - - - - - - - - - org.apache.felix - maven-bundle-plugin - 1.4.0 - true - - - ${artifactId} - ${xbean.osgi.symbolic.name} - ${xbean.osgi.export} - ${xbean.osgi.import} - ${xbean.osgi.private.pkg} - Apache XBean - ${project.version} - - - - - - - - - release - - - - - true - maven-gpg-plugin - 1.0-alpha-4 - - ${gpg.passphrase} - - - - - sign - - - - - - - true - maven-deploy-plugin - 2.3 - - ${deploy.altRepository} - true - - - - - - - deploy - - deploy - - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - - jar - - - - - - - true - maven-javadoc-plugin - 2.4 - - 1.5 - - - - attach-javadocs - - jar - - - - - - - - - - - xbean-classloader - xbean-classpath - xbean-finder - xbean-naming - xbean-reflect - xbean-spring - xbean-telnet - maven-xbean-plugin - - - - - - - geronimo-website - scp://people.apache.org/www/geronimo.apache.org/maven/xbean - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.0 - - 128m - 512 - true - true - false - 1.5 - - true - - - http://java.sun.com/j2se/1.5.0/docs/api/ - http://java.sun.com/j2se/1.4.2/docs/api/ - http://java.sun.com/j2se/1.3/docs/api/ - - - http://java.sun.com/j2ee/1.4/docs/api/ - http://java.sun.com/j2ee/sdk_1.3/techdocs/api/ - - - http://jakarta.apache.org/commons/collections/apidocs - http://jakarta.apache.org/commons/logging/apidocs/ - http://logging.apache.org/log4j/docs/api/ - http://jakarta.apache.org/regexp/apidocs/ - http://jakarta.apache.org/velocity/api/ - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.1 - - 1.5 - - - - - org.codehaus.mojo - jxr-maven-plugin - - - - org.codehaus.mojo - surefire-report-maven-plugin - - - - - - diff --git a/artifacts/m2/org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 b/artifacts/m2/org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 deleted file mode 100644 index cbbece9a3dff6314e7e79d2a4d7559380b2272bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/apache/xbean/xbean/3.4/xbean-3.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b9367adef01e01b9314ed5acd6270d890ed5a007 \ No newline at end of file diff --git a/artifacts/m2/org/beanshell/bsh/2.0b4/_remote.repositories b/artifacts/m2/org/beanshell/bsh/2.0b4/_remote.repositories deleted file mode 100644 index 41e3ad30343634337f8c871b0da1d7676cfcc7c3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/beanshell/bsh/2.0b4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:41 CST 2019 -bsh-2.0b4.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar b/artifacts/m2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar deleted file mode 100644 index 36fe03d71c4fd6659777dc6627d52a1e2d5d78c7..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar and /dev/null differ diff --git a/artifacts/m2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 b/artifacts/m2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 deleted file mode 100644 index e6e951c2bcc49b07ee6abb6d0b2c0775adda312a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/beanshell/bsh/2.0b4/bsh-2.0b4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a05f0a0feefa8d8467ac80e16e7de071489f0d9c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/codehaus-parent/3/_remote.repositories b/artifacts/m2/org/codehaus/codehaus-parent/3/_remote.repositories deleted file mode 100644 index 73074d1fcfa85133799394360ee5af70bf2c8c26..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/codehaus-parent/3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:07 CST 2019 -codehaus-parent-3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom b/artifacts/m2/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom deleted file mode 100644 index 05667dd62b5917961059dd50de65528347942a44..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom +++ /dev/null @@ -1,131 +0,0 @@ - - - 4.0.0 - - org.codehaus - codehaus-parent - 3 - pom - - Codehaus Parent - http://codehaus.org/ - The Codehaus is a collaborative environment for building open source projects with a strong emphasis on modern languages, focussed on quality components that meet real world needs. - - - scm:svn:http://svn.sonatype.org/spice/tags/codehaus-parent-3 - scm:svn:https://svn.sonatype.org/spice/tags/codehaus-parent-3 - http://svn.sonatype.org/spice/tags/codehaus-parent-3 - - - - - - - - codehaus-nexus-snapshots - Codehaus Nexus Snapshots - ${codehausDistMgmtSnapshotsUrl} - - - codehaus-nexus-staging - Codehaus Release Repository - https://nexus.codehaus.org/service/local/staging/deploy/maven2/ - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - 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.0 - - forked-path - false - -Pcodehaus-release - - - - - - - - UTF-8 - https://nexus.codehaus.org/content/repositories/snapshots/ - - - - - codehaus-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/codehaus/codehaus-parent/3/codehaus-parent-3.pom.sha1 b/artifacts/m2/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom.sha1 deleted file mode 100644 index 706341c095e6b522abb9ffa10afb02efe7c69b19..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4e72a38273601eb32cd7fb5137f7ee036bf2c146 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/_remote.repositories b/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/_remote.repositories deleted file mode 100644 index be628320d4160247a22349aa7b6e0be6bd453649..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:10 CST 2019 -build-helper-maven-plugin-1.10.jar>repo.jenkins-ci.org= -build-helper-maven-plugin-1.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.jar b/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.jar deleted file mode 100644 index a90a222280d7aa52ea0cf73feb3937db5f2afc7f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.jar.sha1 b/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.jar.sha1 deleted file mode 100644 index 2324b05e49c3361fd3cf3dcc07131f75d5282301..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7c8364f48a35da821d679211443fc7a255866b95 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.pom b/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.pom deleted file mode 100644 index 00b6528cd8d1afc6210dc7f417dc75efa28cde33..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.pom +++ /dev/null @@ -1,182 +0,0 @@ - - - 4.0.0 - - - org.codehaus.mojo - mojo-parent - 38 - - - build-helper-maven-plugin - 1.10 - maven-plugin - - Build Helper Maven Plugin - This plugin contains various small independent goals to assist with Maven build lifecycle - 2005 - - - The MIT License - http://www.opensource.org/licenses/mit-license.php - repo - - - - - - Dan Tran - dantran@gmail.com - - Developer - - 5 - - - rfscholte - Robert Scholte - - Developer - - +1 - - - - - ${mavenVersion} - - - - scm:git:https://github.com/mojohaus/build-helper-maven-plugin.git - scm:git:ssh://git@github.com/mojohaus/build-helper-maven-plugin.git - https://github.com/mojohaus/build-helper-maven-plugin - build-helper-maven-plugin-1.10 - - - GitHub - https://github.com/mojohaus/build-helper-maven-plugin/issues/ - - - Travis-CI - https://travis-ci.org/mojohaus/build-helper-maven-plugin - - - - 2.2.1 - ${project.build.directory}/staging/build-helper-maven-plugin - - - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-core - ${mavenVersion} - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-artifact - ${mavenVersion} - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - org.codehaus.plexus - plexus-utils - 3.0.22 - - - org.beanshell - bsh - 2.0b4 - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - true - - - - - mojo-descriptor - - descriptor - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - config/maven_checks.xml - header.txt - - - - - - - - run-its - - - skipTests - !true - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - true - verify - ${project.build.directory}/local-repo - src/it/settings.xml - ${project.build.directory}/it - - - - integration-test - - install - run - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.pom.sha1 b/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.pom.sha1 deleted file mode 100644 index c5563bbc9e0706c4ba295b9d7faae491624c1fdc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/build-helper-maven-plugin/1.10/build-helper-maven-plugin-1.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -efeba18ca349718402b2622fb1b34399e1ff8007 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/mojo/mojo-parent/28/_remote.repositories b/artifacts/m2/org/codehaus/mojo/mojo-parent/28/_remote.repositories deleted file mode 100644 index 7362a97635925ad2cddec4bf3e36d2bc3f0bde82..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/mojo-parent/28/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:06 CST 2019 -mojo-parent-28.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom b/artifacts/m2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom deleted file mode 100644 index d206f05af6a70fd6e1807af508f331f319af64af..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom +++ /dev/null @@ -1,654 +0,0 @@ - - - 4.0.0 - - - org.codehaus - codehaus-parent - 3 - - - org.codehaus.mojo - mojo-parent - 28 - pom - - Codehaus Mojo Parent - http://mojo.codehaus.org - - Codehaus - http://codehaus.org - - - - - Development List - dev-subscribe@mojo.codehaus.org - dev-unsubscribe@mojo.codehaus.org - dev@mojo.codehaus.org - http://archive.codehaus.org/lists/org.codehaus.mojo.dev - - http://old.nabble.com/mojo---dev-f11981.html - http://markmail.org/list/org.codehaus.mojo.dev - - - - User List - user-subscribe@mojo.codehaus.org - user-unsubscribe@mojo.codehaus.org - user@mojo.codehaus.org - http://archive.codehaus.org/lists/org.codehaus.mojo.user - - http://old.nabble.com/mojo---user-f11980.html - http://markmail.org/list/org.codehaus.mojo.user - - - - Commits List - scm-subscribe@mojo.codehaus.org - scm-unsubscribe@mojo.codehaus.org - http://archive.codehaus.org/lists/org.codehaus.mojo.scm - - http://markmail.org/list/org.codehaus.mojo.scm - - - - - - scm:svn:http://svn.codehaus.org/mojo/tags/mojo-parent-28 - scm:svn:https://svn.codehaus.org/mojo/tags/mojo-parent-28 - http://fisheye.codehaus.org/browse/mojo/tags/mojo-parent-28 - - - jira - http://jira.codehaus.org/browse/MOJO - - - hudson - https://grid.sonatype.org/ci/job/mojo/ - - - - codehaus.org - Mojo Website - dav:https://dav.codehaus.org/mojo/ - - - - - UTF-8 - ${project.prerequisites.maven} - 1.4 - UTF-8 - - true - - true - - - - - - org.apache.maven - maven-plugin-api - 2.0 - - - junit - junit - 3.8.2 - test - - - - - - - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.6 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - ${project.build.sourceEncoding} - ${mojo.java.target} - ${mojo.java.target} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 1.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.7 - - - help-mojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - https://svn.codehaus.org/mojo/tags - false - -Pmojo-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-site-plugin - 2.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.7.2 - - ${surefire.redirectTestOutputToFile} - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.7.2 - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - mojo-enforcer-rules - verify - - enforce - - - - - - org.codehaus.plexus:plexus-component-api - - The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions. - - - Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories. - true - true - true - - codehaus.org - apache.snapshots - - - - Best Practice is to always define plugin versions! - true - true - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - clean - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 2.7 - - - - ${mojo.java.target} - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - - cim - index - issue-tracking - mailing-list - project-team - scm - summary - - - - - - - - - - mojo-release - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.2 - - - - org.codehaus.plexus - plexus-utils - 2.0.1 - - - - - attach-source-release-distro - package - - single - - - true - - source-release - - gnu - - - - - - 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 - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - reporting - - - skipReports - !true - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.6 - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - true - - http://download-llnw.oracle.com/javaee/1.4/api/ - http://download-llnw.oracle.com/javase/1.5.0/docs/api/ - http://commons.apache.org/collections/apidocs-COLLECTIONS_3_0/ - http://commons.apache.org/dbcp/apidocs/ - http://commons.apache.org/fileupload/apidocs/ - http://commons.apache.org/httpclient/apidocs/ - 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/${mojo.javadoc.mavenVersion}/maven-artifact/apidocs/ - http://maven.apache.org/ref/${mojo.javadoc.mavenVersion}/maven-artifact-manager/apidocs/ - http://maven.apache.org/ref/${mojo.javadoc.mavenVersion}/maven-model/apidocs/ - http://maven.apache.org/ref/${mojo.javadoc.mavenVersion}/maven-plugin-api/apidocs/ - http://maven.apache.org/ref/${mojo.javadoc.mavenVersion}/maven-project/apidocs/ - http://maven.apache.org/ref/${mojo.javadoc.mavenVersion}/maven-reporting/maven-reporting-api/apidocs/ - http://maven.apache.org/ref/${mojo.javadoc.mavenVersion}/maven-settings/apidocs/ - - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 2.7 - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.4 - - - - - - - javadoc - test-javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - ${project.build.sourceEncoding} - ${project.reporting.outputEncoding} - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - ${mojo.java.target} - - http://svn.codehaus.org/mojo/tags/mojo-parent-22/src/main/config/pmd/mojo_rules.xml - - - ${project.build.directory}/generated-sources/antlr - ${project.build.directory}/generated-sources/javacc - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - - cim - dependencies - dependency-convergence - dependency-management - index - issue-tracking - license - mailing-list - plugin-management - project-team - scm - summary - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.7.2 - - - - report - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - - **/HelpMojo.class - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - maven-3 - - - - ${basedir} - - - - 3.0-beta-3 - - - - - - org.apache.maven.plugins - maven-site-plugin - ${sitePluginVersion} - - - - - - - org.apache.maven.plugins - maven-site-plugin - ${sitePluginVersion} - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom.sha1 b/artifacts/m2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom.sha1 deleted file mode 100644 index 1b18f0d32485c8cfe5ba8f8f56a1c84dfbc60317..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/mojo-parent/28/mojo-parent-28.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1d7888f8dc77d3d79d0a7701e6a1ba7a2a8a1dfe \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/mojo/mojo-parent/38/_remote.repositories b/artifacts/m2/org/codehaus/mojo/mojo-parent/38/_remote.repositories deleted file mode 100644 index cd68163a6e978cfb33b93c9bb7d36bd8c8f0d732..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/mojo-parent/38/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:09 CST 2019 -mojo-parent-38.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom b/artifacts/m2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom deleted file mode 100644 index e05debbecc1bd877bbdd521de8035495d61fed0d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom +++ /dev/null @@ -1,849 +0,0 @@ - - - 4.0.0 - - org.codehaus.mojo - mojo-parent - 38 - pom - - MojoHaus Parent - Parent POM for all MojoHaus hosted Apache Maven plugins and components. - http://www.mojohaus.org/${project.artifactId} - - MojoHaus - http://www.mojohaus.org - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - aheritier - Arnaud Heritier - https://github.com/aheritier - MojoHaus - https://github.com/mojohaus - - - Batmat - Baptiste Mathus - https://github.com/Batmat - MojoHaus - https://github.com/mojohaus - - - davidkarlsen - David Karlsen - https://github.com/davidkarlsen - MojoHaus - https://github.com/mojohaus - - - Godin - Evgeny Mandrikov - https://github.com/Godin - MojoHaus - https://github.com/mojohaus - - - khmarbaise - Karl-Heinz Marbaise - https://github.com/khmarbaise - MojoHaus - https://github.com/mojohaus - - - lennartj - Lennart Jörelid - https://github.com/lennartj - MojoHaus - https://github.com/mojohaus - - - mfriedenhagen - Mirko Friedenhagen - https://github.com/mfriedenhagen - MojoHaus - https://github.com/mojohaus - - - - - - MojoHaus Development List - mojohaus-dev+subscribe@googlegroups.com - mojohaus-dev+unsubscribe@googlegroups.com - mojohaus-dev@googlegroups.com - https://groups.google.com/forum/#!forum/mojohaus-dev - - - Maven Users 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://maven.40175.n5.nabble.com/Maven-Users-f40176.html - - - - Former (pre-2015-06) Development List - http://markmail.org/list/org.codehaus.mojo.dev - - http://mojo.10943.n7.nabble.com/Developer-f3.html - - - - Former (pre-2015-06) User List - http://markmail.org/list/org.codehaus.mojo.user - - http://mojo.10943.n7.nabble.com/User-f34162.html - - - - Former (pre-2015-06) Commits List - http://markmail.org/list/org.codehaus.mojo.scm - - - Former (pre-2015-06) Announcements List - http://markmail.org/list/org.codehaus.mojo.announce - - http://mojo.10943.n7.nabble.com/Announce-f38303.html - - - - - - 3.0 - - - - scm:git:https://github.com/mojohaus/mojo-parent.git - scm:git:ssh://git@github.com/mojohaus/mojo-parent.git - https://github.com/mojohaus/mojo-parent - mojo-parent-38 - - - github - https://github.com/mojohaus/mojo-parent/issues - - - travis - https://travis-ci.org/mojohaus/mojo-parent - - - - ossrh-staging - http://oss.sonatype.org/service/local/staging/deploy/maven2 - - - ossrh-snapshots - http://oss.sonatype.org/content/repositories/snapshots - - - github - scm:git:ssh://git@github.com/mojohaus/mojo-parent.git - - - - - UTF-8 - ${project.prerequisites.maven} - 1.7 - UTF-8 - - true - - true - 2.10.3 - 2.11 - true - 2.16 - 2.8 - - - - - - - - org.apache.maven - maven-plugin-api - 2.2.1 - - - junit - junit - 4.12 - test - - - org.apache.maven.plugin-tools - maven-plugin-annotations - - 3.4 - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.5.5 - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - config/maven_checks.xml - config/maven-header.txt - - - - org.apache.maven.shared - maven-shared-resources - 2 - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - ${mojo.java.target} - ${mojo.java.target} - - - - org.apache.maven.plugins - maven-changes-plugin - ${maven-changes-plugin.version} - - - GitHub - - true - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.10 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4 - - - org.apache.maven.plugins - maven-help-plugin - 2.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-invoker-plugin - 2.0.0 - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - org.apache.maven.plugins - maven-war-plugin - 2.6 - - - org.apache.maven.plugins - maven-ear-plugin - 2.10.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - help-mojo - - helpmojo - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - org.apache.maven.plugins - maven-release-plugin - 2.5.2 - - - forked-path - deploy - false - -Pmojo-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 - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - ${surefire.redirectTestOutputToFile} - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.18.1 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.14 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - org.codehaus.mojo - flatten-maven-plugin - 1.0.0-beta-5 - - - org.codehaus.mojo - l10n-maven-plugin - 1.0-alpha-2 - - - org.codehaus.mojo - license-maven-plugin - 1.8 - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.codehaus.mojo - versions-maven-plugin - 2.2 - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.apache.maven.plugins - maven-enforcer-plugin - - - mojo-enforcer-rules - validate - - enforce - - - - - - org.codehaus.plexus:plexus-component-api - - The plexus-component-api conflicts with the plexus-container-default used by Maven. You probably added a dependency that is missing the exclusions. - - - Mojo is synchronized with repo1.maven.org. The rules for repo1.maven.org are that pom.xml files should not include repository definitions. If repository definitions are included, they must be limited to SNAPSHOT only repositories. - true - true - true - - ossrh-snapshots - apache.snapshots - - - - Best Practice is to always define plugin versions! - true - true - - - (,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. - - - project.scm.developerConnection - - scm:git:ssh://git@github.com/.*\.git.* - - ssh (scm:git:ssh://git@github.com/.*\.git) is the preferred protocol for project.scm.developerConnection, current value: ${project.scm.developerConnection} - - - - project.scm.connection - - scm:git:https://github.com/.*\.git.* - - https (scm:git:https://github.com/.*\.git) is the preferred protocol for project.scm.connection, current value: ${project.scm.connection} - - - - project.scm.url - - https://github.com/.* - - Use https://github.com/.* as project.scm.url, especially using the prefix scm:git here will lead to unbrowseable links during site generation, current value: ${project.scm.url} - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - - - - clean - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - - ${mojo.java.target} - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - - cim - dependency-info - index - issue-tracking - mailing-list - project-team - scm - summary - - - - - - - - - - - mojo-enable-githubreport-when-not-on-travis - - - !env.CONTINUOUS_INTEGRATION - - - - - - org.apache.maven.plugins - maven-changes-plugin - ${maven-changes-plugin.version} - - - - github-report - - - - - false - true - true - - - - - - - mojo-release - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - attach-source-release-distro - package - - single - - - true - - source-release - - gnu - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-source-plugin - - - default-jar-no-fork - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - false - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - reporting - - - skipReports - !true - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${maven-checkstyle-plugin.version} - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - true - - http://junit-team.github.io/junit/javadoc/latest/ - - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 3.3 - - - org.codehaus.plexus - plexus-component-javadoc - 1.5.5 - - - - - - - javadoc - test-javadoc - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.5 - - ${mojo.java.target} - - ${project.build.directory}/generated-sources/antlr - ${project.build.directory}/generated-sources/javacc - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - ${maven-project-info-reports-plugin.version} - - - - cim - dependencies - dependency-convergence - dependency-info - dependency-management - index - issue-tracking - license - mailing-list - plugin-management - project-team - scm - summary - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.18.1 - - - - report - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - - **/HelpMojo.class - - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - - - - maven-3 - - - - ${basedir} - - - - - - - org.apache.maven.plugins - maven-site-plugin - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1 b/artifacts/m2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1 deleted file mode 100644 index f7fbb45d62cb29020cc16c31c4d5d3ff69825587..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/mojo-parent/38/mojo-parent-38.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e5a61fc8267f3956cc0d90cf78680a51a2c1c499 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/_remote.repositories b/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/_remote.repositories deleted file mode 100644 index fd6f06be9a66660698a1c2e2b7e6b90e7396e404..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:08 CST 2019 -xml-maven-plugin-1.0.pom>repo.jenkins-ci.org= -xml-maven-plugin-1.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar b/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar deleted file mode 100644 index 53d44967709c34b5f77ff1dc5c1eea97de108ff1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar.sha1 b/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar.sha1 deleted file mode 100644 index 8c872f4fb26df1a6fe42c04ccbd1ab2c7717688d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e4ad14347b48c504ea6f097155a353f8321cb51b \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom b/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom deleted file mode 100644 index 3385545650a0e354702473214684c05b7e27abf1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom +++ /dev/null @@ -1,227 +0,0 @@ - - 4.0.0 - - org.codehaus.mojo - mojo-parent - 28 - - xml-maven-plugin - maven-plugin - Maven XML Plugin - 1.0 - - ${mavenVersion} - - A plugin for various XML related tasks like validation, transformation, and the like. - 2006 - - The Apache Software Foundation - http://www.apache.org/ - - - - jochen - Jochen Wiedmann - jochen.wiedmann@gmail.com - - - olamy - Olivier Lamy - olamy@apache.org - - - - - Luke W. Patterson - lukewpatterson@gmail.com - - - Anagnostopoulos Kostis - ankostis@gmail.com - - - Andrew Thornton - art27@cantab.net - - - Aleksei Valikov - valikov@gmx.net - - - Nick Stolwijk - nstolwijk@iprofs.nl - - - Mykola Nikishov - mn@mn.com.ua - - - Mark Hobson - markhobson@gmail.com - - - Ramón Torres Bátiz - rbatiz@gmail.com - - - Andreas Eternach - a.eternach@directbox.com - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - scm:svn:http://svn.codehaus.org/mojo/tags/xml-maven-plugin-1.0 - scm:svn:https://svn.codehaus.org/mojo/tags/xml-maven-plugin-1.0 - http://fisheye.codehaus.org/browse/mojo/tags/xml-maven-plugin-1.0 - - - - jira - http://jira.codehaus.org/browse/MOJO/component/12247 - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - - - org.apache.maven - maven-project - ${mavenVersion} - - - org.apache.maven - maven-model - ${mavenVersion} - - - org.apache.maven - maven-settings - ${mavenVersion} - - - org.codehaus.plexus - plexus-utils - 1.2 - - - org.codehaus.plexus - plexus-resources - 1.0-alpha-7 - - - xerces - xercesImpl - 2.9.1 - - - xml-apis - xml-apis - 1.3.04 - - - xml-resolver - xml-resolver - 1.2 - - - org.codehaus.plexus - plexus-io - 1.0-alpha-5 - - - org.codehaus.plexus - plexus-component-api - - - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - net.sf.saxon - saxon - 8.7 - test - - - xalan - xalan - 2.7.1 - test - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - src/it - ${project.build.directory}/it - - */pom.xml - - setup - verify - ${project.build.directory}/local-repo - src/it/settings.xml - - - - - integration-test - - install - run - - - - - - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.1 - - - - changes-report - - - - - - org.apache.rat - apache-rat-plugin - 0.7 - - - src/main/checkstyle/maven-header.txt - src/test/it*/target/**/* - - - - - - - 2.0.7 - - diff --git a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom.sha1 b/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom.sha1 deleted file mode 100644 index 87a48263d96bf821f7fee58236d9b02ee4c63f05..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/mojo/xml-maven-plugin/1.0/xml-maven-plugin-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -952c924289765cfe9c3cfeb2e29f7fc257d8335f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/_remote.repositories deleted file mode 100644 index 68a2f575ed5b8ccaabe336fc152bb970939081e6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:26 CST 2019 -plexus-archiver-2.8.1.jar>repo.jenkins-ci.org= -plexus-archiver-2.8.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar deleted file mode 100644 index 64f3565fa90c941009da8f0c40bbc1bee5b365a1..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar.sha1 deleted file mode 100644 index 3a956e4e976ce444da1495b6327716aea09293cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -303776b3f932488380e34fe43b51ab1bbd717b8a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom deleted file mode 100644 index 7ec24ef9415883c978f708925518fea5b4c516a1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom +++ /dev/null @@ -1,137 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.3 - - - plexus-archiver - 2.8.1 - - Plexus Archiver Component - - - scm:git:git@github.com:sonatype/plexus-archiver.git - scm:git:git@github.com:sonatype/plexus-archiver.git - http://github.com/sonatype/plexus-archiver - plexus-archiver-2.8.1 - - - jira - http://jira.codehaus.org/browse/PLXCOMP/component/12540 - - - - true - - - - - Dan Tran - - - Richard van der Hoff - - - Tomasz 'Trog' Welman - trog@swmud.pl - - - - - - org.codehaus.plexus - plexus-container-default - provided - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.codehaus.plexus - plexus-io - 2.3.2 - - - org.apache.commons - commons-compress - 1.9 - - - junit - junit - 4.11 - test - - - com.google.code.findbugs - jsr305 - 3.0.0 - provided - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${useJvmChmod} - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - **/src/test/resources/utf8/** - - - - - org.codehaus.plexus - plexus-component-metadata - 1.6 - - - - generate-metadata - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-java - - enforce - - - - - 1.7.0 - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom.sha1 deleted file mode 100644 index f529acbb93339c978b78ab1ea129012427df28ff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fabb4c6b362103ff4bcd7f2b9ece4baec9cfd60a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/_remote.repositories deleted file mode 100644 index 88ccef80e1d7883061da48a978a30b07e0234306..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-archiver-2.9.jar>repo.jenkins-ci.org= -plexus-archiver-2.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar deleted file mode 100644 index a1017308bb01ece12c996bddddc4ecfd29f77308..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar.sha1 deleted file mode 100644 index edd90397aeeabb6a95d9a0fbd9ec5c3df23bfa3d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e719f63ea4746273e21c27945b4b3a06620078e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom deleted file mode 100644 index 578edbe159708d8a83c625b98f08a427ae8ad6fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.3 - - - plexus-archiver - 2.9 - - Plexus Archiver Component - - - scm:git:git@github.com:sonatype/plexus-archiver.git - scm:git:git@github.com:sonatype/plexus-archiver.git - http://github.com/sonatype/plexus-archiver - plexus-archiver-2.9 - - - jira - http://jira.codehaus.org/browse/PLXCOMP/component/12540 - - - - true - - - - - Dan Tran - - - Richard van der Hoff - - - Tomasz 'Trog' Welman - trog@swmud.pl - - - - - - org.codehaus.plexus - plexus-container-default - provided - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.codehaus.plexus - plexus-io - 2.4 - - - org.apache.commons - commons-compress - 1.9 - - - junit - junit - 4.11 - test - - - com.google.code.findbugs - jsr305 - 3.0.0 - provided - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${useJvmChmod} - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - **/src/test/resources/utf8/** - - - - - org.codehaus.plexus - plexus-component-metadata - 1.6 - - - - generate-metadata - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.3.1 - - - enforce-java - - enforce - - - - - 1.7.0 - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom.sha1 deleted file mode 100644 index 92f423f35df8ae684aa18633213fb32f5ade5b93..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f77190df7ddad882179b2eb1933352de862fa8eb \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/_remote.repositories deleted file mode 100644 index 263457eb106e9c60f8cd0b774a8d4107f75905aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:50 CST 2019 -plexus-classworlds-1.2-alpha-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom deleted file mode 100644 index 6e29cd26cd5c4a8a4c2472d7e3b762dc3e4ab4fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom +++ /dev/null @@ -1,78 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.9 - - 4.0.0 - org.codehaus.plexus - plexus-classworlds - Plexus Classworlds - 1.2-alpha-7 - - 2002 - - scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-7 - scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-7 - http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-7 - - - - - maven-surefire-plugin - - once - - - - maven-compiler-plugin - - - org/codehaus/plexus/classworlds/event/* - - - - - - - - debug - - - - org.codehaus.mojo - aspectj-maven-plugin - - - - compile - - - - - 1.4 - - - - - - - aspectj - aspectjrt - 1.5.0 - - - - - - - junit - junit - 3.8.1 - compile - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 deleted file mode 100644 index 4b9e8a40b640ea8f05f7b421e359880535aadbeb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6944ec0d0cab19adf167332f7197e045d64a577c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories deleted file mode 100644 index c631c5eb280f2b56d4f344a0d6bd7cf7b98b19f6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:13 CST 2019 -plexus-classworlds-1.2-alpha-9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom deleted file mode 100644 index 7c8273bced845ba533b8136cf1a48bc323a7cc63..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - plexus - org.codehaus.plexus - 1.0.10 - - 4.0.0 - org.codehaus.plexus - plexus-classworlds - jar - Plexus Classworlds - 1.2-alpha-9 - - 2002 - - - junit - junit - 3.8.1 - jar - compile - - - - - - maven-surefire-plugin - - once - - - - maven-compiler-plugin - - - org/codehaus/plexus/classworlds/event/* - - - - - - - - debug - - - aspectj - aspectjrt - 1.5.0 - - - - - - org.codehaus.mojo - aspectj-maven-plugin - - - - compile - - - - - 1.4 - - - - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-9 - scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-9 - http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-1.2-alpha-9 - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 deleted file mode 100644 index 80290e889bbab49ea83fdf4cfcc0adac33e50743..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -32be3692644bf86d1226e13e2a60b49a9fa49571 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/_remote.repositories deleted file mode 100644 index c36f7997b8f82e8a68613c5cd4eb7f34b544c065..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -plexus-classworlds-2.2.2.jar>repo.jenkins-ci.org= -plexus-classworlds-2.2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar deleted file mode 100644 index e9d8f88dafb7583bb105bb8b473d68191bbb1d5f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar.sha1 deleted file mode 100644 index 670c2e004371d8cfb0883b59e6a5229f3fe3095b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a2bad2b58c1ca765d3f471cea8c1655d70fdfd9 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom deleted file mode 100644 index f37518f7e4a4c2d3a75529359d083cc9ed899cda..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - - 4.0.0 - - - plexus - org.codehaus.plexus - 2.0.3 - - - org.codehaus.plexus - plexus-classworlds - 2.2.2 - - Plexus Classworlds - A class loader framework - 2002 - - - scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.2 - scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.2 - http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.2 - - - - - junit - junit - 3.8.2 - test - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - true - -ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds - once - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org/codehaus/plexus/classworlds/event/* - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.0 - - - generate-test-resources - - copy - - - - - ant - ant - 1.6.5 - - - commons-logging - commons-logging - 1.0.3 - - - xml-apis - xml-apis - 1.3.02 - - - ${project.build.directory}/test-lib - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 deleted file mode 100644 index 5280fd77196b9e04698d3e529c3771700c41f011..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -df1dfb0099c8759b378fe0af3b4a564d2c16aa18 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories deleted file mode 100644 index 7a424975c7f4649a4bc4bcb10aa6d907b4505245..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:29 CST 2019 -plexus-classworlds-2.2.3.jar>repo.jenkins-ci.org= -plexus-classworlds-2.2.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar deleted file mode 100644 index 182399ccb4d7ea82636d2a5306b61a48a0735f2e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar.sha1 deleted file mode 100644 index daa5bab8cacb592bf74df101db9c17c56ef685cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -93b34d7a40ed56fe33274480c5792b656d3697a9 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom deleted file mode 100644 index 2696216fa1aa8c64149b80740c94bdc2a2b869ee..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - - 4.0.0 - - - plexus - org.codehaus.plexus - 2.0.6 - - - org.codehaus.plexus - plexus-classworlds - 2.2.3 - - Plexus Classworlds - A class loader framework - 2002 - - - scm:svn:http://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.3 - scm:svn:https://svn.codehaus.org/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.3 - http://fisheye.codehaus.org/browse/plexus/plexus-classworlds/tags/plexus-classworlds-2.2.3 - - - - - junit - junit - 3.8.2 - test - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - true - -ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds - once - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org/codehaus/plexus/classworlds/event/* - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.0 - - - generate-test-resources - - copy - - - - - ant - ant - 1.6.5 - - - commons-logging - commons-logging - 1.0.3 - - - xml-apis - xml-apis - 1.3.02 - - - ${project.build.directory}/test-lib - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 deleted file mode 100644 index 31aac2a3a06de63b5a22aa26fdc1ca9d31c3a9ba..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -068f7ac6a425f5e82bbbb5faef91e4b5d3d84f76 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/_remote.repositories deleted file mode 100644 index 428f0af096da27bdc6b4cc35bbe86a5bab28cf4a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:58 CST 2019 -plexus-classworlds-2.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom deleted file mode 100644 index b06f641eb58ad9fb36656271123d5f46c12a5db2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom +++ /dev/null @@ -1,106 +0,0 @@ - - - - 4.0.0 - - - plexus - org.codehaus.plexus - 2.0.7 - - - org.codehaus.plexus - plexus-classworlds - 2.4 - - 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 - - - - - junit - junit - 3.8.2 - test - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.2 - - true - -ea:org.codehaus.classworlds:org.codehaus.plexus.classworlds - once - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org/codehaus/plexus/classworlds/event/* - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.0 - - - generate-test-resources - - copy - - - - - ant - ant - 1.6.5 - - - commons-logging - commons-logging - 1.0.3 - - - xml-apis - xml-apis - 1.3.02 - - - ${project.build.directory}/test-lib - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom.sha1 deleted file mode 100644 index b8c4f0276e9a4731a9c9a79d214b0ff2cd8c5e91..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e93052514961d9aebb23ef1090b85292a19af650 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/_remote.repositories deleted file mode 100644 index 9d0623f8a40d5d217a167be8a78f25f61fe36e6d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -plexus-classworlds-2.5.1.jar>repo.jenkins-ci.org= -plexus-classworlds-2.5.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar deleted file mode 100644 index 389db627675b458e472246aa6b348d66727586ca..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar.sha1 deleted file mode 100644 index a3c4b035904e5a4fb625fd4c0b404e8482c8f255..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -98fea8e8c3fb0e8670a69ad6ea445872c9972910 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom deleted file mode 100644 index 45280907c194e2e5096852a017aa188ffd9f237b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.3.1 - - - plexus-classworlds - 2.5.1 - 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.1 - - - - - - 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.5 - 1.5 - - 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 - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom.sha1 deleted file mode 100644 index cf604581bf7801f11ddda5320d15457b5c2d7b9c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -63692250d77f087aa9818ada1c93ec5c69c73794 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/_remote.repositories deleted file mode 100644 index b6dbce92dc3e18a6927914de0685362ff86b2b9c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:56 CST 2019 -plexus-compiler-api-2.2.jar>repo.jenkins-ci.org= -plexus-compiler-api-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar deleted file mode 100644 index 5f009ed08b7b92c2e0a79e467161d4746b90a22b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar.sha1 deleted file mode 100644 index d632d8842e17fce94f2d25bea2d3c89ae3fdbd47..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e9fe39d3b428df50637cccd434b414192e833754 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom deleted file mode 100644 index ed55df80c8cb486bff071e7a8c30e05773012a47..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom +++ /dev/null @@ -1,26 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compiler - 2.2 - - - 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.2/plexus-compiler-api-2.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom.sha1 deleted file mode 100644 index c4ad21d583e2c51f42a178aba2af4931b8499598..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e52bed1d095d713ed5e6cd1e732d084263802807 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/_remote.repositories deleted file mode 100644 index b8640f8cb161c8a94043a1b6e0f5396ab74770cb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:59 CST 2019 -plexus-compiler-javac-2.2.pom>repo.jenkins-ci.org= -plexus-compiler-javac-2.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar deleted file mode 100644 index cd40feefcbbdd9af3b67eeb74765381abfdba3eb..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar.sha1 deleted file mode 100644 index 82ba327960c6e62392254f47e7dc5f2c027376ef..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f3de65bca1d5e6198d3839510a876b29af7b6fd \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom deleted file mode 100644 index f73113e4605462bad0c0f736012d9044657d8132..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom +++ /dev/null @@ -1,23 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compilers - 2.2 - - - 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.2/plexus-compiler-javac-2.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom.sha1 deleted file mode 100644 index ab38a645569221fb4745958ed513d0a177929e86..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-javac/2.2/plexus-compiler-javac-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8d65287b1679ec005284b62b92753eb29ba303c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/_remote.repositories deleted file mode 100644 index ebd2d45f4782954ea1afb607c80e8c565373e0a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:59 CST 2019 -plexus-compiler-manager-2.2.jar>repo.jenkins-ci.org= -plexus-compiler-manager-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar deleted file mode 100644 index f53f8185b9d61638265e16b6f66e856a6e13f30b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar.sha1 deleted file mode 100644 index 1a8d2af590a47fa0aa2255d01260e904fadec06a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e65c11400242a7a082f9f0d12ffec13dc26ab4c0 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom deleted file mode 100644 index 71bb3f16ec646dee7cbe3150cbc4560bc6e00f1d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom +++ /dev/null @@ -1,21 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compiler - 2.2 - - - plexus-compiler-manager - - Plexus Compiler Manager - - - - org.codehaus.plexus - plexus-compiler-api - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom.sha1 deleted file mode 100644 index 052912fd4f5efc0f8b2fafddc4afe605d12e0e05..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler-manager/2.2/plexus-compiler-manager-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -35b498aea8b90b9f8c9cd0af3bbb1b02412a5fd5 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/_remote.repositories deleted file mode 100644 index d87bbc066d384032a2fe4d1713aedfafa4b41743..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:57 CST 2019 -plexus-compiler-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom deleted file mode 100644 index da80bce99425445f0eeac494e4083b321c3bf080..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom +++ /dev/null @@ -1,117 +0,0 @@ - - - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.3.1 - - - plexus-compiler - 2.2 - 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:git:git@github.com:sonatype/plexus-compiler.git - scm:git:git@github.com:sonatype/plexus-compiler.git - http://github.com/sonatype/plexus-compiler - plexus-compiler-2.2 - - - jira - http://jira.codehaus.org/browse/PLXCOMP/component/12541 - - - - - - org.codehaus.plexus - plexus-compiler-api - ${project.version} - - - org.codehaus.plexus - plexus-compiler-test - ${project.version} - - - - - - org.codehaus.plexus - plexus-container-default - provided - - - junit - junit - test - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - merge-metadata - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - - - - - - 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.2/plexus-compiler-2.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom.sha1 deleted file mode 100644 index 4710cfe2159bd356cfff0e0a7ccb2542a5316766..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -729ced1bbd17bbef54b720e6c4ef087d8adc4f6d \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/_remote.repositories deleted file mode 100644 index 8b419f758bd7949910734c08048bb1bdbd5a8ba8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:01 CST 2019 -plexus-compilers-2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom deleted file mode 100644 index 131045026a356020565daae8d4b449ed8a6ba177..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus-compiler - 2.2 - - - plexus-compilers - pom - - Plexus Compilers - - - plexus-compiler-aspectj - plexus-compiler-csharp - plexus-compiler-eclipse - plexus-compiler-jikes - plexus-compiler-javac - - - - - 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.2/plexus-compilers-2.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom.sha1 deleted file mode 100644 index 70bf79a2da523f627a5a1ffa9eda784e52a5d857..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-compilers/2.2/plexus-compilers-2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ed2d72ba275a51ad8867ec230d2badcf45d0b3af \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/_remote.repositories deleted file mode 100644 index 21836dd300cf5acf7ef2edcdfc1562ead870a81a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:25 CST 2019 -plexus-component-annotations-1.5.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom deleted file mode 100644 index 3eca1cfb752a7dc94dd5931f91f6f522f030a1b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom +++ /dev/null @@ -1,20 +0,0 @@ - - - - - 4.0.0 - - - org.codehaus.plexus - plexus-containers - 1.5.4 - - - 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.5.4/plexus-component-annotations-1.5.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 deleted file mode 100644 index 355396590c949381840466bfd0b3588ca25c3306..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -52093f92fd7f82edf464f86c4f7220f9effc4bf2 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/_remote.repositories deleted file mode 100644 index edb5448900c1971e86e855a5a480a8ad9c5a9ae8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-component-annotations-1.5.5.jar>repo.jenkins-ci.org= -plexus-component-annotations-1.5.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar deleted file mode 100644 index e4de16fef89ceb0a6a654e82a270687121c9c5f0..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 deleted file mode 100644 index 59f9c789986931d0df79fc6cfb0d0ea2601cb535..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c72f2660d0cbed24246ddb55d7fdc4f7374d2078 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom deleted file mode 100644 index 01868b1245d495ac6e54077729a42f4f64a281cd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +++ /dev/null @@ -1,20 +0,0 @@ - - - - - 4.0.0 - - - org.codehaus.plexus - plexus-containers - 1.5.5 - - - 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.5.5/plexus-component-annotations-1.5.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 deleted file mode 100644 index e22d9d0aeb29bd45e080e5f79d66eb3b5a4e5d28..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fd506865d5d083d8cef9fdbf525ad99fcc3416c1 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/_remote.repositories deleted file mode 100644 index 25dffaa3e252cafb176d0fa2bf113e839595d0e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:46 CST 2019 -plexus-components-1.1.12.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom deleted file mode 100644 index 87df0c9f4fd8fa267a030e0fec12c93af93967b9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +++ /dev/null @@ -1,88 +0,0 @@ - - 4.0.0 - - plexus - org.codehaus.plexus - 1.0.10 - ../pom/pom.xml - - org.codehaus.plexus - plexus-components - pom - 1.1.12 - Plexus Components Parent Project - http://plexus.codehaus.org/plexus-components - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-20 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-20 - test - - - - plexus-action - plexus-archiver - plexus-bayesian - plexus-command - plexus-compiler - plexus-drools - plexus-formica - plexus-formica-web - plexus-hibernate - plexus-i18n - plexus-interactivity - plexus-ircbot - plexus-jdo - plexus-jetty-httpd - plexus-jetty - plexus-mimetyper - plexus-mail-sender - plexus-notification - plexus-resources - plexus-taskqueue - plexus-velocity - plexus-xmlrpc - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/trunk/ - scm:svn:https://svn.codehaus.org/plexus/plexus-components/trunk - http://fisheye.codehaus.org/browse/plexus/plexus-components/trunk/ - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.4 - - - - descriptor - - - - - - - - - - maven-javadoc-plugin - - - maven-jxr-plugin - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.4 - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 deleted file mode 100644 index 6dd9c65c6d515b814ad35ee2067f895f39bce376..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e7332a35914684bab5dd1718aea0202fa5a2bb0d \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories deleted file mode 100644 index 69091d6eafe888335ddb668ea28855a272c50ef8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:56 CST 2019 -plexus-components-1.1.14.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom deleted file mode 100644 index 79b212d1219133a60d02edcefe97280526a8e4c3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +++ /dev/null @@ -1,164 +0,0 @@ - - - - 4.0.0 - - - plexus - org.codehaus.plexus - 2.0.2 - ../pom/pom.xml - - - org.codehaus.plexus - plexus-components - 1.1.14 - pom - - Plexus Components Parent Project - http://plexus.codehaus.org/plexus-components - - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.14 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.14 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.14 - - - JIRA - http://jira.codehaus.org/browse/PLXCOMP - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.5 - - - junit - junit - 3.8.2 - test - - - - - - - - maven-compiler-plugin - - 1.4 - 1.4 - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.4 - - - - descriptor - - - - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2ee/1.4/docs/api - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 deleted file mode 100644 index 78108a4d2fad20a065acc3467f672c2636fe89e3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aed78d67ee20a5038741c7cc2a8124ae20c960ad \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories deleted file mode 100644 index 365b19504d172d6f55ac678316d67e7359fc3ec6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:33 CST 2019 -plexus-components-1.1.15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom deleted file mode 100644 index 3432953755e708b60f229b701736a98be116d9e2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom +++ /dev/null @@ -1,92 +0,0 @@ - - - - 4.0.0 - - - plexus - org.codehaus.plexus - 2.0.3 - ../pom/pom.xml - - - org.codehaus.plexus - plexus-components - 1.1.15 - pom - - Plexus Components - http://plexus.codehaus.org/plexus-components - - - - plexus-archiver - plexus-cli - plexus-compiler - plexus-digest - plexus-i18n - plexus-interactivity - plexus-interpolation - plexus-io - plexus-resources - - plexus-velocity - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.15 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.15 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.15 - - - JIRA - http://jira.codehaus.org/browse/PLXCOMP - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.5 - - - junit - junit - 3.8.2 - test - - - - - - - - maven-compiler-plugin - - 1.4 - 1.4 - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.4 - - - - descriptor - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 deleted file mode 100644 index 64c7c67d414d596158c3b5cd82d72502dd3795d7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.15/plexus-components-1.1.15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -44366f11d5b9571c16829ae7f0a7f20e116f6260 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories deleted file mode 100644 index 0d25beb52b79166358a2c05e3d9a4f99de593fdd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:19 CST 2019 -plexus-components-1.1.18.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom deleted file mode 100644 index 67d3f467a2bff600087f0a83836b7609634cb626..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +++ /dev/null @@ -1,168 +0,0 @@ - - - - 4.0.0 - - - plexus - org.codehaus.plexus - 2.0.7 - ../pom/pom.xml - - - org.codehaus.plexus - plexus-components - 1.1.18 - pom - - Plexus Components - http://plexus.codehaus.org/plexus-components - - - - plexus-archiver - plexus-cli - plexus-compiler - plexus-digest - plexus-i18n - plexus-interactivity - plexus-interpolation - plexus-io - plexus-resources - - plexus-velocity - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.18 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-components-1.1.18 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-components-1.1.18 - - - JIRA - http://jira.codehaus.org/browse/PLXCOMP - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 1.5.5 - - - junit - junit - 3.8.2 - test - - - - - - - - maven-compiler-plugin - - 1.4 - 1.4 - - - - org.codehaus.plexus - plexus-component-metadata - 1.5.4 - - - - generate-metadata - - - - - - - - - - parent-release - - - - maven-release-plugin - - -N -Pplexus-release - - - - - - - maven-3 - - - - ${basedir} - - - - - - org.apache.maven.plugins - maven-site-plugin - 2.1 - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - m2e - - - m2e.version - - - - target - - - ${m2BuildDirectory} - - - org.maven.ide.eclipse - lifecycle-mapping - 0.10.0 - - customizable - - - - - - - org.apache.maven.plugins:maven-resources-plugin:: - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 deleted file mode 100644 index 3d24bd263dd412bf59421f01ae8932f4e7b2f0b0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -41abf89f075e6b912a2ff728aa002e98591de425 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/_remote.repositories deleted file mode 100644 index 267af62b70e06c183bb450a21c51e1857f114921..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:27 CST 2019 -plexus-components-1.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom deleted file mode 100644 index bc890384a556af918480d25f6b23bc37bfbf9cc7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.2 - ../pom/pom.xml - - - plexus-components - 1.2 - pom - - Plexus Components - http://plexus.codehaus.org/plexus-components - - - - - - - scm:git:git@github.com:sonatype/plexus-components.git - scm:git:git@github.com:sonatype/plexus-components.git - http://github.com/sonatype/plexus-components - plexus-components-1.2 - - - JIRA - http://jira.codehaus.org/browse/PLXCOMP - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 3.0.7 - - - junit - junit - 3.8.2 - test - - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - - - - - parent-release - - - - maven-release-plugin - - -N -Pplexus-release - - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 deleted file mode 100644 index 8b288bc453eda523f55d57138506e933dfc791fd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -20c18e0a90492b8d8d810d880582b13390b1536c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/_remote.repositories deleted file mode 100644 index 885ec4063e93dc6b85972104fd9607bb92e1a41d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:58 CST 2019 -plexus-components-1.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom deleted file mode 100644 index a2d11c5f59195ab987aee520ca991fcf0de3481d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.3.1 - ../pom/pom.xml - - - plexus-components - 1.3.1 - pom - - Plexus Components - http://plexus.codehaus.org/plexus-components - - - - - - - scm:git:git@github.com:sonatype/plexus-components.git - scm:git:git@github.com:sonatype/plexus-components.git - http://github.com/sonatype/plexus-components - plexus-components-1.3.1 - - - JIRA - http://jira.codehaus.org/browse/PLXCOMP - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 3.0.8 - - - junit - junit - 3.8.2 - test - - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - - - - - parent-release - - - - maven-release-plugin - - -N -Pplexus-release - - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom.sha1 deleted file mode 100644 index 2b91b6d53568da2166fabb7bb4971d1fe6888c4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1c48f178dd1dcf905916db22518315e52be808e5 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/_remote.repositories deleted file mode 100644 index 9c08dc603c74819ec5ecc20d6d652417657e3ac6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:24 CST 2019 -plexus-components-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom b/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom deleted file mode 100644 index ab357795adfb049695daa8a4db6545bf1ccee733..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom +++ /dev/null @@ -1,99 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.3 - ../pom/pom.xml - - - plexus-components - 1.3 - pom - - Plexus Components - http://plexus.codehaus.org/plexus-components - - - - - - - scm:git:git@github.com:sonatype/plexus-components.git - scm:git:git@github.com:sonatype/plexus-components.git - http://github.com/sonatype/plexus-components - plexus-components-1.3 - - - JIRA - http://jira.codehaus.org/browse/PLXCOMP - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - - - org.codehaus.plexus - plexus-utils - 3.0.8 - - - junit - junit - 3.8.2 - test - - - - - - - - org.codehaus.plexus - plexus-component-metadata - - - - generate-metadata - - - - - - - - - - parent-release - - - - maven-release-plugin - - -N -Pplexus-release - - - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 deleted file mode 100644 index 7e9c3304a4b1fba3250412b2af1e50b797c4596d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ee6282236b36866907f7f8a44c1f263171659604 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/_remote.repositories deleted file mode 100644 index 1eef19302fbee582c96255a54c0090778a2c2fe8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:48 CST 2019 -plexus-container-default-1.0-alpha-20.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom deleted file mode 100644 index 426a472777c0227e34120a1c45d402885f26dd57..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom +++ /dev/null @@ -1,82 +0,0 @@ - - 4.0.0 - - org.codehaus.plexus - plexus-containers - 1.0-alpha-20 - - plexus-container-default - Default Plexus Container - 1.0-alpha-20 - - - - maven-surefire-plugin - - once - - **/Test*.java - **/Abstract*.java - - - - - maven-assembly-plugin - - - jar-with-dependencies - - - - - - - - org.codehaus.plexus - plexus-component-api - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-classworlds - - - jmock - jmock - 1.0.1 - test - - - - - - - maven-pmd-plugin - - - maven-javadoc-plugin - - - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/ - http://jakarta.apache.org/commons/dbcp/apidocs/ - http://jakarta.apache.org/commons/fileupload/apidocs/ - http://jakarta.apache.org/commons/httpclient/apidocs/ - http://jakarta.apache.org/commons/logging/apidocs/ - http://jakarta.apache.org/commons/pool/apidocs/ - http://www.junit.org/junit/javadoc/ - http://logging.apache.org/log4j/docs/api/ - http://jakarta.apache.org/regexp/apidocs/ - http://jakarta.apache.org/velocity/api/ - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 deleted file mode 100644 index 528ee3aa981c4b92a865ca05f802a55e56a52b85..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -911e3b5962b6485fd2fac68fa1af066f36388320 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/_remote.repositories deleted file mode 100644 index d74c73a51aa5cb34e352f2532670f3f79af8c542..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:10 CST 2019 -plexus-container-default-1.0-alpha-30.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom deleted file mode 100644 index 8ce9a1dac5eff0bbf9b3f17649b99170c764c22d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +++ /dev/null @@ -1,93 +0,0 @@ - - - - plexus-containers - org.codehaus.plexus - 1.0-alpha-30 - - 4.0.0 - plexus-container-default - Default Plexus Container - 1.0-alpha-30 - - - - maven-surefire-plugin - - once - - **/Test*.java - **/Abstract*.java - - - - - org.codehaus.mojo - shade-maven-plugin - 1.0-alpha-9 - - - package - - shade - - - - - classworlds:classworlds - junit:junit - jmock:jmock - org.codehaus.plexus:plexus-classworlds - org.codehaus.plexus:plexus-utils - - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-classworlds - - - jmock - jmock - 1.0.1 - test - - - - - - maven-javadoc-plugin - - - http://java.sun.com/j2ee/1.4/docs/api - http://java.sun.com/j2se/1.5.0/docs/api - http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/ - http://jakarta.apache.org/commons/dbcp/apidocs/ - http://jakarta.apache.org/commons/fileupload/apidocs/ - http://jakarta.apache.org/commons/httpclient/apidocs/ - http://jakarta.apache.org/commons/logging/apidocs/ - http://jakarta.apache.org/commons/pool/apidocs/ - http://www.junit.org/junit/javadoc/ - http://logging.apache.org/log4j/docs/api/ - http://jakarta.apache.org/regexp/apidocs/ - http://jakarta.apache.org/velocity/api/ - - - - - maven-pmd-plugin - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 deleted file mode 100644 index f637357b27370197da70064f8f8512aa3a38a48e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aa1efeb7ed05a3c5037cc194b9e8fbf97e52268a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/_remote.repositories deleted file mode 100644 index 2396f296abeaeaf58fbccad2950b6e0fe9635c8d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-container-default-1.0-alpha-9-stable-1.jar>repo.jenkins-ci.org= -plexus-container-default-1.0-alpha-9-stable-1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar deleted file mode 100644 index d205236ae6214ac48c24f9c4e3e32949f7da9d52..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar.sha1 deleted file mode 100644 index 7121d89a0d9d5c8ae3ca35242a607768eb5c2b3f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -94aea3010e250a334d9dab7f591114cd6c767458 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom deleted file mode 100644 index 5e52b57d6d0e5e28a380e0052a6d7c3c9aa40166..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +++ /dev/null @@ -1,65 +0,0 @@ - - - plexus-containers - org.codehaus.plexus - 1.0.3 - - 4.0.0 - plexus-container-default - Default Plexus Container - 1.0-alpha-9-stable-1 - - - - maven-surefire-plugin - - - **/Test*.java - **/Abstract*.java - - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - - - - junit - junit - 3.8.1 - compile - - - org.codehaus.plexus - plexus-utils - 1.0.4 - - - classworlds - classworlds - 1.1-alpha-2 - - - - - codehaus.org - Plexus Central Repository - dav:https://dav.codehaus.org/repository/plexus - - - codehaus.org - Plexus Central Development Repository - dav:https://dav.codehaus.org/snapshots.repository/plexus - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 deleted file mode 100644 index fbad1e3417db5a891110cf40d212f63c300d7b61..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f557cb47f4594ac941d0edf08093a03ce15b51ba \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/_remote.repositories deleted file mode 100644 index b8f2eecad493849123e7596d9937ee2c48b07a67..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:30 CST 2019 -plexus-container-default-1.0-alpha-9.jar>repo.jenkins-ci.org= -plexus-container-default-1.0-alpha-9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar deleted file mode 100644 index a065022af7c686c6ee4666d9852c52f34542ac71..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar.sha1 deleted file mode 100644 index 1d8bb17c5fa693dfe55056d6c5f24b34e94e7fe9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -50596183cd7b688d9d7b6d868a0193ca1a8a7b3d \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom deleted file mode 100644 index eec9fd9d01f926d09518c41c0aa1b15d2c47e3f5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +++ /dev/null @@ -1,45 +0,0 @@ - - - plexus-containers - org.codehaus.plexus - 1.0.3 - - 4.0.0 - plexus-container-default - Default Plexus Container - 1.0-alpha-9 - - - - maven-surefire-plugin - - - **/Test*.java - **/Abstract*.java - - - - - - - - junit - junit - 3.8.1 - compile - - - org.codehaus.plexus - plexus-utils - 1.0.4 - - - classworlds - classworlds - 1.1-alpha-2 - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 deleted file mode 100644 index 4b57f3b5ad4047da3d08acef890eb3507f54d222..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d00c65ec36fb3cc8c755182a7ee52d3d80340179 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/_remote.repositories deleted file mode 100644 index 889bfce2247335e245c31d303cdbf4a1ddc157a2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:39 CST 2019 -plexus-container-default-1.5.5.pom>repo.jenkins-ci.org= -plexus-container-default-1.5.5.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar deleted file mode 100644 index 026782022a0ab33c85a573a74ae9c77dbc78940a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar.sha1 deleted file mode 100644 index 466e2711a0d49db129c828ee91ad96539b411f4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0265fa2851d31c2e2177859a518987595efe146b \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom deleted file mode 100644 index 074605d2789637b3d296ba89072396f9fef6c86c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom +++ /dev/null @@ -1,88 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-containers - 1.5.5 - - - plexus-container-default - - Plexus :: Default Container - - The Plexus IoC container API and its default implementation. - - - - - org.codehaus.plexus - plexus-utils - - - org.codehaus.plexus - plexus-classworlds - - - org.apache.xbean - xbean-reflect - - - com.google.collections - google-collections - - - junit - junit - - - - - - - maven-surefire-plugin - - once - - **/Test*.java - **/Abstract*.java - - - - - org.codehaus.modello - modello-maven-plugin - 1.1 - - - src/main/mdo/components.mdo - src/main/mdo/plexus.mdo - - 1.3.0 - - - - xsd-site - pre-site - - xsd - - - ${basedir}/target/generated-site/resources/xsd - - - - descriptor-site - pre-site - - xdoc - - - 1.0.0 - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 deleted file mode 100644 index 0eb1eaabfc2c7618ef76cefbeffc9bb8c18991a9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f68a6d3761cfdfdf1e13ce2c18327c514acad611 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/_remote.repositories deleted file mode 100644 index d00117786e14a1166834f59dc5ca2b00eac79970..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:48 CST 2019 -plexus-containers-1.0-alpha-20.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom deleted file mode 100644 index d1d0f92b9201d5dd2bfe866284bb173a1b6f9711..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom +++ /dev/null @@ -1,49 +0,0 @@ - - 4.0.0 - - org.codehaus.plexus - plexus - 1.0.10 - - org.codehaus.plexus - plexus-containers - pom - Parent Plexus Container POM - 1.0-alpha-20 - - plexus-component-api - plexus-container-default - - - scm:svn:http://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-20 - scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-20 - http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-20 - - - - junit - junit - 3.8.1 - compile - - - - - - org.codehaus.plexus - plexus-classworlds - 1.2-alpha-7 - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-19 - - - org.codehaus.plexus - plexus-utils - 1.3 - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 deleted file mode 100644 index c10fe74ae8dd00290f1e4859e57cb3c22368b402..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e436ba5a20b19e6b840f087e12e1c993b427de0 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories deleted file mode 100644 index cce337f5dad8d050e73b74ea5af5c716a98ae498..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:11 CST 2019 -plexus-containers-1.0-alpha-30.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom deleted file mode 100644 index cb954b679d17fb4ce94b1949faa15dd8a959187e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +++ /dev/null @@ -1,49 +0,0 @@ - - 4.0.0 - - org.codehaus.plexus - plexus - 1.0.11 - - org.codehaus.plexus - plexus-containers - pom - Parent Plexus Container POM - 1.0-alpha-30 - - plexus-component-api - plexus-container-default - - - scm:svn:http://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-30 - scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-30 - http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-30 - - - - junit - junit - 3.8.1 - compile - - - - - - org.codehaus.plexus - plexus-classworlds - 1.2-alpha-9 - - - org.codehaus.plexus - plexus-utils - 1.4.5 - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-30 - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 deleted file mode 100644 index 4b46a6023b6a044257098f44704d9f30d65c6242..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b6330c46076c52825feb050aa27c550b24b4a17 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories deleted file mode 100644 index 76f039c15339e78e1f367c5134e303e25aaa693f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:57 CST 2019 -plexus-containers-1.0.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom deleted file mode 100644 index cf94c7c7d838ec2f0f6e5813a7bc0813584a23da..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +++ /dev/null @@ -1,17 +0,0 @@ - - 4.0.0 - - org.codehaus.plexus - plexus - 1.0.4 - - org.codehaus.plexus - plexus-containers - pom - Parent Plexus Container POM - 1.0.3 - - plexus-container-artifact - plexus-container-default - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 deleted file mode 100644 index 285dc204a173c16d7c5f6f3e39bb4191aacad6bc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e16f1c9b83cdeb142fc038dd0262c61121d58c4b \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/_remote.repositories deleted file mode 100644 index 5bb11ccb1dd1562d7b0f874d761d5e4668ec4dae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:26 CST 2019 -plexus-containers-1.5.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom deleted file mode 100644 index 3a422248a1b1ab1307e570b4fc262b5d63b36e19..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom +++ /dev/null @@ -1,122 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 2.0.5 - - - plexus-containers - 1.5.4 - pom - - Plexus Containers - - Plexus IoC Container core with companion tools. - - - - plexus-component-annotations - plexus-component-metadata - plexus-component-javadoc - plexus-container-default - - - - scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.4 - scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.4 - http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.5.4 - - - - 2.2.2 - 1.4.5 - 3.4 - 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 - 1.9.2 - - - jdom - jdom - 1.0 - - - 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 - 3.8.2 - - - - - - - - maven-compiler-plugin - - 1.5 - 1.5 - ${project.build.sourceEncoding} - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 deleted file mode 100644 index a7840a3194916fcc156157326f0084b7addc9d29..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b9942b081e9903371eb0c8f5677d1d2564b575ca \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/_remote.repositories deleted file mode 100644 index 26664995b67f25fce9a3a9cf4198fca0ca37ad8b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:08 CST 2019 -plexus-containers-1.5.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom deleted file mode 100644 index ad40ba65cba4b2f3441ca0e61d292ee6054e2078..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +++ /dev/null @@ -1,122 +0,0 @@ - - - 4.0.0 - - - org.codehaus.plexus - plexus - 2.0.7 - - - plexus-containers - 1.5.5 - pom - - Plexus Containers - - Plexus IoC Container core with companion tools. - - - - plexus-component-annotations - plexus-component-metadata - plexus-component-javadoc - plexus-container-default - - - - scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.5 - scm:svn:https://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.5.5 - http://fisheye.codehaus.org/browse/plexus/plexus-containers/tags/plexus-containers-1.5.5 - - - - 2.2.2 - 1.4.5 - 3.4 - 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 - 1.9.2 - - - jdom - jdom - 1.0 - - - 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 - 3.8.2 - - - - - - - - maven-compiler-plugin - - 1.5 - 1.5 - ${project.build.sourceEncoding} - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 deleted file mode 100644 index 44fab5a7ee455a496867ccbe4741f40592fcc6f8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cd786b660f8a4c1c520403a5fa04c7be45212b84 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/_remote.repositories deleted file mode 100644 index 249a7773924cf865a8b37fad5e4ba3bf0b54a234..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-i18n-1.0-beta-7.pom>repo.jenkins-ci.org= -plexus-i18n-1.0-beta-7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar b/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar deleted file mode 100644 index 290464385322294c12410e00699b323cb8b208b6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 deleted file mode 100644 index 2c3db71e52a3f1f7fd51e09358b800c36c64c044..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3690f10a668b3c7ac2ef563f14cfb6b2ba30ee57 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom b/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom deleted file mode 100644 index 74a30447097d94bf8b9c0eff52783fa26bc6484b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +++ /dev/null @@ -1,24 +0,0 @@ - - - plexus-components - org.codehaus.plexus - 1.1.12 - - 4.0.0 - plexus-i18n - Plexus I18N Component - 1.0-beta-7 - - - org.codehaus.plexus - plexus-utils - 1.4.1 - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-i18n-1.0-beta-7 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-i18n-1.0-beta-7 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-i18n-1.0-beta-7 - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 deleted file mode 100644 index dfa42552120e8f4bd0af13768b7225708d36a037..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5080cbaf0a98e413017ed074c845673c16546500 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/_remote.repositories deleted file mode 100644 index 967e585126187cb13c6f640a2e724e16d73491f6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-interactivity-api-1.0-alpha-4.jar>repo.jenkins-ci.org= -plexus-interactivity-api-1.0-alpha-4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar b/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar deleted file mode 100644 index a08eeb8a63e7acccdb360e9637d23ebe1aaac673..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 deleted file mode 100644 index c50634c9ded60047e635409580bdcd35810fa88a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a8f1178664a5457eef3f4531eb62f9505e1295f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom b/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom deleted file mode 100644 index e2d10a06444774e202a3bc54fea6d5fa82082b55..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +++ /dev/null @@ -1,209 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus-interactivity-api - Plexus Default Interactivity Handler - 1.0-alpha-4 - - - - -
dev@plexus.codehaus.org
-
-
- - irc - - 6667 - #plexus - irc.codehaus.org - - -
-
- 2001 - - - Plexus Developer List - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/pipermail/plexus-dev/ - - - - - jvanzyl - Jason van Zyl - jason@zenplex.com - Zenplex - - 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 - - - - trygvis - Trygve Laugstol - trygvis@codehaus.org - - Developer - - - - kenney - Kenney Westerhof - kenney@codehaus.org - - Developer - - - - - scm:svn:svn://svn.codehaus.org/plexus/scm/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api - scm:svn:https://svn.codehaus.org/plexus/trunk/plexus-components/plexus-interactivity/plexus-interactivity-api - - - Codehaus - http://www.codehaus.org/ - - - src/main/java - src/main/scripts - src/test/java - target/classes - target/test-classes - - - src/main/resources - - - - - src/test/resources - - - target - - - maven-release-plugin - - https://svn.codehaus.org/plexus/tags - - - - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-7 - compile - - - junit - junit - 3.8.1 - test - - - classworlds - classworlds - 1.1-alpha-2 - compile - - - plexus - plexus-utils - 1.0.2 - compile - - - - target/site - - - - repo1 - Maven Central Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 - - - snapshots - Maven Central Development Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 - - deployed - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 deleted file mode 100644 index b58e67c85dcfc2dd433df6c22ca692a3f0751ae7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bf5dfb1220b28a23257cbac420d677b7c70cdc5 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/_remote.repositories deleted file mode 100644 index 11ab90f75d7d985b1e5b60ad159b9b2bf0d2fe76..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:53 CST 2019 -plexus-interpolation-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom deleted file mode 100644 index fb053160ca3d38b96c3b7bf941c059be9fb27ccb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom +++ /dev/null @@ -1,42 +0,0 @@ - - 4.0.0 - - org.codehaus.plexus - plexus - 1.0.11 - - - plexus-interpolation - 1.1 - - Plexus Interpolation API - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.1 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.1 - http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.1 - - - - - junit - junit - 3.8.1 - test - - - - - - - - maven-release-plugin - 2.0-beta-6 - - https://svn.codehaus.org/plexus/plexus-components/tags - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom.sha1 deleted file mode 100644 index bb385e70ad3bf28a90d53e19a7a8549eb5d70c58..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f14eb0d6ef1381f7199fe0e95407f4d2f391ea04 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories deleted file mode 100644 index a2d5fb6a9fe675dd78549316d2c8c3647ba96244..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-interpolation-1.11.jar>repo.jenkins-ci.org= -plexus-interpolation-1.11.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar deleted file mode 100644 index c937688b6c6b4c7a767fadab6743e0296938a9db..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar.sha1 deleted file mode 100644 index d83a7eb54e623df392c095d77138da23884ffbc0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ad9dddff6043194904ad1d2c00ff1d003c3915f7 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom deleted file mode 100644 index 2af083d326d47cdae0a11b4ec6996b63d75dabcb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.1.14 - - - plexus-interpolation - 1.11 - - Plexus Interpolation API - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.11 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.11 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.11 - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 deleted file mode 100644 index c7dfad57e0095578f2e3a9e44990d3a64c653f23..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f03da80999422b6cc4300735789be83e4498a3bc \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories deleted file mode 100644 index b2b03a2c55fdfc09c74a02ca0a4fe9aa2ebc3560..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:29 CST 2019 -plexus-interpolation-1.12.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom deleted file mode 100644 index 7754ef0b956a472f6f597398f01e3630bba120f7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.1.14 - - - plexus-interpolation - 1.12 - - Plexus Interpolation API - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.12 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.12 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.12 - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 deleted file mode 100644 index 5d6675027baa17135beb6f90e80874246485c1bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.12/plexus-interpolation-1.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -101dd833f7186103b61a0281da38c95ae440eb63 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories deleted file mode 100644 index e38b97e1158bc0cc9b6f8f6292778d5a17293c96..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:32 CST 2019 -plexus-interpolation-1.13.jar>repo.jenkins-ci.org= -plexus-interpolation-1.13.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar deleted file mode 100644 index 18b6540b9f22b11b242ec9749f9f2c774b3e597d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1 deleted file mode 100644 index 652fc1ca2176490a65464f668cabad8b47008a44..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1740038076cec1946fd28ed5ac5c1688f7cf7630 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom deleted file mode 100644 index 4974f8f9f231db11a1e2cf9af0f591ba5690c7bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.1.15 - - - plexus-interpolation - 1.13 - - Plexus Interpolation API - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.13 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.13 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.13 - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 deleted file mode 100644 index 82af4b1a85848cd1d1fd03919d453fafc34e75e1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.13/plexus-interpolation-1.13.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5003aac564f8ab42ceede81b114c520b48271873 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories deleted file mode 100644 index dbd8b372602f73c46746c9d830c53d6addc72571..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -plexus-interpolation-1.14.pom>repo.jenkins-ci.org= -plexus-interpolation-1.14.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar deleted file mode 100644 index eee5c5736bd94e8cec118673eb6e226c8ccbc478..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 deleted file mode 100644 index a34f547fe90205af33e823a8c03feb51c641aace..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c88dd864fe8b8256c25558ce7cd63be66ba07693 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom deleted file mode 100644 index 27882ac08acdee51069d797280d9babfbb585bf2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +++ /dev/null @@ -1,20 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.1.18 - - - plexus-interpolation - 1.14 - - Plexus Interpolation API - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.14 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.14 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.14 - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 deleted file mode 100644 index 1b70c02e3c0e924730aef242e07508494d20fc7c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e296d45aff17c16ed268c5b9480214a0d92937ab \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/_remote.repositories deleted file mode 100644 index 40ebd55627ab80a1263fc6eb6846f4b6b0bfd8c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:42 CST 2019 -plexus-interpolation-1.19.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom deleted file mode 100644 index 3f9ebf5f2315558d82ce15b9d7e3e30076813252..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom +++ /dev/null @@ -1,31 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.3.1 - - - plexus-interpolation - 1.19 - - 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.19 - - - - - junit - junit - 3.8.2 - test - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom.sha1 deleted file mode 100644 index 7954854364fd3d003472afce2608e7e2577de9cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a2b6c765a231ca90800a96583016884fd08eceb \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/_remote.repositories deleted file mode 100644 index c1209fed9539afa0545201ece8491ce1ab0c8de8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -plexus-interpolation-1.21.jar>repo.jenkins-ci.org= -plexus-interpolation-1.21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar deleted file mode 100644 index 8a681ef3c3f56d0dc8a9563cf3dd9dc8167dcb93..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar.sha1 deleted file mode 100644 index 7274ed7c457a8aaeb78bf2ea34ef4768c6b2c876..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f92de59d295f16868001644acc21720f3ec9eb15 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom deleted file mode 100644 index 3247d06704bb9814eb727241702dbe70d1ebc35c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom +++ /dev/null @@ -1,47 +0,0 @@ - - 4.0.0 - - - org.codehaus.plexus - plexus-components - 1.3.1 - - - plexus-interpolation - 1.21 - - 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.21 - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - **/src/test/resources/utf8/** - - - - - - - - - junit - junit - 3.8.2 - test - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom.sha1 deleted file mode 100644 index aecd652af7c89c1470db10585f6c44a68217c4b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -af59eb04ba7e5a729837c4c6799ef4b80553a92e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/_remote.repositories deleted file mode 100644 index bea889d919feb107b5a09c4179b64238c429a742..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:41 CST 2019 -plexus-io-1.0-alpha-5.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5.jar b/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5.jar deleted file mode 100644 index 9336b700c710974962d94c68c4f167c860ab5a8c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5.jar.sha1 deleted file mode 100644 index d370c5ce12e33863589da69e31af025a7bb5e813..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/1.0-alpha-5/plexus-io-1.0-alpha-5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2b43f6b5c6acbc858021c1362002c72b30ffc9ed \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/_remote.repositories deleted file mode 100644 index 2d9018d4384e863a597e847a03ada6c8ee30c2ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -plexus-io-2.3.2.jar>repo.jenkins-ci.org= -plexus-io-2.3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar deleted file mode 100644 index 4c64d263a6a5fd25f3c75bb3ada0a146fa6c38b5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar.sha1 deleted file mode 100644 index 37db56d982b4b24f465faa1e4b0db6480a6aa642..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -092039985681333499e44f032887b6e340816a1d \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom b/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom deleted file mode 100644 index 69a4ddcd1670ea260d17caa36f4c099c9902d7dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom +++ /dev/null @@ -1,86 +0,0 @@ - - 4.0.0 - - - plexus-components - org.codehaus.plexus - 1.2 - - - plexus-io - 2.3.2 - - Plexus IO Components - - - scm:git:git@github.com:sonatype/plexus-io.git - scm:git:git@github.com:sonatype/plexus-io.git - http://github.com/sonatype/plexus-io - plexus-io-2.3.2 - - - jira - http://jira.codehaus.org/browse/PLXCOMP/component/14319 - - - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.codehaus.plexus - plexus-container-default - test - - - com.google.code.findbugs - jsr305 - 3.0.0 - provided - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-surefire-plugin - - never - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.1.1 - - - enforce-java - validate - - enforce - - - - - 1.7.0 - - - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom.sha1 deleted file mode 100644 index 13f7cdb04b5b481449e0d7a4fedbe47eec8a9896..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -54127072bc4bd5fe338a195bdad94680aaabe7a2 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/_remote.repositories deleted file mode 100644 index 246993783dbaf47cfa79491e3cfd88e6db407e20..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-io-2.4.jar>repo.jenkins-ci.org= -plexus-io-2.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.jar b/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.jar deleted file mode 100644 index 4a67532a0f0f4b41d8f89c8bb74afc76741072b4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.jar.sha1 deleted file mode 100644 index 2f99b1a4835ec770f4bb7de957d9ba930d213318..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -aeefcc8c338fbfc41a4893b665e5be367dcd4bce \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom deleted file mode 100644 index 669f7dd6f71db14179bd419faa4c776f221aea96..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom +++ /dev/null @@ -1,119 +0,0 @@ - - 4.0.0 - - - plexus-components - org.codehaus.plexus - 1.2 - - - plexus-io - 2.4 - - Plexus IO Components - - - scm:git:git@github.com:sonatype/plexus-io.git - scm:git:git@github.com:sonatype/plexus-io.git - http://github.com/sonatype/plexus-io - plexus-io-2.4 - - - jira - http://jira.codehaus.org/browse/PLXCOMP/component/14319 - - - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.codehaus.plexus - plexus-container-default - test - - - com.google.code.findbugs - jsr305 - 3.0.0 - provided - - - commons-io - commons-io - 2.2 - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - org.apache.maven.plugins - maven-surefire-plugin - - never - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.1.1 - - - enforce-java - validate - - enforce - - - - - 1.7.0 - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.12 - - - sniff - test - - check - - - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - org.codehaus.plexus.components.io.attributes.Java7FileAttributes - org.codehaus.plexus.components.io.attributes.Java7AttributeUtils - java.nio.file.* - java.io.File - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom.sha1 deleted file mode 100644 index 03267df4e36d376b69bdc027a77dfc441838f5b0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7bbc34ce4a98e1b83d68afa951b278a4ac00c78 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/_remote.repositories deleted file mode 100644 index 162ae887da75383b9fbc3202d1026d3b0c7ef7d0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:40 CST 2019 -plexus-resources-1.0-alpha-7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/plexus-resources-1.0-alpha-7.jar b/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/plexus-resources-1.0-alpha-7.jar deleted file mode 100644 index 0e0b782b12fb94c99bf94293721f7bfd467b2b75..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/plexus-resources-1.0-alpha-7.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/plexus-resources-1.0-alpha-7.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/plexus-resources-1.0-alpha-7.jar.sha1 deleted file mode 100644 index 50b0285728d4c4e5723b1d3661f58558f983bdcc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-resources/1.0-alpha-7/plexus-resources-1.0-alpha-7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a847914ba6045eb265d0dbb4329413471858ded \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories deleted file mode 100644 index 3305bf4736ddd0015b76398f19b9b70a8a37e218..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:59 CST 2019 -plexus-utils-1.0.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom deleted file mode 100644 index 515ccac0331661011eff356fb0dee15d50d901be..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +++ /dev/null @@ -1,202 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus-utils - Plexus Common Utilities - 1.0.4 - - - - -
dev@plexus.codehaus.org
-
-
- - irc - - 6667 - #plexus - irc.codehaus.org - - -
-
- 2001 - - - Plexus Developer List - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/pipermail/plexus-dev/ - - - - - jvanzyl - Jason van Zyl - jason@zenplex.com - Zenplex - - 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 - - - - trygvis - Trygve Laugstol - trygvis@codehaus.org - - Developer - - - - kenney - Kenney Westerhof - kenney@codehaus.org - - Developer - - - - - scm:svn:svn://svn.codehaus.org/plexus/scm/trunk/plexus-utils - scm:svn:https://svn.codehaus.org/plexus/trunk/plexus-utils - - - Codehaus - http://www.codehaus.org/ - - - src/main/java - src/main/scripts - src/test/java - target/classes - target/test-classes - - - src/main/resources - - - - - src/test/resources - - - target - - - maven-release-plugin - 2.0-beta-3-SNAPSHOT - - https://svn.codehaus.org/plexus/tags - - - - maven-surefire-plugin - RELEASE - - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - - - - - - - junit - junit - 3.8.1 - test - - - - target/site - - - - repo1 - Maven Central Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 - - - snapshots - Maven Central Development Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 - - deployed - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 deleted file mode 100644 index e653024fe7249e0bd42db35a4bc9827d09f21f29..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -000368060df8159954d5d6d942b7b6f42a07edfe \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/_remote.repositories deleted file mode 100644 index 954750483eb01d1f5cf0ba667f7dd6489137a9a4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:12 CST 2019 -plexus-utils-1.1.jar>repo.jenkins-ci.org= -plexus-utils-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar deleted file mode 100644 index 5c50e1779f7ed95c94394c5ad401580fb09a6f53..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar.sha1 deleted file mode 100644 index 28f6dbb585ab028b5452593d8048b031ab4cf5e5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fa632b7f1cb7c50963d0fb7d818ca93c75c10127 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom deleted file mode 100644 index 6cf9079989bf6862b3f1e850c05e3d076ff9db4c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom +++ /dev/null @@ -1,27 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.4 - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.1 - - - - maven-surefire-plugin - - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 deleted file mode 100644 index 4dc64d4ae8c95ff64ddb11fc070f66620d157a74..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -15492ecd00920daca9ec15f6acd695b626621e5b \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/_remote.repositories deleted file mode 100644 index 4ec492bca39130cfae567546629434d2301cb7a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:39 CST 2019 -plexus-utils-1.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.jar deleted file mode 100644 index f10ea25f80ce9691fa8b1f830fa077aed27a3024..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.jar.sha1 deleted file mode 100644 index 49e6ff1d2890c81e9377f3e820922e2f91466536..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -9756b92f7f380e4372d1e34f7d194bc0a5767849 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/_remote.repositories deleted file mode 100644 index 61fd8d5e8d5c095c09afaed53dfd38ba2119a7ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:49 CST 2019 -plexus-utils-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom deleted file mode 100644 index 31327e51ff1b97eac5b2f60da297cf5f985813a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom +++ /dev/null @@ -1,32 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.8 - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.3 - - scm:svn:https://svn.codehaus.org/plexus/tags/plexus-utils-1.3 - scm:svn:https://svn.codehaus.org/plexus/tags/plexus-utils-1.3 - - - - - maven-surefire-plugin - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 deleted file mode 100644 index 2b0a259fe1a1c8171c5115a9028d067c9f77a6ed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -050fadd040060c86cfd5d78ba95dab0cffcbcf5e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories deleted file mode 100644 index 66329ef43eb0d7f305ae3ba315e15ee0d13c6271..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:47 CST 2019 -plexus-utils-1.4.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom deleted file mode 100644 index 207a3ec9871a7b505f4f6b8c4a706e75600e57ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.11 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.4.1 - - - - 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.1 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.1 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.4.1 - - - - - maven-javadoc-plugin - - - maven-jxr-plugin - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 deleted file mode 100644 index cbbf6f8d0a5c052463e02bd222c4622abad38173..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0a77530df5e881e55a4ffaea4b6bf33d57bc5b26 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories deleted file mode 100644 index 3dfa6181138c1665c91008f94967ca3d94bac01c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:12 CST 2019 -plexus-utils-1.4.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom deleted file mode 100644 index bc634a6f196475df4d3364b95ff2634c480cfb32..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.11 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.4.5 - http://plexus.codehaus.org/plexus-utils - - - - maven-compiler-plugin - - - 1.3 - 1.3 - - - - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.5 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.5 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.4.5 - - - - - maven-javadoc-plugin - - - maven-jxr-plugin - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 deleted file mode 100644 index 247cd943560843d24ade59a546300eabe3e14f39..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0bdc8a7fbce7d9007a93d289a029b43e1196d85c \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/_remote.repositories deleted file mode 100644 index 853663b30e85c2db83cd19bf06664a0d6e25a27d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:41 CST 2019 -plexus-utils-1.4.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom deleted file mode 100644 index b903abcdb1e3f0cb9241953b43c22eeae1ffbcda..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.11 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.4.6 - http://plexus.codehaus.org/plexus-utils - - - - maven-compiler-plugin - - - 1.3 - 1.3 - - - - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.6 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.4.6 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.4.6 - - - - - maven-javadoc-plugin - - - maven-jxr-plugin - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 deleted file mode 100644 index 69b05f709f2c7caf598a0aaf0641801c2f0edb2b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a734ee9396d2ac09764cef74ebc56ef0339f6bd2 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/_remote.repositories deleted file mode 100644 index eee5efd04e401860d77e428170048361424932c1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:08 CST 2019 -plexus-utils-1.5.1.jar>repo.jenkins-ci.org= -plexus-utils-1.5.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar deleted file mode 100644 index eddd858af5776d6309808575f45c7143982f7ed7..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar.sha1 deleted file mode 100644 index 29d712673950c30917d8be54cbcb9abaf781aab2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -342d1eb41a2bc7b52fa2e54e9872463fc86e2650 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom deleted file mode 100644 index 7444bc69128364641b73108a266a0b6a755c1cd0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - plexus - org.codehaus.plexus - 1.0.11 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.5.1 - http://plexus.codehaus.org/plexus-utils - - - - maven-compiler-plugin - - - 1.3 - 1.3 - - - - maven-surefire-plugin - 2.3 - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.1 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.1 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.5.1 - - - - - maven-javadoc-plugin - - - maven-jxr-plugin - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 deleted file mode 100644 index 81e0390f8a0eafdee88cf2d4596d722b5013964c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2a0b3470063440066d3b8a084340ce07dbdbfedc \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/_remote.repositories deleted file mode 100644 index 0166a36c4277d603c2e13e101487fc9d26844060..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:09 CST 2019 -plexus-utils-1.5.12.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom deleted file mode 100644 index 1771a49be25e30972c56213fe740ff20a5befeb6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom +++ /dev/null @@ -1,170 +0,0 @@ - - - - plexus - org.codehaus.plexus - 2.0.2 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.5.12 - A collection of various utility classes to ease working with strings, files, command lines, XML and more. - http://plexus.codehaus.org/plexus-utils - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.12 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.12 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.5.12 - - - - - - maven-shade-plugin - 1.0.1 - - - maven-release-plugin - 2.0-beta-7 - - - - - - maven-compiler-plugin - - 1.3 - 1.3 - - - - maven-surefire-plugin - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-shade-plugin - - - shade - - shade - - - - - org.codehaus.plexus:plexus-interpolation - - - - - org.codehaus.plexus.interpolation - - - true - - - - - - maven-release-plugin - - true - https://svn.codehaus.org/plexus/plexus-utils/tags/ - -Prelease - - - - - - - release - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - org.codehaus.plexus - plexus-interpolation - 1.8 - provided - - - plexus-component-api - org.codehaus.plexus - - - plexus-classworlds - org.codehaus.plexus - - - - - junit - junit - 3.8.2 - test - - - - - - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api/ - - - - - maven-jxr-plugin - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 deleted file mode 100644 index 813d21645d7de6d0bc8575e975fcd23fea5e064a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -208a6bbc01bc37514c2245c5284072c7a8b16e21 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories deleted file mode 100644 index 4784f7987be947da2faa3acaeb1fc60b262612fc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:20 CST 2019 -plexus-utils-1.5.15.jar>repo.jenkins-ci.org= -plexus-utils-1.5.15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar deleted file mode 100644 index 8149689eb421252cceccd6766bb61e32af7bd275..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar.sha1 deleted file mode 100644 index e441ab568444f8d6d0b161c99623c8f4a23356af..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c689598ce1eb94c304817877ed15911099972526 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom deleted file mode 100644 index 335a06d1961904bf1aba96d9443b16c106634ba2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 2.0.2 - ../pom/pom.xml - - - plexus-utils - 1.5.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:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.15 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.15 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.5.15 - - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - - - - org.codehaus.plexus - plexus-interpolation - 1.11 - provided - - - org.codehaus.plexus - plexus-component-api - - - org.codehaus.plexus - plexus-classworlds - - - - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 1.0.1 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-7 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - 1.3 - 1.3 - - - - 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-shade-plugin - - - shade - - shade - - - - - org.codehaus.plexus:plexus-interpolation - - - - - org.codehaus.plexus.interpolation - - - true - - - - - - org.apache.maven.plugins - maven-release-plugin - - true - https://svn.codehaus.org/plexus/plexus-utils/tags/ - -Prelease - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - - - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api/ - - - - - maven-jxr-plugin - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 deleted file mode 100644 index 3e9953cc6c601bcb400adea20c95d7b0c5d935fc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b1f42bc7ebc5be3c0414f67fe2daf3b183acd74f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories deleted file mode 100644 index 0b590b47ebaa06b93fbbe443a99866eb27da6f33..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:21 CST 2019 -plexus-utils-1.5.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom deleted file mode 100644 index e48b643ed19005b7debecc5ea90805acef6ec666..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +++ /dev/null @@ -1,158 +0,0 @@ - - - - plexus - org.codehaus.plexus - 1.0.11 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.5.5 - http://plexus.codehaus.org/plexus-utils - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.5 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.5 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.5.5 - - - - - maven-clean-plugin - 2.2 - - - maven-compiler-plugin - 2.0.2 - - 1.3 - 1.3 - - - - maven-jar-plugin - 2.1 - - - maven-resources-plugin - 2.2 - - - maven-surefire-plugin - 2.3 - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-shade-plugin - 1.0.1 - - - shade - - shade - - - - - org.codehaus.plexus:plexus-interpolation - - - - - org.codehaus.plexus.interpolation - - - true - - - - - - maven-release-plugin - 2.0-beta-7 - - true - https://svn.codehaus.org/plexus/plexus-utils/tags/ - -Prelease - - - - - - - release - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - junit - junit - 3.8.1 - test - - - org.codehaus.plexus - plexus-interpolation - 1.0 - provided - - - - - - maven-javadoc-plugin - - - maven-jxr-plugin - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 deleted file mode 100644 index 8d8f2c5e1c9cc068e69d7d383fa02906f19ef672..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d04eaae6db5f8d879332da294a46df0fd81450f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/_remote.repositories deleted file mode 100644 index 1a3a5239750c960c61061173f90b62b525bbfcd3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:41 CST 2019 -plexus-utils-1.5.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom deleted file mode 100644 index 9d1bc32cc63795bba0d5fee20e36bbdf14cd3db8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - plexus - org.codehaus.plexus - 1.0.12 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.5.6 - http://plexus.codehaus.org/plexus-utils - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.6 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.6 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.5.6 - - - - - maven-clean-plugin - 2.2 - - - maven-compiler-plugin - 2.0.2 - - 1.3 - 1.3 - - - - maven-jar-plugin - 2.1 - - - maven-resources-plugin - 2.2 - - - maven-surefire-plugin - 2.3 - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-shade-plugin - 1.0.1 - - - shade - - shade - - - - - org.codehaus.plexus:plexus-interpolation - - - - - org.codehaus.plexus.interpolation - - - true - - - - - - maven-release-plugin - 2.0-beta-7 - - true - https://svn.codehaus.org/plexus/plexus-utils/tags/ - -Prelease - - - - - - - release - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - org.codehaus.plexus - plexus-interpolation - 1.0 - provided - - - junit - junit - 3.8.1 - test - - - - - - maven-javadoc-plugin - - - http://java.sun.com/javase/6/docs/api/ - - - - - maven-jxr-plugin - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 deleted file mode 100644 index d3e9ab763f310fdcd3077e43a39bfe22d9fe1f1c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2df1a6c4e7b1849a10643a37a6f66b21d49bd643 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/_remote.repositories deleted file mode 100644 index fa6233ed551e0a3fb0ff80738aa19b8b34f09d41..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:31 CST 2019 -plexus-utils-1.5.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.jar deleted file mode 100644 index 8062036d35cb192544d06296402c045c5f98bc29..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.jar.sha1 deleted file mode 100644 index 08ce13c2411c7c36a17233d811ba765931503b7b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7651ee9d04ebdbefc5ad768a5b8a7f0ded00a79a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories deleted file mode 100644 index 693d1479019517da1a7ccaf151c70fc33b15ed75..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:00 CST 2019 -plexus-utils-1.5.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom deleted file mode 100644 index 0176520a245277ac7a60c854d4a87815a1b11ce4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +++ /dev/null @@ -1,244 +0,0 @@ - - - - plexus - org.codehaus.plexus - 2.0.2 - ../pom/pom.xml - - 4.0.0 - plexus-utils - Plexus Common Utilities - 1.5.8 - A collection of various utility classes to ease working with strings, files, command lines, XML and more. - http://plexus.codehaus.org/plexus-utils - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - scm:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.8 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-1.5.8 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-1.5.8 - - - - - - maven-antrun-plugin - 1.1 - - - maven-assembly-plugin - 2.2-beta-2 - - - maven-clean-plugin - 2.2 - - - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - maven-dependency-plugin - 2.0 - - - maven-deploy-plugin - 2.4 - - - maven-ear-plugin - 2.3.1 - - - maven-ejb-plugin - 2.1 - - - maven-install-plugin - 2.2 - - - maven-jar-plugin - 2.2 - - - maven-javadoc-plugin - 2.5 - - - maven-plugin-plugin - 2.4.3 - - - maven-rar-plugin - 2.2 - - - maven-shade-plugin - 1.0.1 - - - maven-release-plugin - 2.0-beta-7 - - deploy - true - - - - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - maven-site-plugin - 2.0-beta-7 - - - maven-source-plugin - 2.0.4 - - - maven-surefire-plugin - 2.4.3 - - - maven-war-plugin - 2.1-alpha-1 - - - - - - maven-compiler-plugin - - 1.3 - 1.3 - - - - maven-surefire-plugin - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - maven-shade-plugin - - - shade - - shade - - - - - org.codehaus.plexus:plexus-interpolation - - - - - org.codehaus.plexus.interpolation - - - true - - - - - - maven-release-plugin - - true - https://svn.codehaus.org/plexus/plexus-utils/tags/ - -Prelease - - - - - - - release - - - - maven-source-plugin - - - attach-sources - - jar - - - - - - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - org.codehaus.plexus - plexus-interpolation - 1.3 - provided - - - junit - junit - 3.8.2 - test - - - - - - maven-javadoc-plugin - - - http://java.sun.com/j2se/1.4.2/docs/api/ - - - - - maven-jxr-plugin - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 deleted file mode 100644 index 9ab7bf97b86667b9b608832814feb93f2696e744..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7deaa90e5725075c9f9fb5a2cfbef75c86a5e5b5 \ 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 deleted file mode 100644 index b1f1d142b563f7f6e64737a92ec1aa331adb192e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#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 -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.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom deleted file mode 100644 index 43aa6ce97c37b48e504540c0f7748830bd2e2af4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 2.0.6 - ../pom/pom.xml - - - plexus-utils - 2.0.4 - - 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:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-2.0.4 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-2.0.4 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-2.0.4 - - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - 1.3 - 1.3 - - - - 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-release-plugin - - https://svn.codehaus.org/plexus/plexus-utils/tags/ - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 deleted file mode 100644 index 1d1615a97e327ba09618cdfd6833dd928c6bd094..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ffd8cee6475d101a5697091e1c18b0d08e3a8ff8 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories deleted file mode 100644 index ca9f96de29c8aeb4e2ee9a5aadbbbc65b7e0be04..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:49 CST 2019 -plexus-utils-2.0.5.jar>repo.jenkins-ci.org= -plexus-utils-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar deleted file mode 100644 index 1cf1a7a606cd5570684fbb5b1fdcfb8ae86e3e95..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 deleted file mode 100644 index 16ab0d18ceddb3b82c6275a9741d9ce7f0cce2e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7841ba10ea46c9611ce702c3833ff9fccc8ae6eb \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom deleted file mode 100644 index 7764a8c1f57bef00ba55de8a736140b4abd4827a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 2.0.6 - ../pom/pom.xml - - - plexus-utils - 2.0.5 - - 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:svn:http://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-2.0.5 - scm:svn:https://svn.codehaus.org/plexus/plexus-utils/tags/plexus-utils-2.0.5 - http://fisheye.codehaus.org/browse/plexus/plexus-utils/tags/plexus-utils-2.0.5 - - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - - 1.3 - 1.3 - - - - 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-release-plugin - - https://svn.codehaus.org/plexus/plexus-utils/tags/ - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 deleted file mode 100644 index f3d5c44bf0933d95ba76f6fd2ab40a4762878ed7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -51785edd83de609389ba142c9516752a4246aefc \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/_remote.repositories deleted file mode 100644 index 3c809f2fa6c420c4876297bbd65a3b1a25f9dc78..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:06 CST 2019 -plexus-utils-2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom deleted file mode 100644 index d5ef0b33c259a47b2071d02303a1b29fcc70ad9a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.spice - spice-parent - 16 - - - org.codehaus.plexus - plexus-utils - 2.1 - - 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 - - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - - - 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 - - - - - - junit - junit - 3.8.2 - test - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.6 - - - org.apache.maven.plugins - maven-surefire-plugin - - - true - - org/codehaus/plexus/util/FileBasedTestCase.java - **/Test*.java - - - - JAVA_HOME - ${JAVA_HOME} - - - M2_HOME - ${M2_HOME} - - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 deleted file mode 100644 index 9a8e913fe29761eca20a210ba58cd97d873e73e5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -093c8fac63e60cc811aac811b8d36ffe2aa5401f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/_remote.repositories deleted file mode 100644 index 088af0f31a09869df89480b016c832d5d056c290..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:05 CST 2019 -plexus-utils-3.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom deleted file mode 100644 index 4856ee9d94cad91d8346a933d1f015988d375128..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.3 - - - plexus-utils - 3.0.10 - - 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.10 - - - 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.10/plexus-utils-3.0.10.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 deleted file mode 100644 index 8b985de912b153e1799f93417a53a0db4757cfed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c70632156c3f19286424329d71e82b2026b90471 \ 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 deleted file mode 100644 index e03d79394c6d81f3fb27123a61202a061cc928f8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#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 -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.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar deleted file mode 100644 index feab196ec577c267931b263061a88850361fc33b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 deleted file mode 100644 index 4258b131c4a2b58b0d3bc31ab4b59c9387f9ea7b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -519b3f1fc84d3387c61a8c8e6235daf89aea4168 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories deleted file mode 100644 index 739585cc758961add9c6ca23b59f07f9cc8f892a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-utils-3.0.20.pom>repo.jenkins-ci.org= -plexus-utils-3.0.20.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar deleted file mode 100644 index d2f340b1d785ea42157184887da1cc4d59565adf..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar.sha1 deleted file mode 100644 index 645d269e055c60548a48c38da31db464128e3277..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e121ed37af8ee3928952f6d8a303de24e019aab0 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom deleted file mode 100644 index f6ac7f71a145f6cbc9711c890276f50431c3f5cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.3.1 - - - plexus-utils - 3.0.20 - - 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.20 - - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - - - - 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.5 - 1.5 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom.sha1 deleted file mode 100644 index 5c03336f55b100d0670bf14244ee0e0278a35e2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -43537d18e657a7a965f8e9f71a3fc027927fdc5f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories deleted file mode 100644 index d3723bf2a8bf8fa832b7d8aae605b777f0705b68..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:45 CST 2019 -plexus-utils-3.0.22.jar>repo.jenkins-ci.org= -plexus-utils-3.0.22.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar deleted file mode 100644 index 249976617e6562ea63484a6668750b07b0a312fc..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar.sha1 deleted file mode 100644 index f154967295ae9cef39a82ffb258056f5f5ba7617..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -764f26e0ab13a87c48fe55f525dfb6a133b7a92f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom deleted file mode 100644 index 558734e0dcefc36556bf4b4c8895b44ae46a8ece..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.3.1 - - - plexus-utils - 3.0.22 - - 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: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.22 - - - JIRA - http://jira.codehaus.org/browse/PLXUTILS - - - - - org.apache.maven.shared - maven-plugin-testing-harness - 1.1 - test - - - - - - 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.5 - 1.5 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom.sha1 deleted file mode 100644 index cf23173a518185538ad7522e0d240f53c229b59f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -553c5a129da11f6d56a2599ad0b21649a6d6de08 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories deleted file mode 100644 index b46f5163cb63d24cf41f821567573e534b2a6614..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:09 CST 2019 -plexus-utils-3.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom deleted file mode 100644 index c46b3a174cdadd0ff2fa95519651bbfcccd70080..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - 4.0.0 - - - org.codehaus.plexus - plexus - 3.2 - - - plexus-utils - 3.0.8 - - 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.8 - - - 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.8/plexus-utils-3.0.8.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 deleted file mode 100644 index fd34764c5bb136c8d6e1ccb9f139a2951fe8b8fb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -45a8cbe47c297155f2e2ef10c1b7b4707ab55fc6 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/_remote.repositories deleted file mode 100644 index 5d59f578c1681bf0bde721388e2d60802ca77897..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-velocity-1.1.7.jar>repo.jenkins-ci.org= -plexus-velocity-1.1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar b/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar deleted file mode 100644 index d91e079dace79cd4c892dd3af8a78b0210ee8908..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 deleted file mode 100644 index bacc017307e1530b69216d4b731062add3bbb657..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1440fc2552d1405b1c2d380ef3b96c4d9c6dbd0b \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom b/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom deleted file mode 100644 index a4c7eb648e6c177d55e8a4795b6247d510cffc76..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom +++ /dev/null @@ -1,50 +0,0 @@ - - - - - plexus-components - org.codehaus.plexus - 1.1.12 - - 4.0.0 - plexus-velocity - Plexus Velocity Component - 1.1.7 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-20 - - - commons-collections - commons-collections - 2.0 - - - velocity - velocity - 1.4 - - - - - scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-velocity-1.1.7 - scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-velocity-1.1.7 - http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-velocity-1.1.7 - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 deleted file mode 100644 index be314f02465b0c32e45f627121ab0889edadfc6d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -659f8ef80ef0cc3d101e63535b9c5a39f7bc4b3e \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/_remote.repositories deleted file mode 100644 index 67fc772fd98c452b188aa6459024edafd45e01b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:14 CST 2019 -plexus-1.0.10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom b/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom deleted file mode 100644 index faa0a090440c1ec21e0019c4032c307db7a81994..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +++ /dev/null @@ -1,265 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 1.0.10 - - - - mail - -
dev@plexus.codehaus.org
-
-
- - irc - - irc.codehaus.org - 6667 - #plexus - - -
-
- 2001 - - - 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 - - - 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 - - - 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 - - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - codehaus.org - Plexus Central Repository - dav:https://dav.codehaus.org/repository/plexus - - - codehaus.org - Plexus Central Development Repository - dav:https://dav.codehaus.org/snapshots.repository/plexus - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - - - 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 Laugstol - 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 - - - - - - junit - junit - 3.8.1 - test - - - - scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-1.0.10 - - - Codehaus - http://www.codehaus.org/ - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 deleted file mode 100644 index 6d86914358a1d74af7802b3b367ec2afc385740a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -14689c2085561eea120b85a84477b2be1f7588b1 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/_remote.repositories deleted file mode 100644 index 3fc07dc6bfcfe50c2820fc0f77ae702935a936bf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:12 CST 2019 -plexus-1.0.11.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom b/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom deleted file mode 100644 index 0fa4497ea4aa841432077c8418426e46e8bd5f98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +++ /dev/null @@ -1,300 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 1.0.11 - - - - mail - -
dev@plexus.codehaus.org
-
-
- - irc - - irc.codehaus.org - 6667 - #plexus - - -
-
- 2001 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 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 - - - 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 - - - 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 - - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - codehaus.org - Plexus Central Repository - dav:https://dav.codehaus.org/repository/plexus - - - codehaus.org - Plexus Central Development Repository - dav:https://dav.codehaus.org/snapshots.repository/plexus - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - - - 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 Laugstol - 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 - - - - - - junit - junit - 3.8.1 - test - - - - scm:svn:http://svn.codehaus.org/plexus/pom/trunk/ - scm:svn:https://svn.codehaus.org/plexus/pom/trunk/ - http://fisheye.codehaus.org/browse/plexus/pom/trunk/ - - - Codehaus - http://www.codehaus.org/ - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - - - - maven-release-plugin - - deploy - - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 deleted file mode 100644 index 3e7cac7607cccd394710a9eb8279c0b035055008..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -713767cf9a31f0bfc23ebdf7824eabf4d388710a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/_remote.repositories deleted file mode 100644 index 1de3ad42e944d80ebc8dad2e2ba3f577b96a9df9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:42 CST 2019 -plexus-1.0.12.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom b/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom deleted file mode 100644 index 2049af318458e069c0010eed014d0d108f80d739..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom +++ /dev/null @@ -1,310 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 1.0.12 - - 2001 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 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 - - - 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 - - - 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 - - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - codehaus.org - Plexus Central Repository - dav:https://dav.codehaus.org/repository/plexus - - - codehaus.org - Plexus Central Development Repository - dav:https://dav.codehaus.org/snapshots.repository/plexus - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - - - 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 - - - - - - junit - junit - 3.8.1 - test - - - - scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-1.0.12 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-1.0.12 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-1.0.12 - - - Codehaus - http://www.codehaus.org/ - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - - - - - - maven-release-plugin - - deploy - - - - - - diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 deleted file mode 100644 index 722a09b4861c5b429a6088b70abe5229e88ce7c7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -672a26720d10433ea102f34ea5acfc3dd5143c2a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/_remote.repositories deleted file mode 100644 index a232a366db27a1fd49c3c6a124a36af10a06c698..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:57 CST 2019 -plexus-1.0.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom b/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom deleted file mode 100644 index 2cf5d569637745f4da5f4c8dbd583e68b28233b5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +++ /dev/null @@ -1,205 +0,0 @@ - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 1.0.4 - - - - mail - -
dev@plexus.codehaus.org
-
-
- - irc - - irc.codehaus.org - 6667 - #plexus - - -
-
- 2001 - - - Plexus Developer List - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/pipermail/plexus-dev/ - - - - - - repo1 - Maven Central Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 - - - snapshots - Maven Central Development Repository - scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 - - - - - snapshots - Maven Snapshot Development Repository - http://snapshots.maven.codehaus.org/maven2 - - false - - - - - - snapshots-plugins - Maven Snapshot Plugins Development Repository - http://snapshots.maven.codehaus.org/maven2 - - false - - - - - - - jvanzyl - Jason van Zyl - jason@zenplex.com - Zenplex - - 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 - - - - - - junit - junit - 3.8.1 - test - - - - scm:svn:svn://svn.codehaus.org/plexus/scm/trunk/ - scm:svn:https://svn.codehaus.org/plexus/trunk - - - Codehaus - http://www.codehaus.org/ - - - plexus-appserver - plexus-archetypes - plexus-components - plexus-component-factories - plexus-containers - plexus-logging - plexus-maven-plugin - plexus-services - plexus-tools - plexus-utils - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.codehaus.org/plexus/tags - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 deleted file mode 100644 index 456d534766a4f91ee13f36875ec689099fc48f0f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -06f66b2f7d2eef1d805c11bca91c89984cda4137 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/_remote.repositories deleted file mode 100644 index 3f92da526b17565891081f895b480f6d862885c6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:49 CST 2019 -plexus-1.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom b/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom deleted file mode 100644 index 1173cb8f52378abab70991bfd0f8f4761d739bae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +++ /dev/null @@ -1,231 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 1.0.8 - - - - mail - -
dev@plexus.codehaus.org
-
-
- - irc - - irc.codehaus.org - 6667 - #plexus - - -
-
- 2001 - - - Plexus Developer List - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/mailman/listinfo/plexus-dev - http://lists.codehaus.org/pipermail/plexus-dev/ - - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - codehaus.org - Plexus Central Repository - dav:https://dav.codehaus.org/repository/plexus - - - codehaus.org - Plexus Central Development Repository - dav:https://dav.codehaus.org/snapshots.repository/plexus - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - - - - 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 Laugstol - 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 - - - - - - junit - junit - 3.8.1 - test - - - - scm:svn:http://svn.codehaus.org/plexus/trunk/ - scm:svn:https://svn.codehaus.org/plexus/trunk - - - Codehaus - http://www.codehaus.org/ - - - - plexus-archetypes - plexus-examples - plexus-components - plexus-component-factories - plexus-containers - plexus-logging - plexus-maven-plugin - plexus-tools - plexus-utils - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-1 - - - - - org.apache.maven.plugins - maven-release-plugin - - https://svn.codehaus.org/plexus/tags - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 deleted file mode 100644 index 464727e941c060c2d15bfdebbd85767e140ba471..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7c750e93ac7aadce298ddf129d8b2ef3ae44464a \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/_remote.repositories deleted file mode 100644 index d50db0e2c57772466eab87633305fcfa21cae37d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:51 CST 2019 -plexus-1.0.9.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom b/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom deleted file mode 100644 index db8143242e0e708fbe9a017c46f03f8d03fdc224..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom +++ /dev/null @@ -1,232 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 1.0.9 - - - - mail - -
dev@plexus.codehaus.org
-
-
- - irc - - irc.codehaus.org - 6667 - #plexus - - -
-
- 2001 - - - 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 - - - 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 - - - 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 - - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - codehaus.org - Plexus Central Repository - dav:https://dav.codehaus.org/repository/plexus - - - codehaus.org - Plexus Central Development Repository - dav:https://dav.codehaus.org/snapshots.repository/plexus - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - - - - 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 Laugstol - 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 - - - - - - junit - junit - 3.8.1 - test - - - - scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-1.0.9 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-1.0.9 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-1.0.9 - - - Codehaus - http://www.codehaus.org/ - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-1 - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 deleted file mode 100644 index 581264b1193b394245e0a66fa071a4b2d8a760d1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -16e2adb6407e1fdfc1cf610a1321ee91a9065c5f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/_remote.repositories deleted file mode 100644 index 4670393846d03ffe115eaee2903b64a9596665bf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:52 CST 2019 -plexus-2.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom b/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom deleted file mode 100644 index 12dc936a7ca71cb1c14a4b8b79e5a413383971d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +++ /dev/null @@ -1,384 +0,0 @@ - - - 4.0.0 - org.codehaus.plexus - plexus - pom - Plexus - 2.0.2 - http://plexus.codehaus.org/ - - - - mail - -
dev@plexus.codehaus.org
-
-
-
-
- 2001 - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - 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 - - - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - UTF-8 - http://oss.repository.sonatype.org/content/repositories/plexus-snapshots - - - - - plexus-releases - Plexus Release Repository - http://oss.repository.sonatype.org/content/repositories/plexus-releases - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - - 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 - - - - - - - junit - junit - 3.8.2 - test - - - - - scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-2.0.2 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-2.0.2 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-2.0.2 - - - Codehaus - http://www.codehaus.org/ - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.4.3 - - - maven-release-plugin - 2.0-beta-7 - - deploy - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 deleted file mode 100644 index 83500792178e2be1c39b47cf82b4e8b5f4293079..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b6c97d19090baa51e953fb782e3986b068fb450f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/_remote.repositories deleted file mode 100644 index 03dcd2cc098ec3fb64aaa49ddad97d96458a8dff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:02 CST 2019 -plexus-2.0.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom b/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom deleted file mode 100644 index e72e16a202fd47b16b7f259f4045cf36c9268782..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +++ /dev/null @@ -1,489 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 2.0.3 - - 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 - - - - - - - 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:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-2.0.3 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-2.0.3 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-2.0.3 - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - mail - -
dev@plexus.codehaus.org
-
-
-
-
- - - plexus-releases - Plexus Release Repository - http://oss.repository.sonatype.org/content/repositories/plexus-releases - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - UTF-8 - http://oss.repository.sonatype.org/content/repositories/plexus-snapshots - - - - - junit - junit - 3.8.2 - test - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.4.3 - - - maven-release-plugin - 2.0-beta-9 - - deploy - true - - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.2 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - ${project.build.sourceEncoding} - - http://java.sun.com/j2ee/1.4/docs/api - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - - - - release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 deleted file mode 100644 index b17115919bd5a1a929adc9fb5cadce18017b32f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bf472ec56fe823f1b4b997fe5b9396490ae9b1dc \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/_remote.repositories deleted file mode 100644 index 2bafa625120869414ed072c55c54eeb32e9b0c4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:29 CST 2019 -plexus-2.0.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom b/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom deleted file mode 100644 index f08e299702de874d51d276007543df4243179670..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 2.0.5 - - 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 - - - - - - - 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:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-2.0.5 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-2.0.5 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-2.0.5 - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - mail - -
dev@plexus.codehaus.org
-
-
-
-
- - - plexus-releases - Plexus Release Repository - http://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - UTF-8 - http://oss.repository.sonatype.org/content/repositories/plexus-snapshots - - - - - junit - junit - 3.8.2 - test - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.4 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.5.1 - - - maven-release-plugin - 2.0-beta-9 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven_checks.xml - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/maven-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2ee/1.4/docs/api - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - - - - 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 - 2.1 - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 deleted file mode 100644 index ec6321fd6c89f8f9ffc137dd1ec27ba5f10cb5fd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c37b8e9129d8860dfdea27da2c5407de7c6faba7 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/_remote.repositories deleted file mode 100644 index c798f45ab81b7a39411a664eea2b3949bce4f012..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:33 CST 2019 -plexus-2.0.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom b/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom deleted file mode 100644 index 599c64579d941fda873a5ee3ab170fb92695159f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 2.0.6 - - 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 - - - - - - - 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:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-2.0.6 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-2.0.6 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-2.0.6 - - - JIRA - http://jira.codehaus.org/browse/PLX - - - - - mail - -
dev@plexus.codehaus.org
-
-
-
-
- - - plexus-releases - Plexus Release Repository - http://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - plexus-snapshots - Plexus Snapshot Repository - ${plexusDistMgmtSnapshotsUrl} - - - codehaus.org - dav:https://dav.codehaus.org/plexus - - - - - UTF-8 - http://oss.repository.sonatype.org/content/repositories/plexus-snapshots - - - - - junit - junit - 3.8.2 - test - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.4 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.1 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.5.1 - - - maven-release-plugin - 2.0 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.2 - - - org.apache.maven.plugins - maven-site-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.5 - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.2/src/main/resources/config/maven_checks.xml - http://svn.codehaus.org/plexus/pom/trunk/src/main/resources/config/plexus-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2ee/1.4/docs/api - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - - - - 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 - 2.1 - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 deleted file mode 100644 index 00c0a41cfee4d00ef30158cb72cccc6d11fa7729..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -da193f47e5ce5a2cb85931851b3698e61cde8227 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/_remote.repositories deleted file mode 100644 index 34bdffd8f4ff9777098d14e9db5214ae5ccb7d19..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:09 CST 2019 -plexus-2.0.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom b/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom deleted file mode 100644 index 2f8cf16babfe5d5c28c4d6a19764c849e1b4c812..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - 4.0.0 - - org.codehaus.plexus - plexus - pom - 2.0.7 - - 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 - - - - - - - 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:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-2.0.7 - scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-2.0.7 - http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-2.0.7 - - - 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 - - - - - junit - junit - 3.8.2 - test - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.1 - - 1.4 - 1.4 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - org.apache.maven.plugins - maven-plugin-plugin - 2.6 - - - maven-release-plugin - 2.0 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-site-plugin - 2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.5 - - - - - - - - - maven-project-info-reports-plugin - 2.1.2 - - - - - - - reporting - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.2 - - http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.2/src/main/resources/config/maven_checks.xml - http://svn.codehaus.org/plexus/pom/trunk/src/main/resources/config/plexus-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - - http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/rulesets/maven.xml - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/j2ee/1.4/docs/api - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - - - - 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 - 2.1 - false - - - attach-descriptor - - attach-descriptor - - - - - - - - - - -
diff --git a/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 deleted file mode 100644 index da29031bfc8680cdf76266d421b76a9c8f8c96fd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f6ee62f8157f273757b8ffda59714a6a279a174d \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.2/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/3.2/_remote.repositories deleted file mode 100644 index 7ec791c11738aedecbf72628fa8e85250c6f583b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:27 CST 2019 -plexus-3.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom b/artifacts/m2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom deleted file mode 100644 index 95510d4bbc31205054cbd562beb3df288242d502..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.spice - spice-parent - 17 - - - org.codehaus.plexus - plexus - pom - 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 - - - - - - - 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.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 - - - - - junit - junit - 3.8.2 - 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.7 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.4 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.1 - - - maven-release-plugin - 2.3.2 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.1 - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 2.2 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.3 - - - - - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.5.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 - 2.5.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 - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.12.3 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - config/maven_checks.xml - https://raw.github.com/sonatype/plexus-pom/master/src/main/resources/config/plexus-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 1.5 - - rulesets/maven.xml - - - ${project.build.directory}/generated-sources/modello - ${project.build.directory}/generated-sources/plugin - - - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.3 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - true - - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - - - - 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.2/plexus-3.2.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 deleted file mode 100644 index 142058da681fe8ae03d47547f1389e71dc53b4a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -521733c90c6fb160311e47b51f0471642b69f64f \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/_remote.repositories deleted file mode 100644 index 3ccfb35fa568de46a292d66928e776ec7eeecb58..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:26 CST 2019 -plexus-3.3.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom b/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom deleted file mode 100644 index 39de6517aa617a5b2c6f76cddb14a4977559998a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +++ /dev/null @@ -1,636 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.spice - spice-parent - 17 - - - org.codehaus.plexus - plexus - pom - 3.3.1 - - 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 - - - - - - - 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.1 - - - 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 - - - - - junit - junit - 3.8.2 - 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.7 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.4 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.2 - - - maven-release-plugin - 2.3.2 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.2 - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 2.2 - - - org.slf4j - slf4j-api - 1.7.2 - - - org.slf4j - slf4j-simple - 1.7.2 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.4 - - - - - - - - - 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 - - - - - - - - - - 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.12.4 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - 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 - 2.7.1 - - 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.3 - - - default - - jxr - test-jxr - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - true - - http://junit.sourceforge.net/javadoc/ - - - - - default - - javadoc - test-javadoc - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.2 - - - - - - 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.1/plexus-3.3.1.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 deleted file mode 100644 index d710e653cd4109f791098c49ac4b23da68a47dd3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f081c65405b2d5e403c9d57e791b23f613966322 \ No newline at end of file diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3/_remote.repositories b/artifacts/m2/org/codehaus/plexus/plexus/3.3/_remote.repositories deleted file mode 100644 index 6a530ae7b051b4ee09af17471b2b915a3820c8e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:06 CST 2019 -plexus-3.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom b/artifacts/m2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom deleted file mode 100644 index 773aaf6942d0b5344205cdc9c33010a90b363a37..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom +++ /dev/null @@ -1,618 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.spice - spice-parent - 17 - - - org.codehaus.plexus - plexus - pom - 3.3 - - 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 - - - - - - - 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 - - - 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 - - - - - junit - junit - 3.8.2 - 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.7 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.4 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - org.apache.maven.plugins - maven-plugin-plugin - 3.1 - - - maven-release-plugin - 2.3.2 - - deploy - false - -Pplexus-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.2 - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 2.2 - - - org.slf4j - slf4j-api - 1.7.2 - - - org.slf4j - slf4j-simple - 1.7.2 - - - - - org.apache.maven.plugins - maven-source-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.12.4 - - - - - - - - - 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 - - - - - - - - - - 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.12.4 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - config/maven_checks.xml - https://raw.github.com/sonatype/plexus-pom/master/src/main/resources/config/plexus-header.txt - - - - org.apache.maven.plugins - maven-pmd-plugin - 2.7.1 - - 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.3 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - true - - http://junit.sourceforge.net/javadoc/ - - - - - - javadoc - test-javadoc - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.2 - - - - - - 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/plexus-3.3.pom.sha1 b/artifacts/m2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 deleted file mode 100644 index 288d5882dbf85f2f926f344ca719b1cb163b714e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -70ab8436286998acce80e63fe75067a70cfe3e43 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/_remote.repositories deleted file mode 100644 index a683abc957add413e70c3c869a5e18cc458d3742..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -aether-api-1.0.2.v20150114.jar>repo.jenkins-ci.org= -aether-api-1.0.2.v20150114.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar b/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar deleted file mode 100644 index c8adbaa2f115d0f1dd5e4fcf029577e2553b901f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar.sha1 b/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar.sha1 deleted file mode 100644 index 5337b6f92e62ca6c1a0e03af4ab92581226d6f5b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -839f93a5213fb3e233b09bfd6d6b95669f7043c0 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom b/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom deleted file mode 100644 index 66da78097609d0c64df9e5498f48b2691634829f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.aether - aether - 1.0.2.v20150114 - - - aether-api - - Aether API - - The application programming interface for the repository system. - - - - org.eclipse.aether.api - - - - - junit - junit - test - - - org.hamcrest - hamcrest-library - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.codehaus.mojo - clirr-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom.sha1 deleted file mode 100644 index db422885ff1bce60f0d51b90127270df09f6e4ca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f498b9a0d199a7f8ec407e880105fa3a8ff490f5 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/_remote.repositories deleted file mode 100644 index a7d9e25fe28845caa74d52b2af5e618e2ad4639f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -aether-impl-1.0.2.v20150114.pom>repo.jenkins-ci.org= -aether-impl-1.0.2.v20150114.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar b/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar deleted file mode 100644 index f7643151cf988d22bd057d32c65d955e66de3b29..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar.sha1 b/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar.sha1 deleted file mode 100644 index d56ba51a7d272b63eafdda6d720115957f22895f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f147539e6e60dfbda9ef7f6d750066170f61b7a1 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom b/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom deleted file mode 100644 index 9eaa08e6a256a161cfb2f13b6d59904beb98e5ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.aether - aether - 1.0.2.v20150114 - - - aether-impl - - Aether Implementation - - An implementation of the repository system. - - - - org.eclipse.aether.impl - - - - - org.eclipse.aether - aether-api - - - org.eclipse.aether - aether-spi - - - org.eclipse.aether - aether-util - - - javax.inject - javax.inject - provided - true - - - org.eclipse.sisu - org.eclipse.sisu.inject - provided - true - - - org.sonatype.sisu - sisu-guice - no_aop - provided - true - - - org.slf4j - slf4j-api - provided - true - - - junit - junit - test - - - org.hamcrest - hamcrest-library - test - - - org.eclipse.aether - aether-test-util - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.eclipse.sisu - sisu-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - - com.google.inject.*;version="[1.3,2)",* - - - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom.sha1 deleted file mode 100644 index 002277e64fc3e12c0943863965ebe36ebe7981bd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -18f6926294a7592d64b067fa9802db14d77e5672 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/_remote.repositories deleted file mode 100644 index 6017ab931bb892c9c93c3a9e159ccac3d69a54d5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -aether-spi-1.0.2.v20150114.jar>repo.jenkins-ci.org= -aether-spi-1.0.2.v20150114.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar b/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar deleted file mode 100644 index 59c0935ddcf8e105f5eb23c4371eed6ee97381fb..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar.sha1 b/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar.sha1 deleted file mode 100644 index 106b8927897ecac02b3495f7797d6f8ff1c98187..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8428dfa330107984f3e3ac05cc3ebd50b2676866 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom b/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom deleted file mode 100644 index db006e50a11b33997d9209f0846d779197c350a2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.aether - aether - 1.0.2.v20150114 - - - aether-spi - - Aether SPI - - The service provider interface for repository system implementations and repository connectors. - - - - org.eclipse.aether.spi - - - - - org.eclipse.aether - aether-api - - - junit - junit - test - - - org.hamcrest - hamcrest-library - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.codehaus.mojo - clirr-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom.sha1 deleted file mode 100644 index ec33b895e34c2c864dec3d8f344b816d3e00dbe9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d15f1d37ab739d349fe27c40167af7fc3fa60645 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/_remote.repositories deleted file mode 100644 index a6f355ab439c1bb99a6724d20b720701b6a8af44..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -aether-util-0.9.0.M2.jar>repo.jenkins-ci.org= -aether-util-0.9.0.M2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar b/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar deleted file mode 100644 index be3ab41231787eabee009278e7e35ef072297410..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 b/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 deleted file mode 100644 index e809184565dbfc6c322b08cd471bead4241b997d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b957089deb654647da320ad7507b0a4b5ce23813 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom b/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom deleted file mode 100644 index 49f97760cbe2c008aa2e9ee312decebc996a2c1a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.aether - aether - 0.9.0.M2 - - - aether-util - - Aether Utilities - - A collection of utility classes to ease usage of the repository system. - - - - org.eclipse.aether.util - - - - - org.eclipse.aether - aether-api - - - org.eclipse.aether - aether-test-util - test - - - junit - junit - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.codehaus.mojo - clirr-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 deleted file mode 100644 index cf9609a8cd7ebfec1730306aab2d5f1559ea64c0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -938d4a7468d46180927cd14ccec6a5accfc428af \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/_remote.repositories deleted file mode 100644 index 91eb7e34353e9ec4a011d7b874e838a270942f7d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -aether-util-1.0.2.v20150114.jar>repo.jenkins-ci.org= -aether-util-1.0.2.v20150114.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar b/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar deleted file mode 100644 index fce3fff8c7640e88eb777d02b7fbe15ab0ea8a59..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar.sha1 b/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar.sha1 deleted file mode 100644 index c50c1e08328a431b22177489b09825efa3a433f5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d2d3c74a5210544b5cdce89a2c1d1c62835692d1 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom b/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom deleted file mode 100644 index 4e66290c513bf4faa790ef652f83cd81b8684c54..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.aether - aether - 1.0.2.v20150114 - - - aether-util - - Aether Utilities - - A collection of utility classes to ease usage of the repository system. - - - - org.eclipse.aether.util - - - - - org.eclipse.aether - aether-api - - - org.eclipse.aether - aether-test-util - test - - - org.hamcrest - hamcrest-library - test - - - junit - junit - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.codehaus.mojo - clirr-maven-plugin - - - org.apache.felix - maven-bundle-plugin - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom.sha1 deleted file mode 100644 index 72df896491f6c9ff76b644e56480cae6b3e56f4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -05408a6dd910bf6ed5bf5e2ec95f4d12cd6336eb \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/_remote.repositories deleted file mode 100644 index 8cad64a60513ab8f1b6f132ecc47d139eccaceae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:53 CST 2019 -aether-0.9.0.M2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom b/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom deleted file mode 100644 index 506f6658224d633be222ca7e1a7edaae3adbc0d5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +++ /dev/null @@ -1,747 +0,0 @@ - - - - - - 4.0.0 - - org.eclipse.aether - aether - 0.9.0.M2 - pom - - Aether - - The parent and aggregator for the repository system. - - http://www.eclipse.org/aether/ - 2010 - - - The Eclipse Foundation - http://www.eclipse.org/ - - - - - Aether Developer List - https://dev.eclipse.org/mailman/listinfo/aether-dev - https://dev.eclipse.org/mailman/listinfo/aether-dev - aether-dev@eclipse.org - http://dev.eclipse.org/mhonarc/lists/aether-dev/ - - - Aether User List - https://dev.eclipse.org/mailman/listinfo/aether-users - https://dev.eclipse.org/mailman/listinfo/aether-users - aether-users@eclipse.org - http://dev.eclipse.org/mhonarc/lists/aether-users/ - - - Aether Commit Notification List - https://dev.eclipse.org/mailman/listinfo/aether-commit - https://dev.eclipse.org/mailman/listinfo/aether-commit - http://dev.eclipse.org/mhonarc/lists/aether-commit/ - - - Aether CI Notification List - https://dev.eclipse.org/mailman/listinfo/aether-build - https://dev.eclipse.org/mailman/listinfo/aether-build - http://dev.eclipse.org/mhonarc/lists/aether-build/ - - - - - scm:git:git://git.eclipse.org/gitroot/aether/aether-core.git - scm:git:ssh://git.eclipse.org/gitroot/aether/aether-core.git - http://git.eclipse.org/c/aether/aether-core.git/tree/ - - - - bugzilla - https://bugs.eclipse.org/bugs/buglist.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&product=Aether - - - - Hudson - https://hudson.eclipse.org/hudson/job/aether-core-nightly/ - - - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ${sonatypeOssDistMgmtSnapshotsId} - ${sonatypeOssDistMgmtSnapshotsUrl} - - - - - - Eclipse Public License, Version 1.0 - http://www.eclipse.org/legal/epl-v10.html - repo - - - - - - bbentmann - Benjamin Bentmann - - Project Lead - - - - jvanzyl - Jason Van Zyl - - Project Lead - - - - - - aether-api - aether-spi - aether-util - aether-impl - aether-test-util - aether-connector-file - aether-connector-wagon - aether-connector-asynchttpclient - - - - UTF-8 - UTF-8 - true - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - org.eclipse.aether - aether-api - ${project.version} - - - org.eclipse.aether - aether-spi - ${project.version} - - - org.eclipse.aether - aether-util - ${project.version} - - - org.eclipse.aether - aether-impl - ${project.version} - - - org.eclipse.aether - aether-connector-file - ${project.version} - - - org.eclipse.aether - aether-connector-wagon - ${project.version} - - - org.eclipse.aether - aether-connector-asynchttpclient - ${project.version} - - - org.eclipse.aether - aether-test-util - ${project.version} - test - - - - junit - junit - 4.8.2 - test - - - - javax.inject - javax.inject - 1 - provided - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - provided - - - - org.sonatype.sisu - sisu-inject-plexus - 2.3.0 - - - - org.slf4j - slf4j-api - 1.6.2 - - - - - - - - - org.apache.felix - maven-bundle-plugin - 2.3.7 - - - ${project.url} - ${project.name} (Incubation) - ${bundle.symbolicName} - ${bundle.osgiVersion} - - - - - create-manifest - process-test-classes - - manifest - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - 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.5 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.2 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.2 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - - 2.3.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - false - - http://download.oracle.com/javase/6/docs/api/ - - - - noextend - a - Restriction: - - - noimplement - a - Restriction: - - - noinstantiate - a - Restriction: - - - nooverride - a - Restriction: - - - noreference - a - Restriction: - - - - - API - org.eclipse.aether* - - - SPI - org.eclipse.aether.spi* - - - Utilities - org.eclipse.aether.util* - - - Repository Connectors - org.eclipse.aether.connector* - - - Implementation - org.eclipse.aether.impl* - - - Internals - org.eclipse.aether.internal* - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - true - forked-path - false - deploy javadoc:aggregate-jar assembly:attached - -Psonatype-oss-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - - 2 - ${project.name} Sources (Incubation) - http://www.eclipse.org/legal/epl-v10.html - ${bundle.symbolicName}.source - ${project.organization.name} - ${bundle.osgiVersion} - ${bundle.symbolicName};version="${bundle.osgiVersion}";roots:="." - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.9 - - -Xmx128m - ${surefire.redirectTestOutputToFile} - - ${project.build.directory}/surefire-tmp - - - - - 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.codehaus.mojo - clirr-maven-plugin - 2.3 - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - generate-components-xml - process-classes - - generate-metadata - - - - - - org.sonatype.plugins - sisu-maven-plugin - 1.1 - - - generate-index - process-classes - - main-index - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - qa - verify - - enforce - - - - - - project.version - [0-9]+\.[0-9]+\.[0-9]+((.*-SNAPSHOT)|(\.M[0-9]+)|(\.RC[0-9]+)|(\.v[0-9]{8})) - Project version must be either X.Y.Z.M#, X.Y.Z.RC# or X.Y.Z.v######## - - - - true - - *:* - - - org.eclipse.aether - - org.slf4j:slf4j-api:1.6.2 - - junit:junit:4.8.2 - - org.codehaus.plexus:plexus-component-annotations:1.5.5 - - org.codehaus.plexus:plexus-utils:2.1 - - org.codehaus.plexus:plexus-classworlds:2.4 - - org.apache.maven.wagon:wagon-provider-api:1.0 - - com.ning:async-http-client:1.7.6 - - io.netty:netty:3.4.4.Final - - org.sonatype.sisu:sisu-inject-plexus:2.3.0 - - org.sonatype.sisu:sisu-guice:3.1.0 - - org.sonatype.sisu:sisu-guava:0.9.9 - - javax.inject:javax.inject:1 - - org.sonatype.sisu:sisu-inject-bean:2.3.0 - - ch.qos.logback:*:*:*:test - org.apache.maven.wagon:wagon-http-lightweight:*:*:test - org.eclipse.jetty:*:*:*:test - org.mortbay.jetty:*:*:*:test - org.sonatype.http-testing-harness:*:*:*:test - javax.servlet:*:*:*:test - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - osgi-timestamp - initialize - - timestamp-property - - - bundle.osgiTimestamp - yyyyMMdd-HHmm - UTC - en - - - - osgi-version - initialize - - regex-property - - - bundle.osgiVersion - ${project.version} - -SNAPSHOT - .${bundle.osgiTimestamp} - false - - - - - - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - package - - jar - - - - default-cli - - false - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.2 - - - - - attach-source-release-distro - package - - single - - - true - - source-release - - gnu - - - - default-cli - - false - - src/main/assembly/bin.xml - - - - - - - - - - snapshot-sources - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - - - clirr - - - - org.codehaus.mojo - clirr-maven-plugin - - - check-api-compat - verify - - check-no-fork - - - - - - - - - m2e - - - m2e.version - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.sonatype.plugins - sisu-maven-plugin - [1.1,) - - test-index - main-index - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [1.7,) - - regex-property - timestamp-property - - - - - true - - - - - - - - - - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 deleted file mode 100644 index a9220e00953ccbe910b9e793fa642e749b9661a5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e44bcfab62cbf0ad4f15a47aa9cc48368db2dc6d \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/_remote.repositories b/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/_remote.repositories deleted file mode 100644 index d6113f60813922d49da58e08966f5d179c2c122b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:06 CST 2019 -aether-1.0.2.v20150114.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom b/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom deleted file mode 100644 index b53095d87507aebc1a221441f319e5d9aa0c7f89..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom +++ /dev/null @@ -1,802 +0,0 @@ - - - - - - 4.0.0 - - org.eclipse.aether - aether - 1.0.2.v20150114 - pom - - Aether - - The parent and aggregator for the repository system. - - http://www.eclipse.org/aether/ - 2010 - - - The Eclipse Foundation - http://www.eclipse.org/ - - - - - Aether Developer List - https://dev.eclipse.org/mailman/listinfo/aether-dev - https://dev.eclipse.org/mailman/listinfo/aether-dev - aether-dev@eclipse.org - http://dev.eclipse.org/mhonarc/lists/aether-dev/ - - - Aether User List - https://dev.eclipse.org/mailman/listinfo/aether-users - https://dev.eclipse.org/mailman/listinfo/aether-users - aether-users@eclipse.org - http://dev.eclipse.org/mhonarc/lists/aether-users/ - - - Aether Commit Notification List - https://dev.eclipse.org/mailman/listinfo/aether-commit - https://dev.eclipse.org/mailman/listinfo/aether-commit - http://dev.eclipse.org/mhonarc/lists/aether-commit/ - - - Aether CI Notification List - https://dev.eclipse.org/mailman/listinfo/aether-build - https://dev.eclipse.org/mailman/listinfo/aether-build - http://dev.eclipse.org/mhonarc/lists/aether-build/ - - - - - scm:git:git://git.eclipse.org/gitroot/aether/aether-core.git - scm:git:ssh://git.eclipse.org/gitroot/aether/aether-core.git - http://git.eclipse.org/c/aether/aether-core.git/tree/ - - - - bugzilla - https://bugs.eclipse.org/bugs/buglist.cgi?query_format=specific&bug_status=__open__&product=Aether - - - - Hudson - https://hudson.eclipse.org/aether/job/aether-core/ - - - - - sonatype-nexus-staging - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - ${sonatypeOssDistMgmtSnapshotsId} - ${sonatypeOssDistMgmtSnapshotsUrl} - - - - - - Eclipse Public License, Version 1.0 - http://www.eclipse.org/legal/epl-v10.html - repo - - - - - - bbentmann - Benjamin Bentmann - - Project Lead - - - - jvanzyl - Jason Van Zyl - - Project Lead - - - - - - - aether-api - aether-spi - aether-util - aether-impl - aether-test-util - aether-connector-basic - aether-transport-classpath - aether-transport-file - aether-transport-http - aether-transport-wagon - - - - J2SE-1.5 - Eclipse Aether - UTF-8 - UTF-8 - true - sonatype-nexus-snapshots - https://oss.sonatype.org/content/repositories/snapshots/ - - - - - - org.eclipse.aether - aether-api - ${project.version} - - - org.eclipse.aether - aether-spi - ${project.version} - - - org.eclipse.aether - aether-util - ${project.version} - - - org.eclipse.aether - aether-impl - ${project.version} - - - org.eclipse.aether - aether-connector-basic - ${project.version} - - - org.eclipse.aether - aether-test-util - ${project.version} - test - - - - junit - junit - 4.11 - test - - - org.hamcrest - hamcrest-core - 1.3 - test - - - org.hamcrest - hamcrest-library - 1.3 - test - - - - javax.inject - javax.inject - 1 - provided - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - provided - - - - org.eclipse.sisu - org.eclipse.sisu.inject - 0.1.1 - - - org.eclipse.sisu - org.eclipse.sisu.plexus - 0.1.1 - - - javax.enterprise - cdi-api - - - - - org.sonatype.sisu - sisu-guice - 3.1.6 - no_aop - - - aopalliance - aopalliance - - - com.google.code.findbugs - jsr305 - - - - - - org.slf4j - slf4j-api - 1.6.2 - - - - - - - - - org.apache.felix - maven-bundle-plugin - 2.4.0 - - - ${project.url} - ${project.name} - ${bundle.env} - ${bundle.symbolicName} - ${bundle.vendor} - ${bundle.osgiVersion} - org.eclipse.aether.internal.*;x-internal:=true,org.eclipse.aether.* - - - - - create-manifest - process-test-classes - - manifest - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - 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.5 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.2 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.2 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - - 2.3.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - false - - http://download.oracle.com/javase/6/docs/api/ - - - - noextend - a - Restriction: - - - noimplement - a - Restriction: - - - noinstantiate - a - Restriction: - - - nooverride - a - Restriction: - - - noreference - a - Restriction: - - - provisional - a - Provisional: - - - - - API - org.eclipse.aether* - - - SPI - org.eclipse.aether.spi* - - - Utilities - org.eclipse.aether.util* - - - Repository Connectors - org.eclipse.aether.connector* - - - Transporters - org.eclipse.aether.transport* - - - Implementation - org.eclipse.aether.impl* - - - Internals - org.eclipse.aether.internal* - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - true - forked-path - false - deploy javadoc:aggregate-jar assembly:attached - -Psonatype-oss-release - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - org.apache.maven.plugins - maven-site-plugin - 3.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - - 2 - ${project.name} Sources - http://www.eclipse.org/legal/epl-v10.html - ${bundle.env} - ${bundle.symbolicName}.source - ${bundle.vendor} - ${bundle.osgiVersion} - ${bundle.symbolicName};version="${bundle.osgiVersion}";roots:="." - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.9 - - -Xmx128m - ${surefire.redirectTestOutputToFile} - - ${project.build.directory}/surefire-tmp - - - - - 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.codehaus.mojo - clirr-maven-plugin - 2.3 - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - generate-components-xml - process-classes - - generate-metadata - - - - - - org.eclipse.sisu - sisu-maven-plugin - 0.0.0.M2 - - - generate-index - process-classes - - main-index - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - qa - verify - - enforce - - - - - - project.version - [0-9]+\.[0-9]+\.[0-9]+((.*-SNAPSHOT)|(\.M[0-9]+)|(\.RC[0-9]+)|(\.v[0-9]{8})) - Project version must be either X.Y.Z.M#, X.Y.Z.RC# or X.Y.Z.v######## - - - - true - - *:* - - - org.eclipse.aether - org.eclipse.sisu - org.eclipse.jetty:*:*:*:test - - org.slf4j:slf4j-api:[1.6.2] - - org.codehaus.plexus:plexus-component-annotations:[1.5.5] - - org.codehaus.plexus:plexus-utils:[2.1] - - org.codehaus.plexus:plexus-classworlds:[2.4] - - org.apache.maven.wagon:wagon-provider-api:[1.0] - - org.sonatype.sisu:sisu-guice:[3.1.6] - - com.google.guava:guava:[11.0.2] - - javax.inject:javax.inject:[1] - - org.apache.httpcomponents:httpclient:[4.2.6] - - org.apache.httpcomponents:httpcore:[4.2.5] - - commons-codec:commons-codec:[1.6] - - org.slf4j:jcl-over-slf4j:[1.6.2] - - junit:junit:[4.11]:*:test - org.hamcrest:hamcrest-core:[1.3]:*:test - org.hamcrest:hamcrest-library:[1.3]:*:test - com.googlecode.jmockit:jmockit:[1.3]:*:test - ch.qos.logback:logback-core:[1.0.7]:*:test - ch.qos.logback:logback-classic:[1.0.7]:*:test - org.eclipse.jetty.orbit:javax.servlet:[2.5.0.v201103041518]:*:test - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - osgi-timestamp - initialize - - timestamp-property - - - bundle.osgiTimestamp - yyyyMMdd-HHmm - UTC - en - - - - osgi-version - initialize - - regex-property - - - bundle.osgiVersion - ${project.version} - -SNAPSHOT - .${bundle.osgiTimestamp} - false - - - - - - - - - - sonatype-oss-release - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - package - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - package - - jar - - - - default-cli - - false - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.2 - - - - - attach-source-release-distro - package - - single - - - true - - source-release - - gnu - - - - default-cli - - false - - src/main/assembly/bin.xml - - - - - - - - - - snapshot-sources - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - - - clirr - - - - org.codehaus.mojo - clirr-maven-plugin - - - check-api-compat - verify - - check-no-fork - - - - - - - - - m2e - - - m2e.version - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.eclipse.sisu - sisu-maven-plugin - [0.0.0.M2,) - - test-index - main-index - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [1.7,) - - regex-property - timestamp-property - - - - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - $(replace;${project.version};-SNAPSHOT;.qualifier) - - - - - - - - - diff --git a/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom.sha1 b/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom.sha1 deleted file mode 100644 index 86d07da4f76864eef0b30472dbe314fca62984e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ec17511fdf4fe911e5b174b1490c2a1876657511 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/_remote.repositories b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/_remote.repositories deleted file mode 100644 index 4af06bc3bb5fce2199d577219de0e08b199474ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -org.eclipse.sisu.inject-0.0.0.M5.jar>repo.jenkins-ci.org= -org.eclipse.sisu.inject-0.0.0.M5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar deleted file mode 100644 index 763695e13f65965b9dfab4d3f51e89e80ca4b099..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar.sha1 deleted file mode 100644 index 0a174b93b81d9e276e56e709ce6956dde7bf5485..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f6bda3f528c60a12e70db2e7a3feee539dcc8cd \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom deleted file mode 100644 index a17f8203ca1b664fb7d7f9e67cf2f92d18c95604..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.sisu - sisu-inject - 0.0.0.M5 - - - org.eclipse.sisu.inject - eclipse-plugin - - - - - com.google.inject - guice - 3.0 - - - - - src - - - org.codehaus.mojo - build-helper-maven-plugin - 1.8 - - - 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.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom.sha1 deleted file mode 100644 index 3bfd5e06976b19c026d22d02daee5d2569d4e9dc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6780f0971747b219dfa7f290deb58bbd72840361 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/_remote.repositories b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/_remote.repositories deleted file mode 100644 index 0bea61e64e0c6e20e9661391234fd9e005b9d3e2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -org.eclipse.sisu.plexus-0.0.0.M5.jar>repo.jenkins-ci.org= -org.eclipse.sisu.plexus-0.0.0.M5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar deleted file mode 100644 index 40c149ece839421748f971010692c734278fb448..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar and /dev/null differ diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar.sha1 deleted file mode 100644 index 3d88386503d3fba8cc52236c9f1bafc15eb2cc4e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8818cc5a4d2afde2fbc87c2a78cf1ebf5719a869 \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom deleted file mode 100644 index 343422ad49d7cf560d3ee26cbe35458e598df379..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - 4.0.0 - - - org.eclipse.sisu - sisu-plexus - 0.0.0.M5 - - - org.eclipse.sisu.plexus - eclipse-plugin - - - - - org.slf4j - slf4j-api - 1.6.4 - true - - - - javax.enterprise - cdi-api - 1.0 - - - javax.el - el-api - - - org.jboss.ejb3 - jboss-ejb3-api - - - org.jboss.interceptor - jboss-interceptor-api - - - - - - com.google.guava - guava - 10.0.1 - - - org.sonatype.sisu - sisu-guice - 3.1.0 - no_aop - - - org.sonatype.sisu - sisu-guava - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - ${project.version} - - - com.google.inject - guice - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - - - org.codehaus.plexus - plexus-classworlds - 2.4 - - - org.codehaus.plexus - plexus-utils - 2.1 - - - junit - junit - 4.10 - true - - - - - src - - - org.codehaus.mojo - build-helper-maven-plugin - 1.8 - - - 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.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom.sha1 b/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom.sha1 deleted file mode 100644 index bea3b9b45c7d4e7fb69cd279f38c7fe8d9e28e39..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e76bb6500f462be0edc92013e6b6c76cbd9bf06d \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/_remote.repositories b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/_remote.repositories deleted file mode 100644 index 4cdd3e2776a1cf8b3743e41270c9272b8f1cc2be..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:56 CST 2019 -sisu-inject-0.0.0.M5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom deleted file mode 100644 index 7eb5d93e6830599ed7b8b3a7aa008fa0f0e8ad7d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - org.eclipse.sisu - sisu-inject - 0.0.0.M5 - 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 - - - - 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/hudson/job/sisu-inject-nightly/ - - - - 1.5 - 1.5 - scm:git:http://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.inject.git - 0.18.1 - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.9 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - javax.annotation.processing.* - javax.lang.model.* - javax.tools.* - - - - - check-java5 - package - - check - - - - - - maven-enforcer-plugin - 1.3 - - - - 1.5 - - - - - - org.codehaus.mojo - extra-enforcer-rules - 1.0-alpha-5 - - - - - 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-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.5 - - - maven-resources-plugin - 2.6 - - - maven-compiler-plugin - 3.1 - - - maven-surefire-plugin - 2.14.1 - - - org.jacoco - jacoco-maven-plugin - 0.6.3.201306030806 - - - maven-jar-plugin - 2.4 - - - maven-install-plugin - 2.4 - - - maven-deploy-plugin - 2.7 - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.4.4 - - - maven-release-plugin - 2.4.1 - - true - - - - maven-javadoc-plugin - 2.9.1 - - - com.google.doclava - doclava - 1.0.5 - - com.google.doclava.Doclava - - ${sun.boot.class.path} - *.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 - -hdf project.name "${project.name}" - -overview ${basedir}/overview.html - -templatedir ${basedir}/../doclava-style - -d ${project.build.directory}/apidocs - - false - - -J-Xmx1024m - - - - maven-site-plugin - 3.3 - - - - - - - - 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.4 - - ${gpg.passphrase} - true - - - - maven-javadoc-plugin - 2.9.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.0.0.M5/sisu-inject-0.0.0.M5.pom.sha1 b/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom.sha1 deleted file mode 100644 index a832ce76cf659e0edc724e480e7c70a16efe6f48..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bc5f4bf9addfe6b4833dbb1ec3e489f89ac1822a \ No newline at end of file diff --git a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/_remote.repositories b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/_remote.repositories deleted file mode 100644 index 7df0cdda3947db95336e9feb1c5eff55109f461b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:45 CST 2019 -sisu-plexus-0.0.0.M5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom deleted file mode 100644 index a64782b722dffa27cf7f9084b6d4c35c3ec911ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.oss - oss-parent - 7 - - - org.eclipse.sisu - sisu-plexus - 0.0.0.M5 - 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 - - - - org.eclipse.sisu.plexus - 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/hudson/job/sisu-plexus-nightly/ - - - - 1.5 - 1.5 - scm:git:http://git.eclipse.org/gitroot/sisu/org.eclipse.sisu.plexus.git - 0.18.1 - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.9 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - check-java5 - package - - check - - - - - - maven-enforcer-plugin - 1.3 - - - - 1.5 - - - - - - org.codehaus.mojo - extra-enforcer-rules - 1.0-alpha-5 - - - - - 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-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.5 - - - maven-resources-plugin - 2.6 - - - maven-compiler-plugin - 3.1 - - - maven-dependency-plugin - 2.8 - - - maven-surefire-plugin - 2.14.1 - - - maven-jar-plugin - 2.4 - - - maven-install-plugin - 2.4 - - - maven-deploy-plugin - 2.7 - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.4.4 - - - maven-release-plugin - 2.4.1 - - true - - - - maven-javadoc-plugin - 2.9.1 - - - com.google.doclava - doclava - 1.0.5 - - com.google.doclava.Doclava - - ${sun.boot.class.path} - *.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-style - -d ${project.build.directory}/apidocs - - false - - -J-Xmx1024m - - - - maven-site-plugin - 3.3 - - - - - - - - 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.4 - - ${gpg.passphrase} - true - - - - maven-javadoc-plugin - 2.9.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.0.0.M5/sisu-plexus-0.0.0.M5.pom.sha1 b/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom.sha1 deleted file mode 100644 index 2653b1093135dc36c9ab0a55d9a886683880d014..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b7fc9ef028fe09ad8f0908eada9f6b76558de1a2 \ No newline at end of file diff --git a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/_remote.repositories b/artifacts/m2/org/hamcrest/hamcrest-core/1.3/_remote.repositories deleted file mode 100644 index aac01118748266143413e7bf031f676a2f78aef7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -hamcrest-core-1.3.jar>repo.jenkins-ci.org= -hamcrest-core-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar b/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar deleted file mode 100644 index 9d5fe16e3dd37ebe79a36f61f5d0e1a69a653a8a..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar and /dev/null differ diff --git a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar.sha1 b/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar.sha1 deleted file mode 100644 index 1085ece454c99ae8af66d80895242f89e31b89a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -42a25dc3219429f0e5d060061f71acb49bf010a0 \ No newline at end of file diff --git a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom b/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom deleted file mode 100644 index f37ce22a1c71ad50623e2b8903bc7a86fb193a20..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +++ /dev/null @@ -1,18 +0,0 @@ - - - 4.0.0 - - - org.hamcrest - hamcrest-parent - 1.3 - - - hamcrest-core - jar - Hamcrest Core - - This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations. - - diff --git a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom.sha1 b/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom.sha1 deleted file mode 100644 index 53d5f15b56c50c19e5c6110db95e5bb55c384885..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -872e413497b906e7c9fa85ccc96046c5d1ef7ece \ No newline at end of file diff --git a/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/_remote.repositories b/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/_remote.repositories deleted file mode 100644 index 27fdf760c984e50b994d1b9dab63df24befbea1b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:40 CST 2019 -hamcrest-parent-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom b/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom deleted file mode 100644 index df2698b88b41d77a0ce1480e4080848980640400..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +++ /dev/null @@ -1,72 +0,0 @@ - - - 4.0.0 - - org.hamcrest - hamcrest-parent - 1.3 - pom - - Hamcrest Maven Parent - https://github.com/hamcrest/JavaHamcrest - General parent POM for all hamcrest libraries. - - - - New BSD License - http://www.opensource.org/licenses/bsd-license.php - repo - - - - - https://github.com/hamcrest/JavaHamcrest - scm:git:git@github.com:hamcrest/JavaHamcrest.git - - - - - joe.walnes - Joe Walnes - - Developer - - - - nat.pryce - Nat Pryce - - Developer - - - - smgfreeman - Steve Freeman - - Developer - - - - neildunn - Neil Dunn - - Developer - - - - scarytom - Tom Denley - - Developer - - - - - - hamcrest-core - hamcrest-generator - hamcrest-library - hamcrest-integration - - diff --git a/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom.sha1 b/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom.sha1 deleted file mode 100644 index c5c5f185ebd8f1613510b51fcfcfa186aad23edb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -80391bd32bfa4837a15215d5e9f07c60555c379a \ No newline at end of file diff --git a/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/_remote.repositories b/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/_remote.repositories deleted file mode 100644 index 06faf9819cdb09a2120e32fedb8a2292c0074d8b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:26 CST 2019 -hibernate-validator-parent-5.2.4.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/hibernate-validator-parent-5.2.4.Final.pom b/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/hibernate-validator-parent-5.2.4.Final.pom deleted file mode 100644 index ac5e3be98d319b891f285d42aef92e2e71176dd9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/hibernate-validator-parent-5.2.4.Final.pom +++ /dev/null @@ -1,781 +0,0 @@ - - - - 4.0.0 - - org.hibernate - hibernate-validator-parent - 5.2.4.Final - pom - - Hibernate Validator Aggregator - http://hibernate.org/validator - Aggregator of the Hibernate Validator modules. - - - - epbernard - Emmanuel Bernard - emmanuel@hibernate.org - JBoss, by Red Hat - http://in.relation.to/Bloggers/Emmanuel - - - hardy.ferentschik - Hardy Ferentschik - hferents@redhat.com - JBoss, by Red Hat - http://in.relation.to/Bloggers/Hardy - - - gunnar.morling - Gunnar Morling - gunnar.morling@googlemail.com - JBoss, by Red Hat - http://musingsofaprogrammingaddict.blogspot.com/ - - - kevinpollet - Kevin Pollet - kevin.pollet@serli.com - SERLI - http://www.serli.com - - - - - - George Gastaldi - gegastaldi@gmail.com - - - - - - hibernate-dev - hibernate-dev@lists.jboss.org - - - - - test-utils - engine - engine-jdk8-tests - cdi - tck-runner - integration - annotation-processor - performance - osgi - - - - - UTF-8 - src/main/build-config/java.header - - true - - - 1.0-beta-3 - 1.1.0.Final - 1.1.0 - 2.5.5 - 2.7 - 1.8.3 - 10.0.0.CR5 - 1.1.9.Final - 1.7.2 - 3.2.1.Final - 2.2.4 - 1.2.0.Final - - - - 3.0.3 - - - - - - org.hibernate - hibernate-validator - ${project.version} - - - org.hibernate - hibernate-validator-test-utils - ${project.version} - - - org.hibernate - hibernate-validator-cdi - ${project.version} - - - org.hibernate - hibernate-validator-annotation-processor - ${project.version} - - - 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} - - - - javax.el - javax.el-api - ${javax.el.version} - - - org.glassfish.web - javax.el - ${javax.el.version} - - - com.fasterxml - classmate - ${classmate.version} - - - joda-time - joda-time - ${joda-time.version} - - - org.jsoup - jsoup - ${jsoup.version} - - - log4j - log4j - 1.2.17 - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-log4j12 - ${slf4j.version} - - - org.hibernate.javax.persistence - hibernate-jpa-2.1-api - 1.0.0.Final - - - junit - junit - 4.11 - - - org.testng - testng - 6.8 - - - org.codehaus.groovy - groovy-jsr223 - 2.4.1 - - - org.easymock - easymock - 3.1 - - - org.easytesting - fest-assert - 1.4 - - - org.jboss.arquillian - arquillian-bom - ${arquillian.version} - pom - import - - - javax.annotation - javax.annotation-api - 1.2 - - - 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 - 1.0.0.Final - - - javax.enterprise - cdi-api - 1.2 - - - org.jboss.weld - weld-core - 2.3.0.CR2 - - - org.wildfly.arquillian - wildfly-arquillian-container-managed - 1.0.1.Final - - - sun.jdk - jconsole - - - - - org.jboss.arquillian.container - arquillian-weld-se-embedded-1.1 - 1.0.0.CR9 - - - com.thoughtworks.paranamer - paranamer - ${paranamer.version} - - - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0.1 - - - enforce-java - - enforce - - - - - - - [1.8.0-20,) - - - 3.0.3 - - - - - - - - - org.apache.maven.plugins - maven-clean-plugin - 2.5 - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - ${project.artifactId} - ${project.version} - ${project.parent.groupId} - ${project.parent.groupId} - http://validator.hibernate.org - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - 1.6 - 1.6 - -parameters - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.14 - - - - org.slf4j - jcl-over-slf4j - 1.7.5 - - - org.slf4j - slf4j-jdk14 - 1.7.5 - - - - src/main/build-config/checkstyle.xml - true - true - error - false - true - - - **/org/hibernate/validator/internal/xml/*.java, - **/Log_$logger.java, - **/Messages_$bundle.java, - **/ConcurrentReferenceHashMap.java, - **/TypeHelper*.java, - **/TypeAnnotationAwareMetaDataProviderTest.java, - **/TypeAnnotationConstraintTest.java, - **/UnwrapModesTest.java - - - - - check-style - verify - - checkstyle - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.11 - - - - - org.ow2.asm - asm-all - 5.0.3 - - - - - org.codehaus.mojo.signature - java16 - 1.0 - - - org.hibernate.validator.internal.util.IgnoreJava6Requirement - - - - - check-java-api-signature - verify - - check - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.15 - - once - true - - **/*Test.java - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.12 - - - generate-test-report - test - - report-only - - - - - ${project.build.directory}/surefire-reports - test-report - - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18.1 - - - integration-test - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.3 - - - org.apache.maven.plugins - maven-release-plugin - 2.5.1 - - clean install - true - true - false - true - @{project.version} - docbook - - - - org.codehaus.mojo - exec-maven-plugin - 1.2.1 - - - org.codehaus.mojo - jaxb2-maven-plugin - 1.3.1 - - - org.jboss.maven.plugins - maven-jdocbook-plugin - 2.3.9 - true - - - org.jboss.pressgang - pressgang-xslt-ns - 3.1.3 - - - org.hibernate - hibernate-jdocbook-style - 3.0.0 - jdocbook-style - - - - - org.asciidoctor - asciidoctor-maven-plugin - 1.5.2 - - index.asciidoc - book - - ${project.version} - ${bv.api.version} - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.0.1 - - - org.apache.felix - maven-bundle-plugin - 2.5.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - true - ${project.basedir}/../src/main/javadoc - stylesheet.css - - Red Hat, Inc. All Rights Reserved]]> - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - - org.jboss.maven.plugins - maven-injection-plugin - 1.0.2 - - - org.zanata - zanata-maven-plugin - 1.3 - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - false - - ${*} - - - - - org.codehaus.mojo - chronos-jmeter-maven-plugin - ${org.codehaus.mojo.chronos.version} - - - org.codehaus.gmaven - gmaven-plugin - 1.4 - - - org.apache.servicemix.tooling - depends-maven-plugin - 1.2 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.8 - - - - org.codehaus.mojo - clirr-maven-plugin - 2.5 - - 5.2.1.Final - - org/hibernate/validator/internal/** - - true - info - - - - - 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.gmaven - - - gmaven-plugin - - - [1.4,) - - - execute - - - - - - - - - org.apache.servicemix.tooling - depends-maven-plugin - [1.2,) - - generate-depends-file - - - - - - - - - - - - - - - - Hudson - http://hudson.qa.jboss.com/hudson/job/beanvalidation - - - - JIRA - http://opensource.atlassian.com/projects/hibernate/browse/HV - - - 2007 - - - - Apache License, Version 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 - 5.2.4.Final - - - - - 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 - - - - documentation - - - - dist - - - disableDistributionBuild - !true - - - - distribution - - - - diff --git a/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/hibernate-validator-parent-5.2.4.Final.pom.sha1 b/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/hibernate-validator-parent-5.2.4.Final.pom.sha1 deleted file mode 100644 index b1beea4e2ab6734cb30eefdafe34a308e8540632..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator-parent/5.2.4.Final/hibernate-validator-parent-5.2.4.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cd5e77726ff03e13ebc4678e614625365f862abc \ No newline at end of file diff --git a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/_remote.repositories b/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/_remote.repositories deleted file mode 100644 index e2e2f638c8466e2919d75ba9a55d7968a4e8e372..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -hibernate-validator-5.2.4.Final.pom>repo.jenkins-ci.org= -hibernate-validator-5.2.4.Final.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar b/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar deleted file mode 100644 index 6fa36e7479cc1188b39a8238d3ad37b840dacc18..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar and /dev/null differ diff --git a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar.sha1 b/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar.sha1 deleted file mode 100644 index 5e4a511e1816e2b31255b8db522885e2cd165e59..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -fb18766b576aa6632bcfe9a20a023cbd52bf9769 \ No newline at end of file diff --git a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.pom b/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.pom deleted file mode 100644 index c2201c138cd13d39f68807e2a1371f3c8be46239..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.pom +++ /dev/null @@ -1,303 +0,0 @@ - - - - 4.0.0 - - - hibernate-validator-parent - org.hibernate - 5.2.4.Final - ../pom.xml - - - hibernate-validator - - Hibernate Validator Engine - Hibernate's Bean Validation (JSR-303) reference implementation. - - - - site - http://hibernate.org/validator - - - - - - - javax.validation - validation-api - - - org.jboss.logging - jboss-logging - - - com.fasterxml - classmate - - - - - javax.el - javax.el-api - provided - - - org.glassfish.web - javax.el - provided - - - org.jboss.logging - jboss-logging-processor - - provided - - - - - org.hibernate.javax.persistence - hibernate-jpa-2.1-api - true - - - joda-time - joda-time - true - - - org.jsoup - jsoup - true - - - com.thoughtworks.paranamer - paranamer - true - - - - - org.testng - testng - test - - - org.hibernate - hibernate-validator-test-utils - test - - - log4j - log4j - test - - - org.easymock - easymock - test - - - org.codehaus.groovy - groovy-jsr223 - test - - - org.easytesting - fest-assert - test - - - - - test - - - src/main/resources - - - src/main/xsd - META-INF - - - - - true - src/test/resources - - META-INF/services/* - **/*.properties - **/*.xml - - - - - - org.codehaus.mojo - jaxb2-maven-plugin - - - - xjc - - - - - org.hibernate.validator.internal.xml - true - validation-configuration-1.1.xsd,validation-mapping-1.1.xsd - - - - javax.xml.bind - jaxb-api - 2.2.5 - - - com.sun.xml.bind - jaxb-impl - 2.1.13 - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.apache.maven.plugins - maven-jar-plugin - - - default-jar - package - - jar - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - Bean Validation - 1.1 - - - - - - - - org.apache.felix - maven-bundle-plugin - - - - javax.persistence.*;version="[2.0.0,3.0.0)";resolution:=optional, - javax.validation.*;version="[1.0.0,2.0.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="[${classmate.version},2.0.0)", - org.joda.time.*;version="[1.6.0,2.0.0)";resolution:=optional, - org.jsoup.*;version="[1.5.2,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.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}", - org.hibernate.validator.valuehandling;version="${project.version}", - - - - - - bundle-manifest - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - ${basedir}/src/test/suite/unit-tests.xml - - methods - 4 - - - - org.apache.maven.plugins - maven-surefire-report-plugin - - - org.apache.maven.plugins - maven-release-plugin - - - org.jboss.maven.plugins - maven-injection-plugin - - - compile - - bytecode - - - - - - - ${project.version} - - - org.hibernate.validator.internal.util.Version - getVersionString - - - - - - - - - diff --git a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.pom.sha1 b/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.pom.sha1 deleted file mode 100644 index 48a59bbe1bc8d9ed2d31bfbe711cc3a36125a143..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/hibernate/hibernate-validator/5.2.4.Final/hibernate-validator-5.2.4.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4bb1e8b0ef8bb417460a1acad9be8f5b6641a9b7 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/_remote.repositories b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/_remote.repositories deleted file mode 100644 index a29b841ac4448f6f73a3176d9cbbbe82c305a2bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:03 CST 2019 -jacoco-maven-plugin-0.8.2.jar>repo.jenkins-ci.org= -jacoco-maven-plugin-0.8.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar deleted file mode 100644 index 8d729ffdbb9fa5529f724cf303aa2454b05c931b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar.sha1 b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar.sha1 deleted file mode 100644 index e80340f89744296a0dfe7f61ab1a4fe30fbe7c4f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ac2b37043d7761aa9382ac0a461a3691e80bb866 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom deleted file mode 100644 index 02288571a808f507e076cc16c28d788b64c92111..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom +++ /dev/null @@ -1,152 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.2 - ../org.jacoco.build - - - jacoco-maven-plugin - maven-plugin - - JaCoCo :: Maven Plugin - The JaCoCo Maven Plugin provides the JaCoCo runtime agent to your tests and allows basic report creation. - - - 2.2.1 - - - - - - - org.apache.maven.reporting - maven-reporting-impl - 2.1 - - - commons-collections - commons-collections - 3.2.2 - - - - - - - org.apache.maven - maven-plugin-api - ${project.prerequisites.maven} - - - org.apache.maven - maven-project - ${project.prerequisites.maven} - - - org.codehaus.plexus - plexus-utils - 3.0.22 - - - org.apache.maven.shared - file-management - 1.2.1 - - - - org.apache.maven.reporting - maven-reporting-api - ${project.prerequisites.maven} - - - org.apache.maven.reporting - maven-reporting-impl - - - - ${project.groupId} - org.jacoco.agent - runtime - - - ${project.groupId} - org.jacoco.core - - - ${project.groupId} - org.jacoco.report - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.4 - - provided - - - - - src - - - META-INF - META-INF - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - - org.apache.maven.plugin-tools - maven-plugin-tools-javadoc - 2.8 - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - default-descriptor - process-classes - - - help-goal - - helpmojo - - - - report - package - - report - - - - - - - diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom.sha1 b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom.sha1 deleted file mode 100644 index de3247aae78d50ac1cdbd66d02e8511d178ccc6f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5beb5320f58ebf1d7deb176d5b245c36e44dba09 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/_remote.repositories b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/_remote.repositories deleted file mode 100644 index 8d18b740962bcde8195a9012eec5d14e01039443..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:31 CST 2019 -jacoco-maven-plugin-0.8.3.jar>repo.jenkins-ci.org= -jacoco-maven-plugin-0.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.jar b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.jar deleted file mode 100644 index 40052b6ad16f24fb5baa49a8c97e6dafbbc553f6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.jar.sha1 b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.jar.sha1 deleted file mode 100644 index f90bad188536d72f1f2c835d1603e472a5968a6b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -80554f602a164b57a53f961001fadba987305f60 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.pom b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.pom deleted file mode 100644 index 988c0f9ac542023ebceda7955238ce051f24ee71..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.pom +++ /dev/null @@ -1,139 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.3 - ../org.jacoco.build - - - jacoco-maven-plugin - maven-plugin - - JaCoCo :: Maven Plugin - The JaCoCo Maven Plugin provides the JaCoCo runtime agent to your tests and allows basic report creation. - - - 3.0 - - - - - - - org.apache.maven.reporting - maven-reporting-impl - 2.1 - - - commons-collections - commons-collections - 3.2.2 - - - - - - - org.apache.maven - maven-plugin-api - ${project.prerequisites.maven} - - - org.apache.maven - maven-core - ${project.prerequisites.maven} - - - org.codehaus.plexus - plexus-utils - 3.0.22 - - - org.apache.maven.shared - file-management - 1.2.1 - - - - org.apache.maven.reporting - maven-reporting-api - ${project.prerequisites.maven} - - - org.apache.maven.reporting - maven-reporting-impl - - - - ${project.groupId} - org.jacoco.agent - runtime - - - ${project.groupId} - org.jacoco.core - - - ${project.groupId} - org.jacoco.report - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.4 - - provided - - - - - src - - - META-INF - META-INF - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - default-descriptor - process-classes - - - help-goal - - helpmojo - - - - report - package - - report - - - - - - - diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.pom.sha1 b/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.pom.sha1 deleted file mode 100644 index c3d6fde652ac694b9dd2e195f7862df0f3184470..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/0.8.3/jacoco-maven-plugin-0.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5470744cfff067d0fe46559be9b39bca9e0011c3 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-central.xml b/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-central.xml deleted file mode 100644 index cdb97086abc60959d0902aef545722e90356f870..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-central.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - org.jacoco - jacoco-maven-plugin - - 0.8.3 - 0.8.3 - - 0.5.3.201107060350 - 0.5.4.201111111111 - 0.5.5.201112152213 - 0.5.6.201201232323 - 0.5.7.201204190339 - 0.5.8.201207111220 - 0.5.9.201207300726 - 0.5.10.201208310627 - 0.6.0.201210061924 - 0.6.1.201212231917 - 0.6.2.201302030002 - 0.6.3.201306030806 - 0.6.4.201312101107 - 0.6.5.201403032054 - 0.7.0.201403182114 - 0.7.1.201405082137 - 0.7.2.201409121644 - 0.7.3.201502191951 - 0.7.4.201502262128 - 0.7.5.201505241946 - 0.7.6.201602180812 - 0.7.7.201606060606 - 0.7.8 - 0.7.9 - 0.8.0 - 0.8.1 - 0.8.2 - 0.8.3 - - 20190124122808 - - diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-central.xml.sha1 b/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-central.xml.sha1 deleted file mode 100644 index 05d6fef18967ca0ec523e513fa5473d05ae4ebd9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-central.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -a1d31ad6988771c3098f2cf941e3cfc0a11a4513 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-repo.jenkins-ci.org.xml b/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-repo.jenkins-ci.org.xml deleted file mode 100644 index 3dc4bdc6e65acf9bb94c64bf4eeb8d79fb1946f9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-repo.jenkins-ci.org.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - org.jacoco - jacoco-maven-plugin - - 0.8.3 - 0.8.3 - - 0.5.3.201107060350 - 0.5.4.201111111111 - 0.5.5.201112152213 - 0.5.6.201201232323 - 0.5.7.201204190339 - 0.5.8.201207111220 - 0.5.9.201207300726 - 0.5.10.201208310627 - 0.6.0.201210061924 - 0.6.1.201212231917 - 0.6.2.201302030002 - 0.6.3.201306030806 - 0.6.4.201312101107 - 0.6.5.201403032054 - 0.7.0.201403182114 - 0.7.1.201405082137 - 0.7.2.201409121644 - 0.7.3.201502191951 - 0.7.4.201502262128 - 0.7.5.201505241946 - 0.7.6.201602180812 - 0.7.7.201606060606 - 0.7.8 - 0.7.9 - 0.8.0 - 0.8.1 - 0.8.2 - 0.8.3 - - 20190124130222 - - diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-repo.jenkins-ci.org.xml.sha1 b/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-repo.jenkins-ci.org.xml.sha1 deleted file mode 100644 index a8a188d5c9dd68753a86e4afd74aa75e13e36223..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/maven-metadata-repo.jenkins-ci.org.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -6eba2d5b005dddb4798f93270f4fb3f13f9ace11 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/jacoco-maven-plugin/resolver-status.properties b/artifacts/m2/org/jacoco/jacoco-maven-plugin/resolver-status.properties deleted file mode 100644 index cb53d41bbbd12c18fd51df5d441012dcb9598ef4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/jacoco-maven-plugin/resolver-status.properties +++ /dev/null @@ -1,8 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:26 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554358826340 -maven-metadata-central.xml.lastUpdated=1554358826644 -maven-metadata-spring-milestones.xml.lastUpdated=1554358823990 -maven-metadata-spring-snapshots.xml.error= -maven-metadata-spring-milestones.xml.error= -maven-metadata-spring-snapshots.xml.lastUpdated=1554358826641 diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/_remote.repositories deleted file mode 100644 index 94f594a8889d918e717a34110ce41bdc28553b36..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -org.jacoco.agent-0.8.2.pom>repo.jenkins-ci.org= -org.jacoco.agent-0.8.2-runtime.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar deleted file mode 100644 index 7e0debd0703dc971ea3ab035373893e450137bec..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar.sha1 b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar.sha1 deleted file mode 100644 index 9a86ceccf07de6fd55d3458c89a4e02bea44d50f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4806883004063feb978b8811f00d5ea2138750bb \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom deleted file mode 100644 index 9fc9d6e9473c9b2e51bdfcfd866145b9073379ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom +++ /dev/null @@ -1,105 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.2 - ../org.jacoco.build - - - org.jacoco.agent - - JaCoCo :: Agent - JaCoCo Agent - - - src - - - - org.apache.maven.plugins - maven-dependency-plugin - - - prepare-package - - copy - - - - - ${project.groupId} - org.jacoco.agent.rt - all - ${project.version} - jacocoagent.jar - - - ${project.build.directory}/classes - false - false - true - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/classes/jacocoagent.jar - jar - runtime - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom.sha1 deleted file mode 100644 index 7c310b33a039ab57976a85533ff7710c5bb8f91e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2d3fd0ef4a11fa57f90572797116ca7dd8d6c900 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/_remote.repositories deleted file mode 100644 index c43c06bf50da7790c2a29c8a34c95bdaae601b9c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -org.jacoco.agent-0.8.3.pom>repo.jenkins-ci.org= -org.jacoco.agent-0.8.3-runtime.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3-runtime.jar b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3-runtime.jar deleted file mode 100644 index 0b25a00ffa189180e2a1c861521b3d08b9640568..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3-runtime.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3-runtime.jar.sha1 b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3-runtime.jar.sha1 deleted file mode 100644 index 3a2dbe3841ea4ac2a203b31d1bbf9845294424f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3-runtime.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -edd294e541c8176d55768ba4b8bcb1bb267d18f4 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3.pom b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3.pom deleted file mode 100644 index 698db2a083b98358c499af19a64486abbca45313..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3.pom +++ /dev/null @@ -1,105 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.3 - ../org.jacoco.build - - - org.jacoco.agent - - JaCoCo :: Agent - JaCoCo Agent - - - src - - - - org.apache.maven.plugins - maven-dependency-plugin - - - prepare-package - - copy - - - - - ${project.groupId} - org.jacoco.agent.rt - all - ${project.version} - jacocoagent.jar - - - ${project.build.directory}/classes - false - false - true - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/classes/jacocoagent.jar - jar - runtime - - - - - - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3.pom.sha1 deleted file mode 100644 index 2bb68262fcc073c9d031e84d74ee2a3ee7d3ad33..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.agent/0.8.3/org.jacoco.agent-0.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ff16b6386d1198793d069d4a46be1fef8b6bda9a \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/_remote.repositories deleted file mode 100644 index 552ea253926224c646e6c4e5f346e2f5c8c11cdf..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:02 CST 2019 -org.jacoco.build-0.8.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom b/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom deleted file mode 100644 index da9be69eb906a41d0678eacab53e465cc1a98ada..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom +++ /dev/null @@ -1,1158 +0,0 @@ - - - - 4.0.0 - - org.jacoco - org.jacoco.build - 0.8.2 - pom - - JaCoCo - JaCoCo - Java Code Coverage Library - http://jacoco.org - 2009 - - Mountainminds GmbH & Co. KG - - - - Eclipse Public License v1.0 - http://www.eclipse.org/legal/epl-v10.html - repo - - - - - - mtnminds - Marc R. Hoffmann - hoffmann@mountainminds.com - +1 - - Project Lead - - - - brock_j - Brock Janiczak - brockj@gmail.com - +10 - - Developer - - - - mandrikov - Evgeny Mandrikov - mandrikov@gmail.com - http://godin.net.ru - SonarSource - http://www.sonarsource.com - +3 - - Build and release manager - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@gmail.com - +1 - - Developer - - - - - - - Radek Liba - - - Christoph Beck - - - - - - ../org.jacoco.core - ../org.jacoco.report - ../org.jacoco.agent.rt - ../org.jacoco.agent - ../org.jacoco.ant - ../org.jacoco.cli - ../org.jacoco.examples - ../jacoco-maven-plugin - - ../org.jacoco.tests - - ../org.jacoco.doc - ../jacoco - - - - scm:git:git://github.com/jacoco/jacoco.git - scm:git:ssh://git@github.com:jacoco/jacoco.git - https://github.com/jacoco/jacoco - - - GitHub - https://github.com/jacoco/jacoco/issues - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - - - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - - yyyyMMddhhmm - http://www.jacoco.org/jacoco - ${project.inceptionYear}, 2018 - - 1.5 - ${bytecode.version} - ${bytecode.version} - - - ${jvm.args} - - - 6.2.1 - 1.7.1 - 2.0.28 - 4.8.2 - - - - - ../${project.artifactId}.test/target/jacoco.exec - ../${project.artifactId}.test/target/surefire-reports/ - - - 1.5 - 1.5 - - - - - - - ${project.groupId} - org.jacoco.core - ${project.version} - - - ${project.groupId} - org.jacoco.report - ${project.version} - - - ${project.groupId} - org.jacoco.agent - ${project.version} - - - ${project.groupId} - org.jacoco.agent - runtime - ${project.version} - - - ${project.groupId} - org.jacoco.agent.rt - ${project.version} - - - ${project.groupId} - org.jacoco.ant - ${project.version} - - - ${project.groupId} - org.jacoco.ant - nodeps - ${project.version} - - - ${project.groupId} - org.jacoco.cli - ${project.version} - - - ${project.groupId} - org.jacoco.examples - ${project.version} - - - - org.ow2.asm - asm - ${asm.version} - - - org.ow2.asm - asm-commons - ${asm.version} - - - org.ow2.asm - asm-tree - ${asm.version} - - - org.ow2.asm - asm-analysis - ${asm.version} - - - org.ow2.asm - asm-util - ${asm.version} - - - org.apache.ant - ant - ${ant.version} - - - org.apache.ant - ant-junit - ${ant.version} - - - org.apache.ant - ant-antunit - 1.2 - - - args4j - args4j - ${args4j.version} - - - junit - junit - ${junit.version} - - - - - - - - src - false - - **/*.java - **/*.kt - **/*.properties - - - - src - true - - **/*.properties - - - - . - true - - about.html - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 2.0.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - true - false - - - - - commons-lang - commons-lang - 2.6 - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.5 - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - true - forked-path - false - - -Prelease - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - org.apache.maven.plugins - maven-shade-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.9 - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - org.apache.maven.plugins - maven-toolchains-plugin - 1.0 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.5 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.codehaus.mojo - xml-maven-plugin - 1.0 - - - org.codehaus.mojo - exec-maven-plugin - - 1.5.0 - - - - com.github.genthaler - beanshell-maven-plugin - 1.4 - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${project.build.sourceDirectory} - ${project.build.outputDirectory} - - - - - org.apache.maven.plugins - maven-resources-plugin - - - - - false - - @*@ - $*$ - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - - - 420 - - 493 - 493 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce - validate - - enforce - - - - - 1.8 - - - 3.3.9 - - - The rules for repo1.maven.org are that pom.xml files should not include repository definitions. - true - true - - - No SNAPSHOT versions allowed for dependencies - true - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - check-license-header - validate - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - validate - - parse-version - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - false - false - true - 0000000 - - - - - com.github.genthaler - beanshell-maven-plugin - - - parse-version - validate - - run - - - true - - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${project.artifactId} - ${qualified.bundle.version} - ${project.description} - - !about.html, - *.internal*;x-internal:=true;version="${version;===;${Bundle-Version}}", - *;version="${version;===;${Bundle-Version}}" - - - org.jacoco.*;version="${range;[===,==+);${Bundle-Version}}", - org.objectweb.asm.*;version="${range;[===,=+);${asm.version}}" - - J2SE-1.5 - scm:git:git://github.com/jacoco/jacoco.git;path="${project.artifactId}";commitId=${buildNumber} - - - - - - - - - - maven-jdk9 - - [9,12) - - - 6 - - - - - maven-jdk12 - - [12,) - - - 7 - - - - - - integration-tests - - - jdk.version - - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - validate - - toolchain - - - - - - - ${jdk.version} - - - - - - - - - - - - java10-bytecode - - - bytecode.version - 10 - - - - 9 - 9 - - - - - java11-bytecode - - - bytecode.version - 11 - - - - 9 - 9 - - - - - java12-bytecode - - - bytecode.version - 12 - - - - 9 - 9 - - - - - - ecj - - - ecj - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - eclipse - 1.8 - 1.8 - - - - org.eclipse.jdt.core.compiler - ecj - 4.6.1 - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.8.1 - - - - - - - - - - - jdk6 - - - jdk.version - 6 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk7 - - - jdk.version - 7 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk8 - - - jdk.version - 8 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk9 - - - jdk.version - 9 - - - - 6 - - - - - jdk10 - - - jdk.version - 10 - - - - 6 - - - - - jdk11 - - - jdk.version - 11 - - - - 6 - - - - - jdk12 - - - jdk.version - 12 - - - - 7 - - - - - - sources - - - src/ - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-enforcer-plugin - false - - - enforce-release-rules - verify - - enforce - - - - - - buildNumber - [0-9a-f]{40} - - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - enforce-java-api-compatibility - verify - - check - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - m2e - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.maven.plugins - maven-antrun-plugin - [0,) - - run - - - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - [0,) - - install - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - [0,) - - unpack - copy-dependencies - - - - - - - - - org.codehaus.groovy.maven - gmaven-plugin - [0,) - - execute - - - - - - - - - org.codehaus.mojo - xml-maven-plugin - [0,) - - transform - - - - - - - - - org.jacoco - jacoco-maven-plugin - [0,) - - prepare-agent - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - [0,) - - enforce - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [0,) - - parse-version - - - - - - - - - - - - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom.sha1 deleted file mode 100644 index 7cc48059f4c7ea4e4c76f91dd08d8d507291e7fe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b567491f6716502f3f0b2c320684dca04398b2f5 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/_remote.repositories deleted file mode 100644 index ca22261b2968dbb133a84b27af8235ef5d4773b9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:29 CST 2019 -org.jacoco.build-0.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/org.jacoco.build-0.8.3.pom b/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/org.jacoco.build-0.8.3.pom deleted file mode 100644 index 8616e2075476203274ae7294f676c7ec89c96ed0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/org.jacoco.build-0.8.3.pom +++ /dev/null @@ -1,1109 +0,0 @@ - - - - 4.0.0 - - org.jacoco - org.jacoco.build - 0.8.3 - pom - - JaCoCo - JaCoCo - Java Code Coverage Library - http://jacoco.org - 2009 - - Mountainminds GmbH & Co. KG - - - - Eclipse Public License v1.0 - http://www.eclipse.org/legal/epl-v10.html - repo - - - - - - mtnminds - Marc R. Hoffmann - hoffmann@mountainminds.com - +1 - - Project Lead - - - - brock_j - Brock Janiczak - brockj@gmail.com - +10 - - Developer - - - - mandrikov - Evgeny Mandrikov - mandrikov@gmail.com - http://godin.net.ru - SonarSource - http://www.sonarsource.com - +3 - - Build and release manager - - - - mfriedenhagen - Mirko Friedenhagen - mfriedenhagen@gmail.com - +1 - - Developer - - - - - - - Radek Liba - - - Christoph Beck - - - - - - ../org.jacoco.core - ../org.jacoco.report - ../org.jacoco.agent.rt - ../org.jacoco.agent - ../org.jacoco.ant - ../org.jacoco.cli - ../org.jacoco.examples - ../jacoco-maven-plugin - - ../org.jacoco.tests - - ../org.jacoco.doc - ../jacoco - - - - scm:git:git://github.com/jacoco/jacoco.git - scm:git:ssh://git@github.com:jacoco/jacoco.git - https://github.com/jacoco/jacoco - - - GitHub - https://github.com/jacoco/jacoco/issues - - - - sonatype-nexus-staging - Nexus Release Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - - sonatype-nexus-snapshots - Sonatype Nexus Snapshots - ${sonatypeOssDistMgmtSnapshotsUrl} - - - - - UTF-8 - https://oss.sonatype.org/content/repositories/snapshots/ - - yyyyMMddhhmm - http://www.jacoco.org/jacoco - ${project.inceptionYear}, 2019 - - 1.5 - ${bytecode.version} - ${bytecode.version} - - - ${jvm.args} - - - 7.0 - 1.7.1 - 2.0.28 - 4.8.2 - - - - - ../${project.artifactId}.test/target/jacoco.exec - ../${project.artifactId}.test/target/surefire-reports/ - - - 1.5 - 1.5 - - - - - - - ${project.groupId} - org.jacoco.core - ${project.version} - - - ${project.groupId} - org.jacoco.report - ${project.version} - - - ${project.groupId} - org.jacoco.agent - ${project.version} - - - ${project.groupId} - org.jacoco.agent - runtime - ${project.version} - - - ${project.groupId} - org.jacoco.agent.rt - ${project.version} - - - ${project.groupId} - org.jacoco.ant - ${project.version} - - - ${project.groupId} - org.jacoco.ant - nodeps - ${project.version} - - - ${project.groupId} - org.jacoco.cli - ${project.version} - - - ${project.groupId} - org.jacoco.examples - ${project.version} - - - - org.ow2.asm - asm - ${asm.version} - - - org.ow2.asm - asm-commons - ${asm.version} - - - org.ow2.asm - asm-tree - ${asm.version} - - - org.ow2.asm - asm-analysis - ${asm.version} - - - org.ow2.asm - asm-util - ${asm.version} - - - org.apache.ant - ant - ${ant.version} - - - org.apache.ant - ant-junit - ${ant.version} - - - org.apache.ant - ant-antunit - 1.2 - - - args4j - args4j - ${args4j.version} - - - junit - junit - ${junit.version} - - - - - - - - src - false - - **/*.java - **/*.kt - **/*.groovy - **/*.properties - - - - src - true - - **/*.properties - - - - . - true - - about.html - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.6 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-enforcer-plugin - 3.0.0-M2 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-invoker-plugin - 2.0.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.3 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - true - false - - - - - commons-lang - commons-lang - 2.6 - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.6.0 - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - true - forked-path - false - - -Prelease - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - org.apache.maven.plugins - maven-shade-plugin - 3.2.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.9 - - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - org.apache.maven.plugins - maven-toolchains-plugin - 1.0 - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.5 - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.2 - - - org.codehaus.mojo - xml-maven-plugin - 1.0 - - - org.codehaus.mojo - exec-maven-plugin - - 1.5.0 - - - - com.github.genthaler - beanshell-maven-plugin - 1.4 - - - org.apache.felix - maven-bundle-plugin - 3.5.1 - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - ${project.build.sourceDirectory} - ${project.build.outputDirectory} - - - - - org.apache.maven.plugins - maven-resources-plugin - - - - - false - - @*@ - $*$ - - - - - - org.apache.maven.plugins - maven-shade-plugin - - - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - - - 420 - - 493 - 493 - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce - validate - - enforce - - - - - 1.8 - - - 3.3.9 - - - The rules for repo1.maven.org are that pom.xml files should not include repository definitions. - true - true - - - No SNAPSHOT versions allowed for dependencies - true - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - - - check-license-header - validate - - run - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - parse-version - validate - - parse-version - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - false - false - true - 0000000 - - - - - com.github.genthaler - beanshell-maven-plugin - - - parse-version - validate - - run - - - true - - - - - - - - org.apache.felix - maven-bundle-plugin - - - ${project.artifactId} - ${qualified.bundle.version} - ${project.description} - - !about.html, - *.internal*;x-internal:=true;version="${version;===;${Bundle-Version}}", - *;version="${version;===;${Bundle-Version}}" - - - org.jacoco.*;version="${range;[===,==+);${Bundle-Version}}", - org.objectweb.asm.*;version="${range;[===,=+);${asm.version}}" - - J2SE-1.5 - scm:git:git://github.com/jacoco/jacoco.git;path="${project.artifactId}";commitId=${buildNumber} - - - - - - - - - - maven-jdk9 - - [9,12) - - - 6 - - - - - maven-jdk12 - - [12,) - - - 7 - - - - - - integration-tests - - - jdk.version - - - - - - - org.apache.maven.plugins - maven-toolchains-plugin - - - validate - - toolchain - - - - - - - ${jdk.version} - - - - - - - - - - - ecj - - - ecj - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - eclipse - 1.8 - 1.8 - - - - org.eclipse.jdt.core.compiler - ecj - 4.6.1 - - - org.codehaus.plexus - plexus-compiler-eclipse - 2.8.1 - - - - - - - - - - - jdk6 - - - jdk.version - 6 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk7 - - - jdk.version - 7 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk8 - - - jdk.version - 8 - - - - -XX:-FailOverToOldVerifier -Xverify:all - - - - - jdk9 - - - jdk.version - 9 - - - - 6 - - - - - jdk10 - - - jdk.version - 10 - - - - 6 - - - - - jdk11 - - - jdk.version - 11 - - - - 6 - - - - - jdk12 - - - jdk.version - 12 - - - - 7 - - - - - - sources - - - src/ - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar-no-fork - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - release - - - - org.apache.maven.plugins - maven-enforcer-plugin - false - - - enforce-release-rules - verify - - enforce - - - - - - buildNumber - [0-9a-f]{40} - - - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - enforce-java-api-compatibility - verify - - check - - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - sign-artifacts - verify - - sign - - - - - - - - - - - m2e - - - m2e.version - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.apache.maven.plugins - maven-antrun-plugin - [0,) - - run - - - - - - - - - org.apache.maven.plugins - maven-invoker-plugin - [0,) - - install - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - [0,) - - unpack - copy-dependencies - - - - - - - - - org.codehaus.groovy.maven - gmaven-plugin - [0,) - - execute - - - - - - - - - org.codehaus.mojo - xml-maven-plugin - [0,) - - transform - - - - - - - - - org.jacoco - jacoco-maven-plugin - [0,) - - prepare-agent - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - [0,) - - enforce - - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - [0,) - - parse-version - - - - - - - - - - - - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/org.jacoco.build-0.8.3.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/org.jacoco.build-0.8.3.pom.sha1 deleted file mode 100644 index fee00c0b3b0863c990a5eb3b94192a9aea4d2899..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.build/0.8.3/org.jacoco.build-0.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -94f85e20d4a06d63f2393c784dbab8dac7bc4f89 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/_remote.repositories deleted file mode 100644 index 5924b1522e9b8b198b5918ba43cafbd55b1f5531..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -org.jacoco.core-0.8.2.jar>repo.jenkins-ci.org= -org.jacoco.core-0.8.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar deleted file mode 100644 index 86179b4734b7bd3568acb8602e13a0f6b6420b2d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar.sha1 b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar.sha1 deleted file mode 100644 index 56f70c5859f878b5c69bf7de74a75b0fa460878b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -977b33afe2344a9ee801fd3317c54d8e1f9d7a79 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom deleted file mode 100644 index ff76b0faa913db1f7977c159faeea54a5bba0a39..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.2 - ../org.jacoco.build - - - org.jacoco.core - - JaCoCo :: Core - JaCoCo Core - - - - org.ow2.asm - asm - - - org.ow2.asm - asm-commons - - - org.ow2.asm - asm-tree - - - - - src - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom.sha1 deleted file mode 100644 index a0084e586a9a4a7b102d4e0e66ad7ea628a0dfc6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7c183be59cd13909cd0da6617a26e2a566125643 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/_remote.repositories deleted file mode 100644 index 7c09e5ef891d7ce49e4d3a2ea242795ea00e3c95..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -org.jacoco.core-0.8.3.jar>repo.jenkins-ci.org= -org.jacoco.core-0.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.jar b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.jar deleted file mode 100644 index 22f559467ff9bb337d5bcc297063b7b969ab3b1c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.jar.sha1 b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.jar.sha1 deleted file mode 100644 index 392527174c08cffb45f88caf2c3f3c68f7a3c846..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -79f84be0b764847df8652d2dca6f658ee5101f3e \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.pom b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.pom deleted file mode 100644 index d1b688650c0dd68da72e2475e00c7df296bd9980..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.3 - ../org.jacoco.build - - - org.jacoco.core - - JaCoCo :: Core - JaCoCo Core - - - - org.ow2.asm - asm - - - org.ow2.asm - asm-commons - - - org.ow2.asm - asm-tree - - - - - src - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.pom.sha1 deleted file mode 100644 index c370ddf753001cc601ed025f57f040127017fdd8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.core/0.8.3/org.jacoco.core-0.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ad4f277df280fd405f11af4736eb5c310e082bc1 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/_remote.repositories deleted file mode 100644 index 2e737c4cba042b59cfd891d60e14207f26f942a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -org.jacoco.report-0.8.2.jar>repo.jenkins-ci.org= -org.jacoco.report-0.8.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar deleted file mode 100644 index f79dd2a659b050606c8645b913564ee868b2dd33..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar.sha1 b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar.sha1 deleted file mode 100644 index 194ac7c04f2ccd9483f054a1df9210b96e1386b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -50e133cdfd2d31ca5702b73615be70f801d3ae26 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom deleted file mode 100644 index b077ba00efd5d4f218c91ae82540dfb7525dfd94..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.2 - ../org.jacoco.build - - - org.jacoco.report - - JaCoCo :: Report - JaCoCo Report - - - - ${project.groupId} - org.jacoco.core - - - - - src - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom.sha1 deleted file mode 100644 index 6f35d7fef3bc35b22b3bfbfb7bd1c85012bcaf11..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3817a2bde09f53f49a50c508150f1756782937b1 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/_remote.repositories b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/_remote.repositories deleted file mode 100644 index 4ef8e3d3881efb21ae5ee240643e085e780b4e60..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -org.jacoco.report-0.8.3.jar>repo.jenkins-ci.org= -org.jacoco.report-0.8.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.jar b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.jar deleted file mode 100644 index 8b36f8175381d5eab9c5bed68db8d3a49c5f20d4..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.jar and /dev/null differ diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.jar.sha1 b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.jar.sha1 deleted file mode 100644 index 319da5b81cdc8824f8719905edce6410033b3529..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5f60af9b535789ce777834fe548bee6a85a11605 \ No newline at end of file diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.pom b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.pom deleted file mode 100644 index 46fb1e9a05bb7597564a6f328ec46c084dc09086..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - - 4.0.0 - - - org.jacoco - org.jacoco.build - 0.8.3 - ../org.jacoco.build - - - org.jacoco.report - - JaCoCo :: Report - JaCoCo Report - - - - ${project.groupId} - org.jacoco.core - - - - - src - - - - org.apache.felix - maven-bundle-plugin - - - process-classes - - manifest - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - diff --git a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.pom.sha1 b/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.pom.sha1 deleted file mode 100644 index f7752dcf04d6fec53e988ed12038108cfe47cc40..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jacoco/org.jacoco.report/0.8.3/org.jacoco.report-0.8.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dd738c39a41e55a1d8ef038341dc3aaa51c5e99a \ No newline at end of file diff --git a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/_remote.repositories b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/_remote.repositories deleted file mode 100644 index 4972cce7aeed72941d7d74dd538a4cbf031e79a9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:27 CST 2019 -arquillian-bom-1.1.9.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom deleted file mode 100644 index ea97c3e248b4e4ef5dbf960a6517e867fd9335f4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom +++ /dev/null @@ -1,263 +0,0 @@ - - - - - 4.0.0 - - - org.jboss.arquillian - arquillian-bom - 1.1.9.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.9.Final - - - - - arquillian.org - Arquillian Community - arquillian.org - http://arquillian.org - - - - - - 1.2.2 - 2.0.0-alpha-7 - 2.1.1 - - 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.9.Final/arquillian-bom-1.1.9.Final.pom.sha1 b/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom.sha1 deleted file mode 100644 index 7c3a3b982c71eb341307f6abe5323ac01ecf1253..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/arquillian/arquillian-bom/1.1.9.Final/arquillian-bom-1.1.9.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -567d641cb94d896ee9f618b0441eabebb9ff99dd \ No newline at end of file diff --git a/artifacts/m2/org/jboss/jboss-parent/15/_remote.repositories b/artifacts/m2/org/jboss/jboss-parent/15/_remote.repositories deleted file mode 100644 index f7bb193798dd46a7d412bfc2d0aa79734c07e056..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/jboss-parent/15/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:31 CST 2019 -jboss-parent-15.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/jboss-parent/15/jboss-parent-15.pom b/artifacts/m2/org/jboss/jboss-parent/15/jboss-parent-15.pom deleted file mode 100644 index 1a6b2c1f6fc4c70e900da5a074978646fe4a8de7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/jboss-parent/15/jboss-parent-15.pom +++ /dev/null @@ -1,788 +0,0 @@ - - - - - 4.0.0 - - org.jboss - 15 - jboss-parent - - pom - - JBoss Parent POM - Parent POM for JBoss projects. Provides default project build configuration. - http://www.jboss.org - - - JIRA - https://issues.jboss.org/ - - - - scm:git:git@github.com:jboss/jboss-parent-pom.git - scm:git:git@github.com:jboss/jboss-parent-pom.git - http://github.com/jboss/jboss-parent-pom - 15 - - - - - jboss.org - JBoss.org Community - JBoss.org - http://www.jboss.org - - - - - - JBoss User List - https://lists.jboss.org/mailman/listinfo/jboss-user - https://lists.jboss.org/mailman/listinfo/jboss-user - http://lists.jboss.org/pipermail/jboss-user/ - - - JBoss Developer List - https://lists.jboss.org/mailman/listinfo/jboss-development - https://lists.jboss.org/mailman/listinfo/jboss-development - http://lists.jboss.org/pipermail/jboss-development/ - - - - - - Public Domain - http://repository.jboss.org/licenses/cc0-1.0.txt - repo - - - - - JBoss by Red Hat - http://www.jboss.org - - - - - - - 1.7 - 2.4 - 1.9 - 1.3 - 2.3.7 - 2.12.1 - 2.5 - 4.0.0 - 2.6 - 3.1 - 2.8 - 2.8.1 - 2.9.1 - 2.9 - 1.0.0 - 2.3 - 1.3.1 - 2.5.4 - 1.5 - 2.2 - 2.2 - 1.2.1 - 1.0.2 - 2.5.1 - 2.5 - 2.6 - 2.9.1 - 2.0 - 2.0 - 2.3 - 1.7 - 2.7 - 3.3 - 3.1 - 2.3 - 2.5 - 2.6 - 2.3 - 3.4 - 2.4 - 2.3 - 2.17 - ${version.surefire.plugin} - 2.4 - 2.4 - - - - - - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - - - - UTF-8 - - - 1.7 - 1.7 - - - ${maven.compiler.target} - ${maven.compiler.source} - - - 3.0.4 - ${maven.compiler.argument.source} - - - true - - - ${maven.compiler.argument.target} - - - false - -Pjboss-release - - - source-release - - - - - ${maven.min.version} - - - - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - ${version.antrun.plugin} - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.assembly.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - ${build.datetime} - - - - - - org.codehaus.mojo - build-helper-maven-plugin - ${version.buildhelper.plugin} - - - org.codehaus.mojo - buildnumber-maven-plugin - ${version.buildnumber.plugin} - - - org.apache.felix - maven-bundle-plugin - ${version.bundle.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - - - - ${buildNumber} - ${build.datetime} - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - ${version.checkstyle.plugin} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.clean.plugin} - - - com.atlassian.maven.plugins - maven-clover2-plugin - ${version.clover2.plugin} - - - org.codehaus.mojo - cobertura-maven-plugin - ${version.cobertura.plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.compiler.plugin} - - true - true - - ${maven.compiler.argument.source} - ${maven.compiler.argument.target} - - - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.dependency.plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.deploy.plugin} - - - org.apache.maven.plugins - maven-ear-plugin - ${version.ear.plugin} - - - org.apache.maven.plugins - maven-eclipse-plugin - ${version.eclipse.plugin} - - - org.apache.maven.plugins - maven-ejb-plugin - ${version.ejb.plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.enforcer.plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.failsafe.plugin} - - - org.codehaus.mojo - findbugs-maven-plugin - ${version.findbugs.plugin} - - - org.apache.maven.plugins - maven-gpg-plugin - ${version.gpg.plugin} - - - org.apache.maven.plugins - maven-help-plugin - ${version.help.plugin} - - - org.apache.maven.plugins - maven-idea-plugin - ${version.idea.plugin} - - - org.codehaus.mojo - idlj-maven-plugin - ${version.idlj.plugin} - - - org.jboss.maven.plugins - maven-injection-plugin - ${version.injection.plugin} - - - compile - - bytecode - - - - - - org.apache.maven.plugins - maven-install-plugin - ${version.install.plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.jar.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - ${build.datetime} - - - - - - org.codehaus.mojo - javacc-maven-plugin - ${version.javacc.plugin} - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.javadoc.plugin} - -
${project.name} ${project.version}]]>
-
${project.name} ${project.version}]]>
- - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - ${build.datetime} - - -
-
- - org.codehaus.mojo - javancss-maven-plugin - ${version.javancss.plugin} - - - org.codehaus.mojo - jdepend-maven-plugin - ${version.jdepend.plugin} - - - org.apache.maven.plugins - maven-jxr-plugin - ${version.jxr.plugin} - - - org.codehaus.mojo - license-maven-plugin - ${version.license.plugin} - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.plugin.plugin} - - - org.apache.maven.plugins - maven-pmd-plugin - ${version.pmd.plugin} - - - org.apache.maven.plugins - maven-rar-plugin - ${version.rar.plugin} - - - org.apache.maven.plugins - maven-release-plugin - ${version.release.plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.resources.plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.shade.plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.site.plugin} - - - org.codehaus.mojo - sonar-maven-plugin - ${version.sonar.plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.source.plugin} - - - true - - - true - - - true - - - - ${project.url} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - ${project.scm.url} - ${project.scm.connection} - ${buildNumber} - ${build.datetime} - - - - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.surefire.plugin} - - - ${project.build.directory} - - - - - org.apache.maven.plugins - maven-war-plugin - ${version.war.plugin} - - - - - org.eclipse.m2e - lifecycle-mapping - ${version.org.eclipse.m2e.lifecycle-mapping} - - - - - - - org.apache.felix - maven-bundle-plugin - [2.3.7,) - - manifest - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - [1.3.1,) - - enforce - - - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - [1.0.0,) - - create - create-timestamp - - - - - - - - - - - -
- -
- - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-java-version - - enforce - - - - - To build this project JDK ${jdk.min.version} (or greater) is required. Please install it. - ${jdk.min.version} - - - - - - enforce-maven-version - - enforce - - - - - To build this project Maven ${maven.min.version} (or greater) is required. Please install it. - ${maven.min.version} - - - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - get-build-timestamp - initialize - - create-timestamp - - - - EEE, d MMM yyyy HH:mm:ss Z - build.datetime - - - - get-scm-revision - initialize - - create - - - false - false - UNKNOWN - true - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - - -
- - - - - - jboss-release - - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.4 - - - - - source-release-assembly - package - - single - - - true - - ${sourceReleaseAssemblyDescriptor} - - gnu - - - - - - org.apache.maven.plugins - maven-deploy-plugin - - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - - - gpg-sign - - - - - org.apache.maven.plugins - maven-gpg-plugin - - true - - - - - sign - - - - - - - - - - - - - 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/jboss-parent/15/jboss-parent-15.pom.sha1 b/artifacts/m2/org/jboss/jboss-parent/15/jboss-parent-15.pom.sha1 deleted file mode 100644 index d63a1413c961657a194005aab3e8ef562b876e18..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/jboss-parent/15/jboss-parent-15.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -76262a90da39e0eecdac4606691ded8a743d752b \ No newline at end of file diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/_remote.repositories b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/_remote.repositories deleted file mode 100644 index 7252d644979541bbfaa7864802d94d97fc55446c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -jboss-logging-3.3.0.Final.jar>repo.jenkins-ci.org= -jboss-logging-3.3.0.Final.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar deleted file mode 100644 index ea45d4d341d4fbc62bf9bd41d1ec374db0dceb84..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar and /dev/null differ diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar.sha1 b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar.sha1 deleted file mode 100644 index 875434d77368b03d44ea2217af974857c33bc7f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3616bb87707910296e2c195dc016287080bba5af \ No newline at end of file diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.pom b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.pom deleted file mode 100644 index 69eb4280d99326b376e79620a6a4a2ad015daf2d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.pom +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - org.jboss.logging - jboss-logging - 3.3.0.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 - - - - ${project.groupId}.*;version=${project.version};-split-package:=error - - - *;resolution:=optional - - - - - - bundle-manifest - process-classes - - manifest - - - - -
-
-
diff --git a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.pom.sha1 b/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.pom.sha1 deleted file mode 100644 index 01db4ad6a6266112937177370d71d1919895fd45..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/logging/jboss-logging/3.3.0.Final/jboss-logging-3.3.0.Final.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -4f5b337bdcb0c420f9bd9d03fdc47e9925580334 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/_remote.repositories b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/_remote.repositories deleted file mode 100644 index f16f5812c859667347825d6679b46f25ad2b38fe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:29 CST 2019 -shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom deleted file mode 100644 index aa6f5f51df111a5229e503ba42c724fdca4ee8d0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - 4.0.0 - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-bom - 2.0.0-alpha-7 - 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-7 - - - - - - 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-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom.sha1 b/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom.sha1 deleted file mode 100644 index c86a235dc93f0d2568b50745b8a028872cf76192..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-7/shrinkwrap-descriptors-bom-2.0.0-alpha-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b9ca49c0e9415d1cb742e2188724c5aaa59c93f3 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/_remote.repositories b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/_remote.repositories deleted file mode 100644 index 0301c58b232a9e1e0ee77aae2fbe9b4c4e74c42f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:28 CST 2019 -shrinkwrap-resolver-bom-2.1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom deleted file mode 100644 index c1ee5d2ae627d0276379fc957853fa07a612cbc9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - 4.0.0 - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-bom - 2.1.1 - 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.1.1 - - - - - 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-maven-plugin - ${project.version} - runtime - maven-plugin - - - - - - - - - - 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.1.1/shrinkwrap-resolver-bom-2.1.1.pom.sha1 b/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom.sha1 deleted file mode 100644 index 22f98efe7f571f6a4fc595285aad5fcb4155e59a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.1.1/shrinkwrap-resolver-bom-2.1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ef628a4e190f4a5c7f7124a2ba0d8fdb338cf8ba \ No newline at end of file diff --git a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/_remote.repositories b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/_remote.repositories deleted file mode 100644 index bf706186ceeed77b2ef4f66fbd803ce4650e1c9a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:28 CST 2019 -shrinkwrap-bom-1.2.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom deleted file mode 100644 index feea868cd034faa6116195027073b2b17742ba57..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - 4.0.0 - - - org.jboss.shrinkwrap - shrinkwrap-bom - 1.2.2 - 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 - - - - - 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.2/shrinkwrap-bom-1.2.2.pom.sha1 b/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom.sha1 deleted file mode 100644 index b7e9517aa9861a65c22955bf392be7a6a2f3b1f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.2/shrinkwrap-bom-1.2.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e3fe01e6497d887d40f9aac4093baa95e6429ead \ No newline at end of file diff --git a/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/_remote.repositories b/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/_remote.repositories deleted file mode 100644 index 41a38a1e9d43034ba1af69e63fcacf42b3d69cb1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:47 CST 2019 -weld-api-bom-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom b/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom deleted file mode 100644 index af259b4f560f4d8e435df0b0a95037a45a268dee..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +++ /dev/null @@ -1,197 +0,0 @@ - - - 4.0.0 - org.jboss.weld - weld-api-bom - pom - 1.0 - - - org.jboss.weld - weld-parent - 6 - - - Weld and CDI APIs BOM - - - http://www.seamframework.org/Weld - - Weld and CDI APIs "bill of materials" which can be imported by any project using the Weld implementation of CDI. It provides dependency management for the developer APIs and SPIs, as well as container integrator SPIs - - - - Apache License, Version 2.0 - repo - http://www.apache.org/licenses/LICENSE-2.0.html - - - - - - Weld committers - - - - - - - - 1 - 3.1.0 - 1.0 - 1.0 - 1.0.0.GA - 2.5 - 2.1 - 1.2 - 1.0.1B - 1.1 - 2.1.2-b04 - 1.2_13 - 2.1 - 1.1 - - - - - - - javax.annotation - jsr250-api - ${jsr250.api.version} - - - - javax.persistence - persistence-api - ${jpa.api.version} - - - - javax.validation - validation-api - ${validation.api.version} - - - - javax.inject - javax.inject - ${atinject.api.version} - - - - javax.servlet - servlet-api - ${servlet.api.version} - - - - javax.servlet.jsp - jsp-api - ${jsp.api.version} - - - - javax.servlet - jstl - ${jstl.api.version} - - - - javax.transaction - jta - ${jta.api.version} - - - - javax.jms - jms - ${jms.api.version} - - - - javax.el - el-api - ${uel.api.version} - - - - javax.faces - jsf-api - ${jsf.api.version} - - - - - org.jboss.ejb3 - jboss-ejb3-api - ${ejb.api.version} - - - jboss-jaxrpc - jbossws - - - jboss-transaction-api - org.jboss.javaee - - - jboss-jaxrpc - jboss.jbossws - - - - - - - org.jboss.interceptor - jboss-interceptor-api - ${interceptor.api.version} - - - - javax.enterprise - cdi-api - ${project.version} - - - - org.jboss.weld - weld-api - ${project.version} - - - - org.jboss.weld - weld-spi - ${project.version} - - - - javax.xml.ws - jaxws-api - ${jaxws.api.version} - - - - commons-httpclient - commons-httpclient - 3.1 - - - - - - - scm:svn:http://anonsvn.jboss.org/repos/weld/api/tags/1.0 - scm:svn:https://svn.jboss.org/repos/weld/api/tags/1.0 - http://fisheye.jboss.org/browse/Weld/api/tags/1.0/build/tags/weld-parent-6/weld-api-bom - - diff --git a/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom.sha1 b/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom.sha1 deleted file mode 100644 index 9c91f214ae8a5cfd23863daba63204a9ed822c77..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b385fa2aa3a58270a71b6086ea34a7e4300bbb06 \ No newline at end of file diff --git a/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/_remote.repositories b/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/_remote.repositories deleted file mode 100644 index 05e06c90ca24218216d6b5e1081306a6f2e33e7b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:46 CST 2019 -weld-api-parent-1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom b/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom deleted file mode 100644 index d15e6679a6b856501921a0255b711b06d65ce44d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +++ /dev/null @@ -1,86 +0,0 @@ - - 4.0.0 - - org.jboss.weld - weld-api-bom - 1.0 - ../bom/pom.xml - - org.jboss.weld - weld-api-parent - pom - - Weld and CDI APIs Parent - - - - http://www.seamframework.org/Weld - - - APIs for CDI and Weld, the reference implementation of JSR 299: Contexts and Dependency Injection for Java EE - - - - Hudson - http://hudson.jboss.org - - - - JIRA - http://jira.jboss.org/browse/WELD - - - - Seam Framework - http://seamframework.org - - - 2008 - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - - Pete Muir - pmuir - Red Hat Inc. - - Project Lead - - pmuir@redhat.com - - - - Shane Bryzak - Red Hat Inc. - - - - David Allen - - - - Nicklas Karlsson - - - - - - - - - org.testng - testng - 5.10 - jdk15 - - - - - - diff --git a/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom.sha1 b/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom.sha1 deleted file mode 100644 index e68432a3833d88cb4f020d25a9c48cea4838bc17..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -508700c6712082eece7e9e29a99286fd70593afa \ No newline at end of file diff --git a/artifacts/m2/org/jboss/weld/weld-parent/6/_remote.repositories b/artifacts/m2/org/jboss/weld/weld-parent/6/_remote.repositories deleted file mode 100644 index 540a0ed34f2c2e8b7bd127e9a28156691e1e108e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-parent/6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:49 CST 2019 -weld-parent-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jboss/weld/weld-parent/6/weld-parent-6.pom b/artifacts/m2/org/jboss/weld/weld-parent/6/weld-parent-6.pom deleted file mode 100644 index 55f3e8fdb71d7997fef2ea0fbf1a8a192264713e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +++ /dev/null @@ -1,482 +0,0 @@ - - - 4.0.0 - org.jboss.weld - weld-parent - pom - 6 - - Weld Parent - - - - http://www.seamframework.org/Weld - - - The parent POM for Weld, specifying the build parameters - - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - - Weld committers - - - - - Seam Framework - http://seamframework.org - - - - - - - - - UTF-8 - UTF-8 - 1.1.1-Beta3 - 1.1.0.GA - 1.1.0 - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - org.codehaus.mojo - build-helper-maven-plugin - - - org.codehaus.mojo - buildnumber-maven-plugin - - - package - - - - - - ch.qos.cal10n.plugins - maven-cal10n-plugin - 0.7 - - - org.jboss.maven.plugins - maven-jdocbook-plugin - 2.2.0 - true - - - org.jboss.weld - weld-docbook-xslt - ${weld.docbook.version} - - - org.jboss.seam - seam-docbook-xslt - ${seam.docbook.version} - - - org.jboss.seam - seam-jdocbook-style - ${seam.docbook.version} - jdocbook-style - - - org.jboss - jbossorg-jdocbook-style - ${jbossorg.docbook.version} - jdocbook-style - - - - ${pom.basedir} - master.xml - en-US - - ${pom.basedir}/en-US - - images/*.png - - - - - pdf - classpath:/xslt/org/jboss/weld/pdf.xsl - ${pdf.name} - - - html - classpath:/xslt/org/jboss/weld/xhtml.xsl - index.html - - - html_single - classpath:/xslt/org/jboss/weld/xhtml-single.xsl - index.html - - - - true - saxon - 1.72.0 - - - - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.3 - - - org.apache.maven.plugins - maven-release-plugin - - -Drelease - true - - 2.0-beta-9 - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-clean-plugin - 2.3 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-4 - - - org.apache.maven.plugins - maven-install-plugin - 2.3 - - - org.apache.maven.plugins - maven-site-plugin - 2.0.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.0.4 - - - org.apache.maven.plugins - maven-resources-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.4 - - true - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - org.apache.felix - maven-bundle-plugin - 2.0.0 - - - org.codehaus.mojo - exec-maven-plugin - 1.1.1 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - enforce - - enforce - - - - - 2.0.10 - - - - org.apache.maven.plugins:maven-eclipse-plugin - - - - - - - - - org.apache.maven.plugins - maven-shade-plugin - 1.2.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - ${pom.url} - ${pom.name} - ${parsedVersion.osgiVersion} - ${pom.organization.name} - ${pom.name} - ${parsedVersion.osgiVersion} - ${pom.organization.name} - - - - Build-Information - - ${maven.version} - ${java.version} - ${java.vendor} - ${os.name} - ${os.arch} - ${os.version} - r${buildNumber} - ${timestamp} - - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.4 - - - validate - - maven-version - parse-version - - - - - - org.apache.maven.plugins - maven-eclipse-plugin - - - org.eclipse.jdt.launching.JRE_CONTAINER - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.0-beta-3 - - - set-build-properties - - create - - validate - - true - unavailable - {0, date, long} {0, time, long} - - - - true - - - org.twdata.maven - maven-cli-plugin - 0.6.9 - - - org.codehaus.mojo - tomcat-maven-plugin - 1.0-beta-1 - - - org.apache.maven.plugins - maven-war-plugin - 2.1-beta-1 - - - org.apache.maven.plugins - maven-ejb-plugin - 2.2 - - - org.apache.maven.plugins - maven-ear-plugin - 2.3.2 - - - org.mortbay.jetty - maven-jetty-plugin - 6.1.21 - - - com.pyx4j - maven-junction-plugin - 1.0.3 - - - org.sonatype.plugins - nexus-maven-plugin - 1.3.2 - - http://oss.sonatype.org - oss.sonatype.org/jboss-staging - - - - - - - - - - release - - - release - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useAgent} - - - - sign-artifacts - verify - - sign - - - - - - org.sonatype.plugins - nexus-maven-plugin - - true - [nexus-maven-plugin] closing repository after release:perform - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate-scm - - create - - validate - - true - true - - - - true - - - - - - - - - - scm:svn:http://anonsvn.jboss.org/repos/weld/build/tags/weld-parent-6 - scm:svn:https://svn.jboss.org/repos/weld/build/tags/weld-parent-6 - http://fisheye.jboss.org/browse/Weld/build/tags/weld-parent-6 - - - - - oss.sonatype.org/jboss-staging - Sonatype Nexus Maven Repository - http://oss.sonatype.org/service/local/staging/deploy/maven2 - - - oss.sonatype.org/jboss-snapshots - Sonatype Nexus Snapshot Repository - http://oss.sonatype.org/content/repositories/jboss-snapshots - - - - diff --git a/artifacts/m2/org/jboss/weld/weld-parent/6/weld-parent-6.pom.sha1 b/artifacts/m2/org/jboss/weld/weld-parent/6/weld-parent-6.pom.sha1 deleted file mode 100644 index f0f2a1ac83e549ee16aabccf94aacf298520fc0e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jboss/weld/weld-parent/6/weld-parent-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -81dbf4ca8230ae5084fe646f09e68e52d6db2576 \ No newline at end of file diff --git a/artifacts/m2/org/jdom/jdom/1.1/_remote.repositories b/artifacts/m2/org/jdom/jdom/1.1/_remote.repositories deleted file mode 100644 index 1769e67e5aca1ca1ab00c6f19f8d33e4467fee01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jdom/jdom/1.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -jdom-1.1.jar>repo.jenkins-ci.org= -jdom-1.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.jar b/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.jar deleted file mode 100644 index 97c85f564e3faca58e3e88e5e33ea3f425bf1921..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.jar and /dev/null differ diff --git a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.jar.sha1 b/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.jar.sha1 deleted file mode 100644 index 6680948c23025501fa02790fc6ad15f8237dce56..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1d04c0f321ea337f3661cf7ede8f4c6f653a8fdd \ No newline at end of file diff --git a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.pom b/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.pom deleted file mode 100644 index 4fef21b8ee2d4499eaa73344f25d11de7376f172..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.pom +++ /dev/null @@ -1,61 +0,0 @@ - - - 4.0.0 - - org.jdom - jdom - 1.1 - jar - - JDOM - - JDOM is, quite simply, a Java representation of an XML document. JDOM provides a way to represent that document for - easy and efficient reading, manipulation, and writing. It has a straightforward API, is a lightweight and fast, and - is optimized for the Java programmer. It's an alternative to DOM and SAX, although it integrates well with both DOM - and SAX. - - http://www.jdom.org/ - - - scm:cvs:pserver:anonymous@cvs.jdom.org:/home/cvspublic:jdom - - - - - xerces - xercesImpl - 2.6.1 - true - - - xerces - xmlParserAPIs - 2.6.1 - true - - - org.jdom - jaxen-core - 1.0-FCS - true - - - org.jdom - jaxen-jdom - 1.0-FCS - true - - - org.jdom - saxpath - 1.0-FCS - true - - - xalan - xalan - 2.5.D1 - true - - - diff --git a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.pom.sha1 b/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.pom.sha1 deleted file mode 100644 index c89e09a06518928c8b7f88bd453f555f8d4fd757..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jdom/jdom/1.1/jdom-1.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -34346a37a2ae0397ece7a64bb61c5618f32a91c6 \ No newline at end of file diff --git a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/_remote.repositories b/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/_remote.repositories deleted file mode 100644 index d66d298c6b7d55ce15723688b478c03a6e2c921e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:44 CST 2019 -jooq-codegen-maven-3.8.4.jar>repo.jenkins-ci.org= -jooq-codegen-maven-3.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.jar b/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.jar deleted file mode 100644 index f215fbf60fcb6633095f9cd3b0fbca7730f2380e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.jar and /dev/null differ diff --git a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.jar.sha1 b/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.jar.sha1 deleted file mode 100644 index fa92bf630f7446c6960da1e2ef717e6062e668a9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2926e4bd408d32e1af824c8de645891a4e484f7e \ No newline at end of file diff --git a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.pom b/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.pom deleted file mode 100644 index 7cf2bff37c05dd6ddb3262bf3cef066443795ff9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.pom +++ /dev/null @@ -1,98 +0,0 @@ - - - 4.0.0 - - - org.jooq - jooq-parent - 3.8.4 - - - org.jooq - jooq-codegen-maven - jOOQ Codegen Maven - maven-plugin - - - - Apache License, Version 2.0 - http://www.jooq.org/inc/LICENSE.txt - repo - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - - true - - - - mojo-descriptor - - descriptor - - - - - - help-goal - - helpmojo - - - - - - - - - - org.jooq - jooq-codegen - - - junit - junit - 3.8.1 - test - - - - org.apache.maven - maven-plugin-api - 2.2.1 - - - org.apache.maven - maven-project - 2.2.1 - jar - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.3 - provided - - - diff --git a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.pom.sha1 b/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.pom.sha1 deleted file mode 100644 index 85b2088df33a266c506e7ebdd61a8f3b6d9d7d69..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-codegen-maven/3.8.4/jooq-codegen-maven-3.8.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -333cba881b17fcaa20ce9f32c40dd699c523c2e4 \ No newline at end of file diff --git a/artifacts/m2/org/jooq/jooq-parent/3.8.4/_remote.repositories b/artifacts/m2/org/jooq/jooq-parent/3.8.4/_remote.repositories deleted file mode 100644 index 4ec2a374c25e56c3f25f22980430f503f5189bf6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-parent/3.8.4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:42 CST 2019 -jooq-parent-3.8.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/jooq/jooq-parent/3.8.4/jooq-parent-3.8.4.pom b/artifacts/m2/org/jooq/jooq-parent/3.8.4/jooq-parent-3.8.4.pom deleted file mode 100644 index aafd3c434d9b775233e9096c1a84fa986efe18b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-parent/3.8.4/jooq-parent-3.8.4.pom +++ /dev/null @@ -1,465 +0,0 @@ - - - - 4.0.0 - - - oss-parent - org.sonatype.oss - 7 - - - org.jooq - jooq-parent - 3.8.4 - pom - - jOOQ Parent - - - jOOQ effectively combines complex SQL, typesafety, source code generation, active records, - stored procedures, advanced data types, and Java in a fluent, intuitive DSL. - - - http://www.jooq.org - - - - Apache License, Version 2.0 - http://www.jooq.org/inc/LICENSE.txt - repo - - - - - - - - - - - - https://github.com/jOOQ/jOOQ.git - https://github.com/jOOQ/jOOQ.git - git://github.com/jOOQ/jOOQ.git - - - - GitHub - http://github.com/jOOQ/jOOQ/issues - - - - - - org.jooq - jooq - ${project.version} - - - org.jooq - jooq-codegen - ${project.version} - - - org.jooq - jooq-codegen-maven - ${project.version} - - - org.jooq - jooq-meta - ${project.version} - - - org.jooq - jooq-meta-extensions - ${project.version} - - - org.jooq - jooq-scala - ${project.version} - - - - - - ${project.artifactId}-${project.version} - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - - false - true - 512m - 256m - UTF-8 - ${java.version} - ${java.version} - true - lines,vars,source - - - -Xlint:varargs - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.7 - - - add-test-sources - generate-test-sources - - add-test-source - - - - ${project.build.directory}/generated-test-sources/jooq-h2 - - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - UTF-8 - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.5 - - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.9 - - true - true - - - - - - - jOOQ - jOOQ-codegen - jOOQ-codegen-maven - jOOQ-meta - jOOQ-meta-extensions - jOOQ-scala - - - - - - - - - - - - - - - - - - - default - - 1.8 - - - true - - - - - release-oss - - 1.8 - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - true - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar - - - - - true - true - - - - - true - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - bundle-sources - package - - jar - - - - - 1024 - UTF-8 - protected - true - - - -Xdoclint:none - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/artifacts/m2/org/jooq/jooq-parent/3.8.4/jooq-parent-3.8.4.pom.sha1 b/artifacts/m2/org/jooq/jooq-parent/3.8.4/jooq-parent-3.8.4.pom.sha1 deleted file mode 100644 index 759a7542a13a95af139d6a140e473a7d600c8090..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/jooq/jooq-parent/3.8.4/jooq-parent-3.8.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -5a985be9c5815259fa8be30a613861e85326657b \ No newline at end of file diff --git a/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/_remote.repositories b/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/_remote.repositories deleted file mode 100644 index b6e9170d1488c85e0e9b0aaa07bc574d8cca1aab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:11 CST 2019 -jetty-util-6.1.25.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar b/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar deleted file mode 100644 index 70018d311c32b1eec6bf095ee326ff1bf3a4990d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar and /dev/null differ diff --git a/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 b/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 deleted file mode 100644 index 4cfcc06ae3203136a59310dbc087796c3dda51fd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5527b01ad9c4a12b4101f9ddca31c04ac4fe8614 \ No newline at end of file diff --git a/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/_remote.repositories b/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/_remote.repositories deleted file mode 100644 index b266cd112728f46305860e5e02f0cc67ed05a42a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:10 CST 2019 -jetty-6.1.25.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar b/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar deleted file mode 100644 index 50fd70083c6ee329007adb3a9a75b975d1d95b3f..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar and /dev/null differ diff --git a/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 b/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 deleted file mode 100644 index 6748dad5b3feb8f3a28f64e3c6590b88f985c0c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b242826712e0e5146bf57f07394691cf8cb5f5cd \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories deleted file mode 100644 index b2937f046d164ef40b47d880efae2973861bf477..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -asm-analysis-6.2.1.jar>repo.jenkins-ci.org= -asm-analysis-6.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar b/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar deleted file mode 100644 index 4e0f764e6da42cfe324128c0eb65d776bb1ada6d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar.sha1 deleted file mode 100644 index 0bbfc0d35569ee8a85be399f71d71339227e902e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -e8b876c5ccf226cae2f44ed2c436ad3407d0ec1d \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom b/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom deleted file mode 100644 index aa67b8aff4680ce7fa1743b0dfa418d40f4ad808..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-analysis - 6.2.1 - 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 - 6.2.1 - compile - - - org.ow2.asm - asm-test - 6.2.1 - 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-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 deleted file mode 100644 index 6ae55e5c456168479a064f007d0cbc1dbadafff4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cef816eba61efd5c2d599c3ae316b363a511b419 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-analysis/7.0/_remote.repositories deleted file mode 100644 index 84d0fb6cd7b6b627ac75606bfa850c399dafbf30..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -asm-analysis-7.0.pom>repo.jenkins-ci.org= -asm-analysis-7.0.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar b/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar deleted file mode 100644 index 341d0c5dca97f4d4f2daabfff9f3a5b412a37f2b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar.sha1 deleted file mode 100644 index 9019e6a16d606b76311544b009c77650e190fd33..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -4b310d20d6f1c6b7197a75f1b5d69f169bc8ac1f \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom b/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom deleted file mode 100644 index 80d07b95bca766b49a774aa360323de62b8715a6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-analysis - 7.0 - 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 - compile - - - org.ow2.asm - asm-test - 7.0 - 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/asm-analysis-7.0.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom.sha1 deleted file mode 100644 index 1a5ab1e5f714b694e41298b7887500bcf69e72f9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -20186ccd5304839aea81893ebc65addc6ad4ca5e \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/_remote.repositories deleted file mode 100644 index ec5bd529470e26c613d4dca9b3f967975aaaa5f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -asm-commons-6.2.1.jar>repo.jenkins-ci.org= -asm-commons-6.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar b/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar deleted file mode 100644 index 42cdfeeec2204cfdd944f3d75cded4f1e4bfe640..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar.sha1 deleted file mode 100644 index 0667ff9f7d146157a99de7550cb917a56e3b1602..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -eaf31376d741a3e2017248a4c759209fe25c77d3 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom b/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom deleted file mode 100644 index 4859fc1cf801533d0e6d612841718134b5519ba2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-commons - 6.2.1 - 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 - 6.2.1 - compile - - - org.ow2.asm - asm-tree - 6.2.1 - compile - - - org.ow2.asm - asm-analysis - 6.2.1 - compile - - - org.ow2.asm - asm-util - 6.2.1 - test - - - org.ow2.asm - asm-test - 6.2.1 - 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-commons/6.2.1/asm-commons-6.2.1.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 deleted file mode 100644 index dc0e4585702d68a960f54cd61c33f34c73126a83..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -16e56569d8bbf574809bb51b6a8bd8ae6bc5d137 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-commons/7.0/_remote.repositories deleted file mode 100644 index 0655188db6045278d957ad0415d5008afab5afad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/7.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -asm-commons-7.0.jar>repo.jenkins-ci.org= -asm-commons-7.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar b/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar deleted file mode 100644 index ba0de6cd49dc34cb2ea5423b1a16f1122a44bdca..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar.sha1 deleted file mode 100644 index f70896e02066ab676e11cfbb6955351eb1676e92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -478006d07b7c561ae3a92ddc1829bca81ae0cdd1 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom b/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom deleted file mode 100644 index 48e1a9dcf715023209a7c7c7029ff87f678239b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom +++ /dev/null @@ -1,120 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-commons - 7.0 - 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 - compile - - - org.ow2.asm - asm-tree - 7.0 - compile - - - org.ow2.asm - asm-analysis - 7.0 - compile - - - org.ow2.asm - asm-util - 7.0 - test - - - org.ow2.asm - asm-test - 7.0 - 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/asm-commons-7.0.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom.sha1 deleted file mode 100644 index 028bd57c5f15d50edfe0e0d7dc8721d43c5da670..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7b5da826fcab00989f748b7c4f72e75e668da210 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/_remote.repositories deleted file mode 100644 index 7260be81b3a489cff98577a36bf1edd10d8cdccd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:44 CST 2019 -asm-parent-5.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom b/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom deleted file mode 100644 index e67a5d3c69c2f7d1bfc9596cc09c9393037a5684..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - ow2 - org.ow2 - 1.3 - - - 4.0.0 - - asm-parent - org.ow2.asm - 5.0.2 - pom - - ASM - A very small and fast Java bytecode manipulation framework - http://asm.objectweb.org/ - - - ObjectWeb - http://www.objectweb.org/ - - 2000 - - - - BSD - http://asm.objectweb.org/license.html - - - - - - Eric Bruneton - ebruneton - ebruneton@free.fr - - Creator - Java Developer - - - - Eugene Kuleshov - eu - eu@javatx.org - - Java Developer - - - - Remi Forax - forax - forax@univ-mlv.fr - - Java Developer - - - - - - scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/trunk - scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/trunk - http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/trunk/ - - - - http://forge.objectweb.org/tracker/?group_id=23 - - - - - - - asm - ${project.groupId} - ${project.version} - - - - asm-tree - ${project.groupId} - ${project.version} - - - - asm-analysis - ${project.groupId} - ${project.version} - - - - asm-commons - ${project.groupId} - ${project.version} - - - - asm-util - ${project.groupId} - ${project.version} - - - - asm-xml - ${project.groupId} - ${project.version} - - - - - - - - ASM Users List - sympa@objectweb.org?subject=subscribe%20asm - sympa@objectweb.org?subject=unsubscribe%20asm - asm@objectweb.org - http://www.objectweb.org/wws/arc/asm - - - ASM Team List - sympa@objectweb.org?subject=subscribe%20asm-team - sympa@objectweb.org?subject=unsubscribe%20asm-team - asm-team@objectweb.org - http://www.objectweb.org/wws/arc/asm-team - - - - diff --git a/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom.sha1 deleted file mode 100644 index 042b336d74cb7de1a5028319308cf0f77c9311bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-parent/5.0.2/asm-parent-5.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a941071389f3dbc10ec5c8b106042e2858bed5ef \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/_remote.repositories deleted file mode 100644 index a2c7c2d485342b4e8b979b0c42080d0f4095711c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -asm-tree-6.2.1.jar>repo.jenkins-ci.org= -asm-tree-6.2.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar b/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar deleted file mode 100644 index 9b17711dee5c6cd289f97dc7b0b79f59dc054139..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar.sha1 deleted file mode 100644 index 4d084c1a68c74189548a8337224b232a96799932..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -332b022092ecec53cdb6272dc436884b2d940615 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom b/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom deleted file mode 100644 index abbd1570b098478206f12eacc9fe9544c913dba3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-tree - 6.2.1 - 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 - 6.2.1 - compile - - - org.ow2.asm - asm-test - 6.2.1 - 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-tree/6.2.1/asm-tree-6.2.1.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 deleted file mode 100644 index 2bda6097ef2cb16b90d6d47abd23be57d050beca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bad0a0614f250e411c769f8be2c0d57e027ecca \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0/_remote.repositories b/artifacts/m2/org/ow2/asm/asm-tree/7.0/_remote.repositories deleted file mode 100644 index 15563a6ba65a8edbe21d3c1cb2f05cc882d8d66b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/7.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -asm-tree-7.0.jar>repo.jenkins-ci.org= -asm-tree-7.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar b/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar deleted file mode 100644 index 243c3cbf219a08690ade0a98e0e670ae563b324d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar.sha1 b/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar.sha1 deleted file mode 100644 index afabf0a8cbafeb1677d298d9d271404f3d9989a6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -29bc62dcb85573af6e62e5b2d735ef65966c4180 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom b/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom deleted file mode 100644 index 7106d06d14fc9183cdd36c61cdcaae37a9c46038..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom +++ /dev/null @@ -1,102 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm-tree - 7.0 - 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 - compile - - - org.ow2.asm - asm-test - 7.0 - 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/asm-tree-7.0.pom.sha1 b/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom.sha1 deleted file mode 100644 index 936a470dab83f8de855206a489ad1ea5c3b3022d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9a26ff62a5b01e4fa15ce96fcdb78738817d3066 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/5.0.2/_remote.repositories b/artifacts/m2/org/ow2/asm/asm/5.0.2/_remote.repositories deleted file mode 100644 index f9f1d2688b8713aa72193e2232ffcef7b0c0600a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/5.0.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -asm-5.0.2.pom>repo.jenkins-ci.org= -asm-5.0.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar b/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar deleted file mode 100644 index d3e6982c0874a7c948d1bf95018e4611f5de8d65..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar.sha1 b/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar.sha1 deleted file mode 100644 index 8ba7ddea86de35629f7279e3abb39dd71814a15f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -baa28ca0269720d94c9f0cafef35a9ac63991de7 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom b/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom deleted file mode 100644 index 16d7ab8b87bc4a89700d3ba08d5be04c10034c22..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom +++ /dev/null @@ -1,44 +0,0 @@ - - - - 4.0.0 - - - asm-parent - org.ow2.asm - 5.0.2 - - - ASM Core - asm - jar - - diff --git a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom.sha1 b/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom.sha1 deleted file mode 100644 index f3aee026ba88614313dfb7671c28936997c7b0ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/5.0.2/asm-5.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8431de614ac151b4dd5077db8a7f1a3a401add80 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/6.2.1/_remote.repositories b/artifacts/m2/org/ow2/asm/asm/6.2.1/_remote.repositories deleted file mode 100644 index c4de1081ae52fcac822e90290e86fb075af81778..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/6.2.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:41:10 CST 2019 -asm-6.2.1.pom>repo.jenkins-ci.org= -asm-6.2.1.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar b/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar deleted file mode 100644 index cc007926627bbe04d02cbf78e5b83065ffcc2cd5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar.sha1 b/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar.sha1 deleted file mode 100644 index 7ab54302a7c85e9bbc48ee330a8d28299fcd79ff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c01b6798f81b0fc2c5faa70cbe468c275d4b50c7 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom b/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom deleted file mode 100644 index 4b4b3187be00a711250397936dedc9765ece6be1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom +++ /dev/null @@ -1,96 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm - 6.2.1 - 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.1 - 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.1/asm-6.2.1.pom.sha1 b/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 deleted file mode 100644 index c8e16564849cd37989c8c99e617c8942739d7d47..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bc91be104d9292ff1dcc3dbf1002b7c320e767d \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/7.0/_remote.repositories b/artifacts/m2/org/ow2/asm/asm/7.0/_remote.repositories deleted file mode 100644 index f2c5aca704d542575b39f7396bc1ef9d7e6d74b9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/7.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -asm-7.0.jar>repo.jenkins-ci.org= -asm-7.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.jar b/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.jar deleted file mode 100644 index 2cf38f46167192e6d65c4906c77cd7e3dce5598d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.jar and /dev/null differ diff --git a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.jar.sha1 b/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.jar.sha1 deleted file mode 100644 index 7356eeb0733fe1c5eac36b6f51fa15d1fa7b2b5f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -d74d4ba0dee443f68fb2dcb7fcdb945a2cd89912 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.pom b/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.pom deleted file mode 100644 index cda9698abaccb2e0ef40ebc8d49a5a0a878111da..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.pom +++ /dev/null @@ -1,96 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - - org.ow2.asm - asm - 7.0 - 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 - 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/asm-7.0.pom.sha1 b/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.pom.sha1 deleted file mode 100644 index adfbde10b6d0c3fb15df136aa6106abbdea7a620..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/asm/asm/7.0/asm-7.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c6b547ce67397df979bde680a1d0cdf8ceb63f6a \ No newline at end of file diff --git a/artifacts/m2/org/ow2/ow2/1.3/_remote.repositories b/artifacts/m2/org/ow2/ow2/1.3/_remote.repositories deleted file mode 100644 index 835ab3b7659302797c1725c0add1e077c5f88ea3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/ow2/1.3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:45 CST 2019 -ow2-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/ow2/1.3/ow2-1.3.pom b/artifacts/m2/org/ow2/ow2/1.3/ow2-1.3.pom deleted file mode 100644 index c737f1bb3c228ca8b6567213ffdeaddd90e18a8d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/ow2/1.3/ow2-1.3.pom +++ /dev/null @@ -1,245 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.3 - pom - - OW2 Consortium - - The OW2 Consortium is an open source community committed to making available to everyone - the best and most reliable middleware technology, including generic enterprise applications - and cloud computing technologies. The mission of the OW2 Consortium is to - i) develop open source code for middleware, generic enterprise applications and cloud computing and - ii) to foster a vibrant community and business ecosystem. - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - OW2 Consortium - http://www.ow2.org - - - - http://www.ow2.org - - - - - sauthieg - Guillaume Sauthier - guillaume.sauthier@ow2.org - - - - - - - http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png - - - UTF-8 - - - http://repository.ow2.org/nexus/content/repositories/snapshots - http://repository.ow2.org/nexus/service/local/staging/deploy/maven2 - - - - - scm:git:git@gitorious.ow2.org:ow2/pom.git - scm:git:git@gitorious.ow2.org:ow2/pom.git - http://gitorious.ow2.org/ow2/pom - - - - - - - - - - ow2.release - OW2 Maven Releases Repository - http://repository.ow2.org/nexus/service/local/staging/deploy/maven2 - - - - - ow2.snapshot - OW2 Maven Snapshots Repository - ${ow2DistMgmtSnapshotsUrl} - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - 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 - - - -Pow2-release - - - - - - - - - - - ow2-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/ow2/ow2/1.3/ow2-1.3.pom.sha1 b/artifacts/m2/org/ow2/ow2/1.3/ow2-1.3.pom.sha1 deleted file mode 100644 index d26792e91f4169b22fd91d583804b49dd9e0712f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/ow2/1.3/ow2-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9792ba820a60e5dd38deb39fcf57bda054e40f95 \ No newline at end of file diff --git a/artifacts/m2/org/ow2/ow2/1.5/_remote.repositories b/artifacts/m2/org/ow2/ow2/1.5/_remote.repositories deleted file mode 100644 index b42c2c33add17324c0cdc825e64a5bbef2611d8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/ow2/1.5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:30 CST 2019 -ow2-1.5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/ow2/ow2/1.5/ow2-1.5.pom b/artifacts/m2/org/ow2/ow2/1.5/ow2-1.5.pom deleted file mode 100644 index ed9c219ee85a2397ce597df31fdba35d8ffbd651..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/ow2/1.5/ow2-1.5.pom +++ /dev/null @@ -1,282 +0,0 @@ - - - 4.0.0 - - org.ow2 - ow2 - 1.5 - pom - - OW2 Consortium - - The OW2 Consortium is an open source community committed to making available to everyone - the best and most reliable middleware technology, including generic enterprise applications - and cloud computing technologies. The mission of the OW2 Consortium is to - i) develop open source code for middleware, generic enterprise applications and cloud computing and - ii) to foster a vibrant community and business ecosystem. - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - OW2 Consortium - http://www.ow2.org - - - - http://www.ow2.org - - - - - sauthieg - Guillaume Sauthier - guillaume.sauthier@ow2.org - - - - - - - http://www.ow2.org/xwiki/bin/download/NewsEvents/MarketingResources/ow2_logo_small_transp.png - - - UTF-8 - - - http://repository.ow2.org/nexus/content/repositories/snapshots - http://repository.ow2.org/nexus/service/local/staging/deploy/maven2 - source-release - ow2-release - 1.0.1 - - - 2.3 - 1.4 - 2.8.1 - 2.1.2 - 2.3.2 - - - - - scm:git:git@gitorious.ow2.org:ow2/pom.git - scm:git:git@gitorious.ow2.org:ow2/pom.git - http://gitorious.ow2.org/ow2/pom - ow2-1.5 - - - - - - - - - - ow2.release - OW2 Maven Releases Repository - ${ow2DistMgmtReleasesUrl} - - - - - ow2.snapshot - OW2 Maven Snapshots Repository - ${ow2DistMgmtSnapshotsUrl} - - - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - 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 - ${maven-release-plugin.version} - - forked-path - - - false - - ${ow2ReleaseProfiles} - - - - - - - - - - - ow2-release - - - - - - - org.apache.maven.plugins - maven-source-plugin - ${maven-source-plugin.version} - - - - attach-sources - - jar-no-fork - - - - - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${maven-javadoc-plugin.version} - - - - attach-javadocs - - jar - - - - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - ${maven-gpg-plugin.version} - - - sign-artifacts - verify - - - sign - - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${maven-assembly-plugin.version} - - - source-release-assembly - package - - single - - - - true - - ${ow2SourceAssemblyDescriptorRef} - - - gnu - - - - - - org.ow2 - maven-source-assemblies - ${maven-source-assemblies.version} - - - - - - - - - - - - diff --git a/artifacts/m2/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 b/artifacts/m2/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 deleted file mode 100644 index 546a3d2786c65d753d534563c02dd54628ab87d2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/ow2/ow2/1.5/ow2-1.5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cf7dff371808c4da0813fae553b0d70bcb4a3066 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories deleted file mode 100644 index 249f9b9aee29c14a7965afec47aa2fa66e34f572..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -jcl-over-slf4j-1.5.6.jar>repo.jenkins-ci.org= -jcl-over-slf4j-1.5.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar deleted file mode 100644 index e552ad8d79f90e018482f4d5dced7d48aa9fcf9c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar.sha1 b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar.sha1 deleted file mode 100644 index a22359975649ff2178aa6baa2b9086e92ffabf5b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -629680940b7dcb02c3904deb85992b462c42e272 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom deleted file mode 100644 index 577c38eb0cd000de1996a9708b4b6992722316b2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom +++ /dev/null @@ -1,70 +0,0 @@ - - - - org.slf4j - slf4j-parent - 1.5.6 - - - 4.0.0 - - org.slf4j - jcl-over-slf4j - jar - JCL 1.1.1 implemented over SLF4J - - http://www.slf4j.org - - JCL 1.1.1 implementation over SLF4J - - - - - org.slf4j - slf4j-nop - ${project.version} - provided - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.version} - ${project.description} - ${project.version} - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom.sha1 b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom.sha1 deleted file mode 100644 index 9f17f29eaac08e05d72846eb8f8f13ca3bd667a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8aa25adef55174f1436073e551953c2f74a5c71b \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/_remote.repositories b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/_remote.repositories deleted file mode 100644 index 556ac31d04d3bd86c0c3875e6dde606aa449090f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -jcl-over-slf4j-1.7.21.jar>repo.jenkins-ci.org= -jcl-over-slf4j-1.7.21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.jar b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.jar deleted file mode 100644 index 12ba1261a2f208f7c1cd137e2d10b0a8fa6b0ba2..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.jar.sha1 b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.jar.sha1 deleted file mode 100644 index eda6b883fb5de5f96fcfb38d2e122bfc158f7cd0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -331b564a3a42f002a0004b039c1c430da89062cd \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.pom b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.pom deleted file mode 100644 index ec0c4f3f876bee7f775b095afaee50982e4d1fed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - - - org.slf4j - slf4j-parent - 1.7.21 - - - 4.0.0 - - jcl-over-slf4j - jar - JCL 1.1.1 implemented over SLF4J - JCL 1.1.1 implemented over SLF4J - http://www.slf4j.org - - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-jdk14 - test - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.pom.sha1 b/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.pom.sha1 deleted file mode 100644 index e423f880c560d669eeaf8382e845ff8a93239aff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jcl-over-slf4j/1.7.21/jcl-over-slf4j-1.7.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -460590727019ccdf483998f10aa5c928a9d5daea \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/_remote.repositories b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/_remote.repositories deleted file mode 100644 index e0dd3ba0751b4d35a393ea83622fb5a0b2c1c213..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -jul-to-slf4j-1.7.21.jar>repo.jenkins-ci.org= -jul-to-slf4j-1.7.21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar deleted file mode 100644 index 7e3aba12fd08265c788563e685dabd457c46c622..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar.sha1 b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar.sha1 deleted file mode 100644 index 699c699d377dfd192d73c827a5aa6bf515de7273..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -2f22c882ffa479d1e9ff4eb0e8e2c29f2a0871ed \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.pom b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.pom deleted file mode 100644 index b4d604d181a1cde2b313a7269303153eeb8e15bc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.pom +++ /dev/null @@ -1,34 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 1.7.21 - - - 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 - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.pom.sha1 b/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.pom.sha1 deleted file mode 100644 index 37f82cd13470498278ecbebedd8af698ac7030c3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0ddf5eb513d3682acc49b66e12f6b242e5098ab \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/_remote.repositories b/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/_remote.repositories deleted file mode 100644 index 0b3cebbe88ec624d998e407597861059e10f482c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -log4j-over-slf4j-1.7.21.jar>repo.jenkins-ci.org= -log4j-over-slf4j-1.7.21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.jar b/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.jar deleted file mode 100644 index 7f2d6fcc8bc519296a169e95badfb32a7390be82..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.jar.sha1 b/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.jar.sha1 deleted file mode 100644 index 2753bd80f1fdeb8c4db749a67fd188f704aa498e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3700d97464d99bdcd42c0177d6e7951c94d75ff \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.pom b/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.pom deleted file mode 100644 index 4a2611746d9b94bfdb9d9fdc7850fb78a4cb97c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.pom +++ /dev/null @@ -1,40 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 1.7.21 - - - - log4j-over-slf4j - jar - Log4j Implemented Over SLF4J - Log4j implemented over SLF4J - - http://www.slf4j.org - - - - Apache Software Licenses - http://www.apache.org/licenses/LICENSE-2.0.txt - - - - - - org.slf4j - slf4j-api - - - org.slf4j - slf4j-jdk14 - test - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.pom.sha1 b/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.pom.sha1 deleted file mode 100644 index ba908a2984282e9ea780d49d91560d971cd9f8a3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/log4j-over-slf4j/1.7.21/log4j-over-slf4j-1.7.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -dfe25e2927b1abbb600131ead37a4688cde46336 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-api/1.5.6/_remote.repositories deleted file mode 100644 index 7f44dbe7dd0e7587720d5252727f558c568abae7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -slf4j-api-1.5.6.jar>repo.jenkins-ci.org= -slf4j-api-1.5.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar b/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar deleted file mode 100644 index d794252336e627b38e183beaaa66c62192a97135..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar.sha1 b/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar.sha1 deleted file mode 100644 index 51c9c60eeec140d60abb4139ecac5619d1268223..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ec9b7142625dfa1dcaf22db99ecb7c555ffa714d \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom b/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom deleted file mode 100644 index babe72538a3700b3dd45edfc85dc829446eff88c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom +++ /dev/null @@ -1,101 +0,0 @@ - - - - org.slf4j - slf4j-parent - 1.5.6 - - - 4.0.0 - - org.slf4j - slf4j-api - jar - SLF4J API Module - - http://www.slf4j.org - The slf4j API - - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - once - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.version} - ${project.description} - ${project.version} - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - 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.codehaus.mojo - clirr-maven-plugin - - 1.5.3 - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom.sha1 deleted file mode 100644 index 017b35b85f25df1912ee07a885625eea50e7ee01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b79729ffc12292c0ec755db12360486066f6fd34 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-api/1.7.21/_remote.repositories deleted file mode 100644 index 90eb77890a3cf8698a1753587e8fae7a0847c8e1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -slf4j-api-1.7.21.jar>repo.jenkins-ci.org= -slf4j-api-1.7.21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar b/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar deleted file mode 100644 index 2a5c33ec55491e5b4be53525d8d7242e53e020c0..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar.sha1 b/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar.sha1 deleted file mode 100644 index f72d992e0694ff5c9423e9ab3d233f740bd9c90e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -139535a69a4239db087de9bab0bee568bf8e0b70 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom b/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom deleted file mode 100644 index dc9466c365aeb580994754c96061fe1031c2d57a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom +++ /dev/null @@ -1,87 +0,0 @@ - - - - 4.0.0 - - - org.slf4j - slf4j-parent - 1.7.21 - - - 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 - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom.sha1 deleted file mode 100644 index 44b8fee20088378abdaacd5590fb2619dbaa87eb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -da1347f4af6398d8c9cece95ca215baf8570449b \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories deleted file mode 100644 index 139b7f8ad6b20c0bb4e661814fc8afb9c3e398db..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -slf4j-jdk14-1.5.6.jar>repo.jenkins-ci.org= -slf4j-jdk14-1.5.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar b/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar deleted file mode 100644 index 1ce0a28e7d1ddcc2564ab6d2d87f6ca266ce5dbc..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar and /dev/null differ diff --git a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar.sha1 b/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar.sha1 deleted file mode 100644 index babf5d95af62f5822bc41f80b13979eb8b748bca..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -cc383fbd07dd1826bbcba1b907bbdc0b5be627f1 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom b/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom deleted file mode 100644 index 6dbc47fcc0a726eda5327caadaaba3d90eb46504..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom +++ /dev/null @@ -1,69 +0,0 @@ - - - - org.slf4j - slf4j-parent - 1.5.6 - - - 4.0.0 - - org.slf4j - slf4j-jdk14 - - jar - SLF4J JDK14 Binding - - http://www.slf4j.org - - The slf4j JDK14 binding - - - - - org.slf4j - slf4j-api - - - - org.slf4j - slf4j-api - test-jar - ${project.version} - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.4 - 1.4 - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${project.version} - ${project.description} - ${project.version} - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom.sha1 deleted file mode 100644 index be19dbdcbb62444ea2746756c820be3bd26b7ef4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -cbc0f6b542435be20eba2fc698cf209e606ec1b4 \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/_remote.repositories deleted file mode 100644 index 20395793236421c9602d88790602991ac3dfab2c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:04 CST 2019 -slf4j-parent-1.5.6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom b/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom deleted file mode 100644 index bed695d734c70e18b5f2e22f128d79374a67426d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom +++ /dev/null @@ -1,290 +0,0 @@ - - - - 4.0.0 - - org.slf4j - slf4j-parent - 1.5.6 - - pom - SLF4J - - http://www.slf4j.org - - - QOS.ch - http://www.qos.ch - - 2005 - - - - - - slf4j-api - slf4j-simple - slf4j-nop - slf4j-jdk14 - slf4j-log4j12 - slf4j-jcl - slf4j-ext - jcl-over-slf4j - jcl104-over-slf4j - log4j-over-slf4j - jul-to-slf4j - integration - slf4j-site - slf4j-migrator - - - - - junit - junit - 3.8.1 - test - - - - - - - - - org.slf4j - slf4j-api - ${project.version} - - - - log4j - log4j - 1.2.14 - - - - - - - - - - src/main/resources - true - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.3 - 1.3 - - - - - org.apache.maven.plugins - maven-surefire-plugin - - once - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-source-plugin - - - package - - jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - true - 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.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent - - - - Jakarta Commons Logging packages - org.apache.commons.* - - - - Apache log4j - org.apache.log4j - - - - java.util.logging (JUL) to SLF4J bridge - org.slf4j.bridge - - - - - - - - - - - - - skipTests - - true - - - - osgi - - osgi-over-slf4j - slf4j-osgi-test-bundle - slf4j-osgi-integration-test - - - - - m2apache.snapshots - http://people.apache.org/repo/m2-snapshot-repository - - false - - - true - - - - - springframework.org - Springframework Maven SNAPSHOT Repository - http://static.springframework.org/maven2-snapshots/ - - true - - - - - - - - apache.snapshots - Apache Snapshot Plugin Repository - http://people.apache.org/repo/m2-snapshot-repository - - false - - - true - - - - - - - - - - - - - org.apache.maven.plugins - maven-site-plugin - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - maven-assembly-plugin - 2.1 - - - - src/main/assembly/source.xml - - - slf4j-${project.version} - false - target/site/dist/ - - - - - org.apache.maven.plugins - maven-jxr-plugin - - - - jxr - test-jxr - - - - - true - target/site/api/ - true - - - - - - - - - - - scm:svn:http://svn.slf4j.org/repos/slf4j/trunk - scm:svn:https://svn.slf4j.org/repos/slf4j/trunk - http://svn.slf4j.org/viewvc/slf4j/trunk/ - - - - - pixie - scp://pixie/var/www/www.slf4j.org/htdocs/ - - - - pixie - scp://pixie/var/mvnrepo/ - - - - - diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom.sha1 deleted file mode 100644 index a57cf499e3170195cf830975cdd58c23bb985d6c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9ef315b2841b9744cacc70c532b511f9d6876add \ No newline at end of file diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/_remote.repositories b/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/_remote.repositories deleted file mode 100644 index 13189dec8ad58e3b23f1e76647a3d8ff545b2e97..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:15 CST 2019 -slf4j-parent-1.7.21.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom b/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom deleted file mode 100644 index bafd42de8aef5c91bf88d4c9753291123dc91b32..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom +++ /dev/null @@ -1,422 +0,0 @@ - - - - 4.0.0 - - org.slf4j - slf4j-parent - 1.7.21 - - 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 - 2.10.2 - - - - - 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-surefire-plugin - 2.19.1 - - 2C - true - plain - false - - **/AllTest.java - **/PackageTest.java - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - package - - jar - - - - - - - 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} - - - 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} - - - 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 - - - - - - - - -
- - - - - - tao - scp://tao.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.21/slf4j-parent-1.7.21.pom.sha1 b/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom.sha1 deleted file mode 100644 index ca0c65564d8823a37d0bceb1c7e1ac21711a3892..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/slf4j/slf4j-parent/1.7.21/slf4j-parent-1.7.21.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b22ffef7548ebea1efadf5e03bc1a3d2999c9528 \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/parent/parent/48/_remote.repositories b/artifacts/m2/org/sonarsource/parent/parent/48/_remote.repositories deleted file mode 100644 index 92f3440b739915e0bac1d63732b04b1ba355b87b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/parent/parent/48/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:47 CST 2019 -parent-48.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonarsource/parent/parent/48/parent-48.pom b/artifacts/m2/org/sonarsource/parent/parent/48/parent-48.pom deleted file mode 100644 index 1701d96452f4ff1608473dfa61d0795f6d1a515a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/parent/parent/48/parent-48.pom +++ /dev/null @@ -1,759 +0,0 @@ - - - 4.0.0 - - org.sonarsource.parent - parent - 48 - pom - - SonarSource OSS parent - Parent pom of SonarSource public projects - http://docs.sonarqube.org/display/PLUG/Plugin+Library - 2009 - - - - GNU LGPL 3 - http://www.gnu.org/licenses/lgpl.txt - repo - - - - - - ehartmann - Eric Hartmann - SonarSource - +1 - - - henryju - Julien Henry - SonarSource - +1 - - - Godin - Evgeny Mandrikov - SonarSource - +1 - - - olivier.gaudin - Olivier Gaudin - SonarSource - +1 - - - simonbrandhof - Simon Brandhof - SonarSource - +1 - - - - - - SonarQue mailing list - sonarqube+subscribe@googlegroups.com - sonarqube+unsubscribe@googlegroups.com - sonarqube@googlegroups.com - - - - - - ${maven.min.version} - - - - scm:git:https://github.com/SonarSource/parent-oss.git - scm:git:git@github.com:SonarSource/parent-oss.git - https://github.com/SonarSource/parent-oss - HEAD - - - jira - http://jira.sonarsource.com - - - travis-ci - https://travis-ci.org/SonarSource/ - - - - bintray - https://api.bintray.com/maven/sonarsource/SonarQube/${project.groupId}/;publish=1 - - - ${sonar.snapshotRepository.id} - Sonar plugins snapshot repository - false - ${sonar.snapshotRepository.url} - - - - - UTF-8 - 3.0.5 - 1.8 - ${maven.build.timestamp} - yyyy-MM-dd'T'HH:mm:ssZ - snapshot - - - - - - 3.1.0 - 3.0.0 - 3.7.0 - 3.0.2 - 2.8.2 - 3.0.0-M1 - 2.22.0 - ${version.surefire.plugin} - 2.5.2 - 1.4 - 3.0.2 - 1.9 - 3.0.0-M1 - 3.5 - 3.0.2 - 3.1.0 - 3.0.1 - 3.7 - 2.6.1 - - 1.14 - 1.4 - 1.0-beta-1 - - 1.18.0.372 - 1.8 - - 1.16 - 3.0 - - - - - 4.14.0.11784 - - - GNU LGPL v3 - SonarSource SA - ${project.name} - ${project.inceptionYear}-2018 - mailto:info AT sonarsource DOT com - - parent-oss - - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.assembly.plugin} - - - - - 420 - - 493 - 493 - - - - - org.codehaus.mojo - buildnumber-maven-plugin - ${version.buildnumber.plugin} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.clean.plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.compiler.plugin} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.dependency.plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.deploy.plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.enforcer.plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.failsafe.plugin} - - - org.apache.maven.plugins - maven-install-plugin - ${version.install.plugin} - - - - org.codehaus.mojo - license-maven-plugin - ${version.codehaus.license.plugin} - - true - true - compile - apache_v2|bouncy_castle|bsd|cddl_gpl|cddl_v1|epl_v1|h2|jaxen|lgpl_v2_1|lgpl_v3|mit|public_domain|tmate - - - agpl_v3|AGPL 3|GNU Affero General Public License (AGPL) version 3.0|AGPL 3.0 - apache_v2|Apache 2|Apache 2.0|Apache Public License 2.0|The Apache Software License, Version 2.0|Apache License, Version 2.0|Apache License, version 2.0|Apache Software Licenses|Apache License Version 2.0|ASF 2.0|ASL, version 2|The Apache License, Version 2.0 - bouncy_castle|Bouncy Castle Licence - bsd|BSD|BSD License|The BSD License|3-Clause BSD License|The BSD 3-Clause License|New BSD License|New BSD license|BSD 3-Clause|BSD-style license|Trilead Library License (BSD-Like)|Revised BSD|BSD style - cddl_gpl|Dual license: CDDL 1.0 and GPL v2|Dual license consisting of the CDDL v1.0 and GPL v2|CDDL+GPLv2|CDDL+GPL|CDDL+GPL License|Dual license: CDDL 1.1 and GPL v2|Dual license consisting of the CDDL v1.1 and GPL v2|CDDL1_1+GPLv2|Dual License: CDDL 1.0 and GPL V2 with Classpath Exception|CDDL + GPLv2 with classpath exception|CDDL/GPLv2+CE - cddl_v1|CDDL|CDDL 1.0|CDDL 1.1|COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0|Common Development and Distribution License (CDDL) v1.0 - epl_v1|EPL 1.0|Eclipse Public License 1.0|Eclipse Public License - v 1.0|Eclipse Public License, Version 1.0|Eclipse Public License v1.0|EPL - gpl_v2|GPL 2|GNU General Public License (GPL) version 2.0|GPL 2.0|GNU General Public License (GPL)|GNU General Public Library - gpl_v2_cpe|GPL2 w/ CPE - gpl_v3|GPL 3|GNU General Public License (GPL) version 3.0|GNU General Public License, Version 3|GPL 3.0 - h2|The H2 License, Version 1.0 - jaxen|http://jaxen.codehaus.org/license.html|Jaxen - lgpl_v2|LGPL 2.0|GNU LGPL 2.0|GNU Lesser General Public License (LGPL), Version 2.0|GNU Lesser General Public License, version 2.0 - lgpl_v2_1|LGPL 2.1|GNU LGPL 2.1|GNU Lesser General Public License (LGPL), Version 2.1|GNU Lesser General Public License, version 2.1|LGPL, version 2.1 - lgpl_v3|LGPL 3|GNU LGPL 3|GNU LGPL v3|LGPL v.3|GNU LESSER GENERAL PUBLIC LICENSE, Version 3|GNU Lesser General Public Licence|GNU Lesser General Public License|GNU LESSER GENERAL PUBLIC LICENSE - mit|MIT|MIT License|MIT license|The MIT License|The MIT license - public_domain|Public Domain|Public Domain, per Creative Commons CC0|Common Public License Version 1.0 - sonarsource|SonarSource|Commercial - tmate|TMate Open Source License - - - - - org.sonatype.plugins - jarjar-maven-plugin - ${version.jarjar.plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.jar.plugin} - - - - ${project.version} - - ${buildNumber} - ${timestamp} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.javadoc.plugin} - - true - -Xdoclint:none - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.plugin.plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.resources.plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.shade.plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.source.plugin} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.surefire.plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.site.plugin} - - - org.codehaus.mojo - native2ascii-maven-plugin - ${version.native2ascii.plugin} - - - org.sonarsource.sonar-packaging-maven-plugin - sonar-packaging-maven-plugin - ${version.sonar-packaging.plugin} - - - org.codehaus.sonar - sonar-dev-maven-plugin - ${version.sonar-dev.plugin} - - - com.github.genthaler - beanshell-maven-plugin - ${version.beanshell.plugin} - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - false - false - true - 0 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${jdk.min.version} - ${jdk.min.version} - ${project.build.sourceEncoding} - - - - - org.apache.maven.plugins - maven-surefire-plugin - - random - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce - - enforce - - - - - project.description - Project description must be specified (requirement for OSSRH). - - - - project.name - Project name must be specified (requirement for OSSRH). - - - - project.url - Project url must be specified (requirement for OSSRH). - - - - project.licenses - At least on license must be specified (requirement for OSSRH). - - - - project.developers - At least one developer must be specified (requirement for OSSRH). - - - - project.scm.connection - scm section should be defined in project (requirement for OSSRH). - - - - To build this project Maven ${maven.min.version} (or upper) is required. Please install it. - - ${maven.min.version} - - - - To build this project JDK ${jdk.min.version} (or upper) is required. Please install it. - - ${jdk.min.version} - - - - - Build reproducibility : always define plugin versions! - true - true - clean,deploy - - - - - Animal-sniffer throws exception when icu4j version 2.6.1 used. - true - - com.ibm.icu:icu4j:[2.6.1] - - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar-no-fork - - - - - - org.sonarsource.sonar-packaging-maven-plugin - sonar-packaging-maven-plugin - true - - - - - ${buildNumber} - ${timestamp} - - - - - - com.mycila - license-maven-plugin - ${version.mycila.license.plugin} - - - org.sonarsource.license-headers - license-headers - 1.3 - - - -
sonarsource/licenseheaders/${license.name}.txt
- true - true - ${project.build.sourceEncoding} - - ${license.owner} - ${license.title} - ${license.years} - ${license.mailto} - - - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - - - src/*/java/**/*.java - src/**/*.js - src/**/*.ts - src/**/*.tsx - src/**/*.css - src/**/*.less - - - src/test/resources/** - -
- - - enforce-license-headers - validate - - check - - - -
- - com.github.genthaler - beanshell-maven-plugin - - - compute-artifact-display-version - generate-resources - - run - - - - true - - - - -
-
- - - - skipSanityChecks - - - skipSanityChecks - true - - - - true - true - true - - - - - release - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - coverage-per-test - - - org.sonarsource.java - sonar-jacoco-listeners - ${version.sonar-jacoco-listeners} - test - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - listener - org.sonar.java.jacoco.JUnitListener - - - - - - - - - integration-tests - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - integration-test - integration-test - - integration-test - - - - verify - verify - - verify - - - - - - - - - deploy-sonarsource - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-deploy-settings - - enforce - - - - - gitRepositoryName - You must set name of Git repository in your pom - - - ARTIFACTORY_URL - - - ARTIFACTORY_DEPLOY_REPO - - - ARTIFACTORY_DEPLOY_USERNAME - - - ARTIFACTORY_DEPLOY_PASSWORD - - - true - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - ${version.artifactory.plugin} - - - build-info - - publish - - - - - *password*,*PASSWORD*,*secret*,*MAVEN_CMD_LINE_ARGS*,sun.java.command,*token*,*TOKEN*,*LOGIN*,*login* - - true - 60 - - - {{GIT_COMMIT|TRAVIS_COMMIT|APPVEYOR_REPO_COMMIT}} - {{GIT_BRANCH|TRAVIS_BRANCH|APPVEYOR_REPO_BRANCH}} - ${gitRepositoryName} - {{BUILD_ID|TRAVIS_BUILD_NUMBER|APPVEYOR_BUILD_NUMBER}} - - - true - false - true - project,provided - licences-control@sonarsource.com - - - ${env.ARTIFACTORY_URL} - ${env.ARTIFACTORY_DEPLOY_REPO} - ${env.ARTIFACTORY_DEPLOY_USERNAME} - ${env.ARTIFACTORY_DEPLOY_PASSWORD} - true - true - - - ${gitRepositoryName} - {{BUILD_ID|TRAVIS_BUILD_NUMBER|APPVEYOR_BUILD_NUMBER}} - {{CI_BUILD_URL|BUILD_URL}} - {{GIT_COMMIT|TRAVIS_COMMIT|APPVEYOR_REPO_COMMIT}} - - - - - - - - - - -
diff --git a/artifacts/m2/org/sonarsource/parent/parent/48/parent-48.pom.sha1 b/artifacts/m2/org/sonarsource/parent/parent/48/parent-48.pom.sha1 deleted file mode 100644 index 03ad7b45cba38ab7df0df96f8ced4f9405919be1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/parent/parent/48/parent-48.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -93e26efa92213bd4fd1339331d6d6b40c15d2a6c \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/parent/parent/49/_remote.repositories b/artifacts/m2/org/sonarsource/parent/parent/49/_remote.repositories deleted file mode 100644 index 907e3d435a555b4e0a0ebd23342c1f13e93ee4db..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/parent/parent/49/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:30 CST 2019 -parent-49.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonarsource/parent/parent/49/parent-49.pom b/artifacts/m2/org/sonarsource/parent/parent/49/parent-49.pom deleted file mode 100644 index a580508b8db5a79e6ffc73ccc2fd01dd1db925fa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/parent/parent/49/parent-49.pom +++ /dev/null @@ -1,759 +0,0 @@ - - - 4.0.0 - - org.sonarsource.parent - parent - 49 - pom - - SonarSource OSS parent - Parent pom of SonarSource public projects - http://docs.sonarqube.org/display/PLUG/Plugin+Library - 2009 - - - - GNU LGPL 3 - http://www.gnu.org/licenses/lgpl.txt - repo - - - - - - ehartmann - Eric Hartmann - SonarSource - +1 - - - henryju - Julien Henry - SonarSource - +1 - - - Godin - Evgeny Mandrikov - SonarSource - +1 - - - olivier.gaudin - Olivier Gaudin - SonarSource - +1 - - - simonbrandhof - Simon Brandhof - SonarSource - +1 - - - - - - SonarQue mailing list - sonarqube+subscribe@googlegroups.com - sonarqube+unsubscribe@googlegroups.com - sonarqube@googlegroups.com - - - - - - ${maven.min.version} - - - - scm:git:https://github.com/SonarSource/parent-oss.git - scm:git:git@github.com:SonarSource/parent-oss.git - https://github.com/SonarSource/parent-oss - HEAD - - - jira - http://jira.sonarsource.com - - - travis-ci - https://travis-ci.org/SonarSource/ - - - - bintray - https://api.bintray.com/maven/sonarsource/SonarQube/${project.groupId}/;publish=1 - - - ${sonar.snapshotRepository.id} - Sonar plugins snapshot repository - false - ${sonar.snapshotRepository.url} - - - - - UTF-8 - 3.0.5 - 1.8 - ${maven.build.timestamp} - yyyy-MM-dd'T'HH:mm:ssZ - snapshot - - - - - - 3.1.0 - 3.0.0 - 3.7.0 - 3.0.2 - 2.8.2 - 3.0.0-M1 - 2.22.0 - ${version.surefire.plugin} - 2.5.2 - 1.4 - 3.0.2 - 1.9 - 3.0.0-M1 - 3.5 - 3.0.2 - 3.1.0 - 3.0.1 - 3.7 - 2.6.1 - - 1.14 - 1.4 - 1.0-beta-1 - - 1.18.0.372 - 1.8 - - 1.16 - 3.0 - - - - - 4.14.0.11784 - - - GNU LGPL v3 - SonarSource SA - ${project.name} - ${project.inceptionYear}-2019 - mailto:info AT sonarsource DOT com - - parent-oss - - - - - - - org.apache.maven.wagon - wagon-webdav - 1.0-beta-2 - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - ${version.assembly.plugin} - - - - - 420 - - 493 - 493 - - - - - org.codehaus.mojo - buildnumber-maven-plugin - ${version.buildnumber.plugin} - - - org.apache.maven.plugins - maven-clean-plugin - ${version.clean.plugin} - - - org.apache.maven.plugins - maven-compiler-plugin - ${version.compiler.plugin} - - - org.apache.maven.plugins - maven-dependency-plugin - ${version.dependency.plugin} - - - org.apache.maven.plugins - maven-deploy-plugin - ${version.deploy.plugin} - - - org.apache.maven.plugins - maven-enforcer-plugin - ${version.enforcer.plugin} - - - org.apache.maven.plugins - maven-failsafe-plugin - ${version.failsafe.plugin} - - - org.apache.maven.plugins - maven-install-plugin - ${version.install.plugin} - - - - org.codehaus.mojo - license-maven-plugin - ${version.codehaus.license.plugin} - - true - true - compile - apache_v2|bouncy_castle|bsd|cddl_gpl|cddl_v1|epl_v1|h2|jaxen|lgpl_v2_1|lgpl_v3|mit|public_domain|tmate - - - agpl_v3|AGPL 3|GNU Affero General Public License (AGPL) version 3.0|AGPL 3.0 - apache_v2|Apache 2|Apache 2.0|Apache Public License 2.0|The Apache Software License, Version 2.0|Apache License, Version 2.0|Apache License, version 2.0|Apache Software Licenses|Apache License Version 2.0|ASF 2.0|ASL, version 2|The Apache License, Version 2.0 - bouncy_castle|Bouncy Castle Licence - bsd|BSD|BSD License|The BSD License|3-Clause BSD License|The BSD 3-Clause License|New BSD License|New BSD license|BSD 3-Clause|BSD-style license|Trilead Library License (BSD-Like)|Revised BSD|BSD style - cddl_gpl|Dual license: CDDL 1.0 and GPL v2|Dual license consisting of the CDDL v1.0 and GPL v2|CDDL+GPLv2|CDDL+GPL|CDDL+GPL License|Dual license: CDDL 1.1 and GPL v2|Dual license consisting of the CDDL v1.1 and GPL v2|CDDL1_1+GPLv2|Dual License: CDDL 1.0 and GPL V2 with Classpath Exception|CDDL + GPLv2 with classpath exception|CDDL/GPLv2+CE - cddl_v1|CDDL|CDDL 1.0|CDDL 1.1|COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0|Common Development and Distribution License (CDDL) v1.0 - epl_v1|EPL 1.0|Eclipse Public License 1.0|Eclipse Public License - v 1.0|Eclipse Public License, Version 1.0|Eclipse Public License v1.0|EPL - gpl_v2|GPL 2|GNU General Public License (GPL) version 2.0|GPL 2.0|GNU General Public License (GPL)|GNU General Public Library - gpl_v2_cpe|GPL2 w/ CPE - gpl_v3|GPL 3|GNU General Public License (GPL) version 3.0|GNU General Public License, Version 3|GPL 3.0 - h2|The H2 License, Version 1.0 - jaxen|http://jaxen.codehaus.org/license.html|Jaxen - lgpl_v2|LGPL 2.0|GNU LGPL 2.0|GNU Lesser General Public License (LGPL), Version 2.0|GNU Lesser General Public License, version 2.0 - lgpl_v2_1|LGPL 2.1|GNU LGPL 2.1|GNU Lesser General Public License (LGPL), Version 2.1|GNU Lesser General Public License, version 2.1|LGPL, version 2.1 - lgpl_v3|LGPL 3|GNU LGPL 3|GNU LGPL v3|LGPL v.3|GNU LESSER GENERAL PUBLIC LICENSE, Version 3|GNU Lesser General Public Licence|GNU Lesser General Public License|GNU LESSER GENERAL PUBLIC LICENSE - mit|MIT|MIT License|MIT license|The MIT License|The MIT license - public_domain|Public Domain|Public Domain, per Creative Commons CC0|Common Public License Version 1.0 - sonarsource|SonarSource|Commercial - tmate|TMate Open Source License - - - - - org.sonatype.plugins - jarjar-maven-plugin - ${version.jarjar.plugin} - - - org.apache.maven.plugins - maven-jar-plugin - ${version.jar.plugin} - - - - ${project.version} - - ${buildNumber} - ${timestamp} - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.javadoc.plugin} - - true - -Xdoclint:none - - - - org.apache.maven.plugins - maven-plugin-plugin - ${version.plugin.plugin} - - - org.apache.maven.plugins - maven-resources-plugin - ${version.resources.plugin} - - - org.apache.maven.plugins - maven-shade-plugin - ${version.shade.plugin} - - - org.apache.maven.plugins - maven-source-plugin - ${version.source.plugin} - - - org.apache.maven.plugins - maven-surefire-plugin - ${version.surefire.plugin} - - - org.apache.maven.plugins - maven-site-plugin - ${version.site.plugin} - - - org.codehaus.mojo - native2ascii-maven-plugin - ${version.native2ascii.plugin} - - - org.sonarsource.sonar-packaging-maven-plugin - sonar-packaging-maven-plugin - ${version.sonar-packaging.plugin} - - - org.codehaus.sonar - sonar-dev-maven-plugin - ${version.sonar-dev.plugin} - - - com.github.genthaler - beanshell-maven-plugin - ${version.beanshell.plugin} - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - - - validate - - create - - - - - false - false - true - 0 - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${jdk.min.version} - ${jdk.min.version} - ${project.build.sourceEncoding} - - - - - org.apache.maven.plugins - maven-surefire-plugin - - random - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce - - enforce - - - - - project.description - Project description must be specified (requirement for OSSRH). - - - - project.name - Project name must be specified (requirement for OSSRH). - - - - project.url - Project url must be specified (requirement for OSSRH). - - - - project.licenses - At least on license must be specified (requirement for OSSRH). - - - - project.developers - At least one developer must be specified (requirement for OSSRH). - - - - project.scm.connection - scm section should be defined in project (requirement for OSSRH). - - - - To build this project Maven ${maven.min.version} (or upper) is required. Please install it. - - ${maven.min.version} - - - - To build this project JDK ${jdk.min.version} (or upper) is required. Please install it. - - ${jdk.min.version} - - - - - Build reproducibility : always define plugin versions! - true - true - clean,deploy - - - - - Animal-sniffer throws exception when icu4j version 2.6.1 used. - true - - com.ibm.icu:icu4j:[2.6.1] - - - - - - - - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - verify - - jar-no-fork - - - - - - org.sonarsource.sonar-packaging-maven-plugin - sonar-packaging-maven-plugin - true - - - - - ${buildNumber} - ${timestamp} - - - - - - com.mycila - license-maven-plugin - ${version.mycila.license.plugin} - - - org.sonarsource.license-headers - license-headers - 1.3 - - - -
sonarsource/licenseheaders/${license.name}.txt
- true - true - ${project.build.sourceEncoding} - - ${license.owner} - ${license.title} - ${license.years} - ${license.mailto} - - - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - SLASHSTAR_STYLE - - - src/*/java/**/*.java - src/**/*.js - src/**/*.ts - src/**/*.tsx - src/**/*.css - src/**/*.less - - - src/test/resources/** - -
- - - enforce-license-headers - validate - - check - - - -
- - com.github.genthaler - beanshell-maven-plugin - - - compute-artifact-display-version - generate-resources - - run - - - - true - - - - -
-
- - - - skipSanityChecks - - - skipSanityChecks - true - - - - true - true - true - - - - - release - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - - attach-javadocs - - jar - - - - - - - - - coverage-per-test - - - org.sonarsource.java - sonar-jacoco-listeners - ${version.sonar-jacoco-listeners} - test - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - - listener - org.sonar.java.jacoco.JUnitListener - - - - - - - - - integration-tests - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - integration-test - integration-test - - integration-test - - - - verify - verify - - verify - - - - - - - - - deploy-sonarsource - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-deploy-settings - - enforce - - - - - gitRepositoryName - You must set name of Git repository in your pom - - - ARTIFACTORY_URL - - - ARTIFACTORY_DEPLOY_REPO - - - ARTIFACTORY_DEPLOY_USERNAME - - - ARTIFACTORY_DEPLOY_PASSWORD - - - true - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - ${version.artifactory.plugin} - - - build-info - - publish - - - - - *password*,*PASSWORD*,*secret*,*MAVEN_CMD_LINE_ARGS*,sun.java.command,*token*,*TOKEN*,*LOGIN*,*login* - - true - 60 - - - {{GIT_COMMIT|TRAVIS_COMMIT|APPVEYOR_REPO_COMMIT}} - {{GIT_BRANCH|TRAVIS_BRANCH|APPVEYOR_REPO_BRANCH}} - ${gitRepositoryName} - {{BUILD_ID|TRAVIS_BUILD_NUMBER|APPVEYOR_BUILD_NUMBER}} - - - true - false - true - project,provided - licences-control@sonarsource.com - - - ${env.ARTIFACTORY_URL} - ${env.ARTIFACTORY_DEPLOY_REPO} - ${env.ARTIFACTORY_DEPLOY_USERNAME} - ${env.ARTIFACTORY_DEPLOY_PASSWORD} - true - true - - - ${gitRepositoryName} - {{BUILD_ID|TRAVIS_BUILD_NUMBER|APPVEYOR_BUILD_NUMBER}} - {{CI_BUILD_URL|BUILD_URL}} - {{GIT_COMMIT|TRAVIS_COMMIT|APPVEYOR_REPO_COMMIT}} - - - - - - - - - - -
diff --git a/artifacts/m2/org/sonarsource/parent/parent/49/parent-49.pom.sha1 b/artifacts/m2/org/sonarsource/parent/parent/49/parent-49.pom.sha1 deleted file mode 100644 index 0ccacb41c5ee23d4f269373e1cdccdda5011feea..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/parent/parent/49/parent-49.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -60f0fdac5ff52a81f39b68f9a42129df5cb781b6 \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/_remote.repositories b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/_remote.repositories deleted file mode 100644 index 8565f5bcbb76aa0ca0423ea8d80130090677397c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:46 CST 2019 -sonar-scanner-api-parent-2.12.0.1661.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/sonar-scanner-api-parent-2.12.0.1661.pom b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/sonar-scanner-api-parent-2.12.0.1661.pom deleted file mode 100644 index 225bc0f6e949fb20ff6915e8a205b87b2c472e62..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/sonar-scanner-api-parent-2.12.0.1661.pom +++ /dev/null @@ -1,169 +0,0 @@ - - 4.0.0 - - org.sonarsource.parent - parent - 48 - - - org.sonarsource.scanner.api - sonar-scanner-api-parent - 2.12.0.1661 - pom - SonarQube Scanner API - Parent - API used by all SonarQube Scanners (Maven, Gradle, Ant, CLI) - https://github.com/SonarSource/sonar-scanner-api - 2011 - - - api - batch - batch-interface - - - - SonarSource - http://www.sonarsource.com - - - - - GNU LGPL 3 - http://www.gnu.org/licenses/lgpl.txt - repo - - - - - scm:git:git@github.com:SonarSource/sonar-scanner-api.git - scm:git:git@github.com:SonarSource/sonar-scanner-api.git - https://github.com/SonarSource/sonar-scanner-api - HEAD - - - - JIRA - https://jira.sonarsource.com/browse/SCANNERAPI - - - - true - - - sonar-scanner-api - 3.11.0 - 2.22.0 - - - - - release - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.9 - - - attach-javadocs - - jar - - - - - - - - - its - - its - - - - - - - - commons-lang - commons-lang - 2.6 - - - commons-io - commons-io - 2.6 - - - org.easytesting - fest-assert - 1.4 - - - com.squareup.okhttp3 - okhttp - ${okhttp.version} - - - com.eclipsesource.minimal-json - minimal-json - 0.9.5 - - - com.squareup.okhttp3 - mockwebserver - ${okhttp.version} - - - com.google.code.findbugs - jsr305 - 3.0.2 - - - junit - junit - 4.12 - - - org.mockito - mockito-core - ${mockito.version} - - - org.mockito - mockito-inline - ${mockito.version} - - - org.assertj - assertj-core - 3.11.1 - - - commons-codec - commons-codec - 1.11 - - - - - - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.10 - - - org.apache.maven.plugins - maven-shade-plugin - 3.0.0 - - - - - diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/sonar-scanner-api-parent-2.12.0.1661.pom.sha1 b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/sonar-scanner-api-parent-2.12.0.1661.pom.sha1 deleted file mode 100644 index e14583171aab9aa0af0674082e3de72d452522dd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api-parent/2.12.0.1661/sonar-scanner-api-parent-2.12.0.1661.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a374bbb328b89c68123c8150697269c52b179c0b \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/_remote.repositories b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/_remote.repositories deleted file mode 100644 index 56fdb49f0d049e152b425aefc63d131a23e8f6b7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:49 CST 2019 -sonar-scanner-api-2.12.0.1661.jar>repo.jenkins-ci.org= -sonar-scanner-api-2.12.0.1661.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.jar b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.jar deleted file mode 100644 index bd0afa141b5cd2669a9497356750f1a457e4be26..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.jar and /dev/null differ diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.jar.sha1 b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.jar.sha1 deleted file mode 100644 index f6d3c988c91998a574c400bd3c53fbe273aca033..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f902d6bfeea09a00d7a9a78df73d9cc7bfb29bf4 \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.pom b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.pom deleted file mode 100644 index 46d841d550d450aec0bc8c0b298196d2953a8012..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.pom +++ /dev/null @@ -1,154 +0,0 @@ - - - - sonar-scanner-api-parent - org.sonarsource.scanner.api - 2.12.0.1661 - - 4.0.0 - sonar-scanner-api - SonarQube Scanner API - - - - maven-dependency-plugin - - - copy - process-resources - - copy - - - - - ${project.groupId} - sonar-scanner-api-batch - ${project.version} - jar - false - ${project.build.outputDirectory} - sonar-scanner-api-batch.jar - - - true - true - - - - - - maven-shade-plugin - - - package - - shade - - - true - true - - - okhttp3 - org.sonarsource.scanner.api.internal.shaded.okhttp - - - okio - org.sonarsource.scanner.api.internal.shaded.okio - - - com.eclipsesource.json - org.sonarsource.scanner.api.internal.shaded.minimaljson - - - - - - - - - - - com.google.code.findbugs - jsr305 - 3.0.2 - provided - - - org.sonarsource.scanner.api - sonar-scanner-api-batch - 2.12.0.1661 - provided - - - junit - junit - 4.12 - test - - - hamcrest-core - org.hamcrest - - - - - org.mockito - mockito-core - 2.22.0 - test - - - byte-buddy - net.bytebuddy - - - byte-buddy-agent - net.bytebuddy - - - objenesis - org.objenesis - - - - - org.mockito - mockito-inline - 2.22.0 - test - - - org.assertj - assertj-core - 3.11.1 - test - - - com.squareup.okhttp3 - mockwebserver - 3.11.0 - test - - - commons-lang - commons-lang - 2.6 - test - - - commons-codec - commons-codec - 1.11 - test - - - org.sonarsource.java - sonar-jacoco-listeners - 4.14.0.11784 - test - - - - diff --git a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.pom.sha1 b/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.pom.sha1 deleted file mode 100644 index 6c1afff68e40d3c8edb08d9bf20589fd64c6b769..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/api/sonar-scanner-api/2.12.0.1661/sonar-scanner-api-2.12.0.1661.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fae272d742893f7417c6178eb632fd406a2a62fd \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/_remote.repositories b/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/_remote.repositories deleted file mode 100644 index beccc25e93e4801e424cf01c468d9d0b8bfe70c3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:31 CST 2019 -sonar-maven-plugin-3.6.0.1398.jar>repo.jenkins-ci.org= -sonar-maven-plugin-3.6.0.1398.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.jar b/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.jar deleted file mode 100644 index 17f924bead5d3e1f88e5fe565287e568097d4ad3..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.jar and /dev/null differ diff --git a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.jar.sha1 b/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.jar.sha1 deleted file mode 100644 index a94ec3b0feda237d9ba3917cde4dfda121c27b91..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -675bb664357c419a91d3fc060fa5cf854ecfd32b \ No newline at end of file diff --git a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.pom b/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.pom deleted file mode 100644 index 198270283e2e4d202217792b5d5022245b7d9e6d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.pom +++ /dev/null @@ -1,305 +0,0 @@ - - 4.0.0 - - org.sonarsource.parent - parent - 49 - - - - org.sonarsource.scanner.maven - sonar-maven-plugin - 3.6.0.1398 - maven-plugin - - SonarQube Scanner for Maven - http://sonarsource.github.io/sonar-scanner-maven/ - Trigger SonarQube analysis on Maven projects - 2009 - - - - GNU LGPL 3 - http://www.gnu.org/licenses/lgpl.txt - repo - - - - - - olamy - Olivier Lamy - olamy@apache.org - +1 - - - godin - Evgeny Mandrikov - mandrikov@gmail.com - +3 - - - simon.brandhof - Simon Brandhof - simon.brandhof@gmail.com - +1 - - - henryju - Julien Henry - henryju@yahoo.fr - +1 - - - - - 3.0 - - - - scm:git:https://github.com/SonarSource/sonar-scanner-maven.git - scm:git:ssh://git@github.com/SonarSource/sonar-scanner-maven.git - https://github.com/SonarSource/sonar-scanner-maven - HEAD - - - - JIRA - http://jira.sonarsource.com/browse/MSONAR - - - - - github - GitHub - scm:git:git@github.com:SonarSource/sonar-scanner-maven.git - - - - - 1.7 - 3.5.2 - src/main/java/org/apache/maven/shared/dependency/tree/DependencyTreeResolutionListener.java,target/generated-sources/**/* - sonar-scanner-maven - - - - - org.apache.maven - maven-plugin-api - ${mavenVersion} - provided - - - org.apache.maven - maven-model - ${mavenVersion} - provided - - - org.apache.maven - maven-compat - ${mavenVersion} - provided - - - org.apache.maven - maven-artifact - ${mavenVersion} - provided - - - org.apache.maven - maven-core - ${mavenVersion} - provided - - - org.sonatype.plexus - plexus-sec-dispatcher - 1.4 - - - - org.codehaus.plexus - plexus-utils - 3.0.22 - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.5 - provided - - - - org.sonarsource.scanner.api - sonar-scanner-api - 2.12.0.1661 - - - - commons-lang - commons-lang - 2.6 - - - - com.google.code.findbugs - jsr305 - 2.0.3 - provided - - - - junit - junit - 4.12 - test - - - org.mockito - mockito-all - 1.9.5 - test - - - org.assertj - assertj-core - 3.6.2 - test - - - org.skyscreamer - jsonassert - 1.2.3 - test - - - org.apache.maven.plugin-testing - maven-plugin-testing-harness - 3.3.0 - test - - - org.mortbay.jetty - jetty - 6.1.25 - test - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - true - - - - mojo-descriptor - - descriptor - - - - - help-goal - - helpmojo - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.7 - - - - generate-metadata - - - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.3 - - deploy site site:stage - - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - stage-for-scm-publish - post-site - - stage - - - - - true - - - - org.apache.maven.plugins - maven-scm-publish-plugin - 1.1 - - gh-pages - - - - scm-publish - site-deploy - - publish-scm - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.4 - - - ${mojo.java.target} - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.8.1 - - - - dependency-info - index - issue-tracking - project-team - scm - summary - - - - - - - diff --git a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.pom.sha1 b/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.pom.sha1 deleted file mode 100644 index 17fb615f3df131916ae76e8175271daf0ccaed48..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonarsource/scanner/maven/sonar-maven-plugin/3.6.0.1398/sonar-maven-plugin-3.6.0.1398.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -634cff775fff971bc6097a33896f36032b699d22 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-api/1.7/_remote.repositories b/artifacts/m2/org/sonatype/aether/aether-api/1.7/_remote.repositories deleted file mode 100644 index 51372c715f4291ad80a93e0bd92416fa08db31e1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-api/1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -aether-api-1.7.jar>repo.jenkins-ci.org= -aether-api-1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar b/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar deleted file mode 100644 index 04addb151d7edb4457b4154bc5bc0d952e0353af..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar.sha1 b/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar.sha1 deleted file mode 100644 index 24f0259248c75b4ddfe415392593ab73883718e3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -0c491a637ee6795143b6708ce5f112e6a9f548f4 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom b/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom deleted file mode 100644 index e99c48aaa3b0ebf361eea396c206f0519c5c027a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.aether - aether-parent - 1.7 - - - aether-api - - Aether :: API - - The application programming interface for the repository system. - - - - - junit - junit - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - - diff --git a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 b/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 deleted file mode 100644 index ee06f48334e627f9f6f5bb7cec9a58f4e229ee79..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -07d9331c480f8028c0f009f4b332ff5b18230003 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/_remote.repositories b/artifacts/m2/org/sonatype/aether/aether-impl/1.7/_remote.repositories deleted file mode 100644 index f7a19c2408af8208474bb36aa8ff7dace546c803..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -aether-impl-1.7.jar>repo.jenkins-ci.org= -aether-impl-1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar b/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar deleted file mode 100644 index c96139d1e6e5256a8044f13f098113ba5be3c44b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar.sha1 b/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar.sha1 deleted file mode 100644 index 40b67cba0be8ddf55ed8805cacaaeb77fab74d31..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5cc1803eb7126f759d34007b74e6dc44e9a9fb08 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom b/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom deleted file mode 100644 index 7345f21bfbb845e7a0452ea7fe19522907b7ea96..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.aether - aether-parent - 1.7 - - - aether-impl - - Aether :: Implementation - - An implementation of the repository system. - - - - - org.sonatype.aether - aether-api - ${project.version} - - - org.sonatype.aether - aether-spi - ${project.version} - - - org.sonatype.aether - aether-util - ${project.version} - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - provided - - - org.codehaus.plexus - plexus-container-default - 1.5.5 - provided - - - org.codehaus.plexus - plexus-classworlds - - - org.apache.xbean - xbean-reflect - - - com.google.collections - google-collections - - - - - org.slf4j - slf4j-api - 1.6.1 - provided - - - junit - junit - test - - - org.sonatype.aether - aether-test-util - ${project.version} - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.codehaus.plexus - plexus-component-metadata - - - - diff --git a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 b/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 deleted file mode 100644 index ba221c5e70221b33022a148e97309029ca5fbfb4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1f6352a67ee0e08fa1cac00e982cdc305d10ce67 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-parent/1.7/_remote.repositories b/artifacts/m2/org/sonatype/aether/aether-parent/1.7/_remote.repositories deleted file mode 100644 index 496a152cb2476d77c467bdb929c6fab7d1f8a2a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-parent/1.7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:20:45 CST 2019 -aether-parent-1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom b/artifacts/m2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom deleted file mode 100644 index 81aabacf2887adae3b1f27cba72478dac352a45a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.forge - forge-parent - 6 - - - org.sonatype.aether - aether-parent - 1.7 - pom - - Aether - - The parent and aggregator for the repository system. - - http://aether.sonatype.org/ - 2010 - - - Sonatype, Inc. - http://www.sonatype.com - - - - - Aether Developers List - aether-dev-subscribe@sonatype.org - aether-dev-unsubscribe@sonatype.org - aether-dev@sonatype.org - - - - Aether Users List - aether-user-subscribe@sonatype.org - aether-user-unsubscribe@sonatype.org - aether-user@sonatype.org - - - - Aether Commits List - aether-scm-subscribe@sonatype.org - aether-scm-unsubscribe@sonatype.org - - - - - scm:git:git@github.com:sonatype/sonatype-aether.git - scm:git:git@github.com:sonatype/sonatype-aether.git - git@github.com:sonatype/sonatype-aether.git - - - - jira - https://issues.sonatype.org/browse/AETHER - - - - Hudson - https://grid.sonatype.org/ci/job/Aether/ - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - aether-api - aether-spi - aether-util - aether-impl - aether-test-util - aether-connector-file - aether-connector-wagon - - - - UTF-8 - https://repository.sonatype.org/service/local/staging/deploy/maven2 - - - - - - junit - junit - 4.8.1 - test - - - - - - - - - maven-assembly-plugin - 2.2-beta-5 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.1 - - 1.5 - 1.5 - - - - maven-gpg-plugin - 1.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.5 - - - http://java.sun.com/javase/6/docs/api/ - - - - - maven-release-plugin - 2.0 - - true - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - check-java-1.5-compat - process-classes - - check - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - generate-components-xml - - generate-metadata - - - - - - - - - - - demo - - aether-demo - - - - release - - - - org.apache.maven.plugins - maven-assembly-plugin - - - org.apache.apache.resources - apache-source-release-assembly-descriptor - 1.0.2 - - - - - attach-source-release-distro - package - - single - - - true - - source-release - - gnu - - - - - - - - - diff --git a/artifacts/m2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 b/artifacts/m2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 deleted file mode 100644 index 30f5da7a24df276d76ee24c11da185f8a207ab0a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9272ca55ba8e2a1f03addfd1b698511d5122c646 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/_remote.repositories b/artifacts/m2/org/sonatype/aether/aether-spi/1.7/_remote.repositories deleted file mode 100644 index 656e46f48673287c55fa318ec8db83d2b1108a84..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -aether-spi-1.7.jar>repo.jenkins-ci.org= -aether-spi-1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar b/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar deleted file mode 100644 index 5e293cd4e37dbbc129cf5e0b46c8f706e69c8d47..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar.sha1 b/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar.sha1 deleted file mode 100644 index 7133ff16a8f8b99808be838631506a5e793e4ab0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ea472b28d9d891d353c0311593f5e2a0e73d4be \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom b/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom deleted file mode 100644 index 690b39b4e850850ba2b5d883d23983bb779c4606..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.aether - aether-parent - 1.7 - - - aether-spi - - Aether :: SPI - - The service provider interface for repository system implementations and repository connectors. - - - - - org.sonatype.aether - aether-api - ${project.version} - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - - diff --git a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 b/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 deleted file mode 100644 index 051d40832e5cdc61a7bf8a47cb8ea2b0f4bf0845..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -0fdd424fc1f7acd9268c0ceb07fd7aceedb1019f \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-util/1.7/_remote.repositories b/artifacts/m2/org/sonatype/aether/aether-util/1.7/_remote.repositories deleted file mode 100644 index 323dabf3562432633707dece4ab5022b60ff47cd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-util/1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -aether-util-1.7.jar>repo.jenkins-ci.org= -aether-util-1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar b/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar deleted file mode 100644 index 033c40fa0d593e6be6802872292cc7760c67bcd9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 b/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 deleted file mode 100644 index 7f64aa6f75a57d47c4a8a6076779a06d991ac135..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -38485c9c086c3c867c2dd5371909337bd056c492 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom b/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom deleted file mode 100644 index 2957edd28e3067665a470b8a690f99c47315ec98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - 4.0.0 - - - org.sonatype.aether - aether-parent - 1.7 - - - aether-util - - Aether :: Utilities - - A collection of utility classes to ease usage of the repository system. - - - - - org.sonatype.aether - aether-api - ${project.version} - - - junit - junit - test - - - org.sonatype.aether - aether-test-util - ${project.version} - test - - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - - diff --git a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 b/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 deleted file mode 100644 index c7433f3ca80d90b6231d84c131fa7db97579fb10..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3bd750dbf22b2effa411117b7230694cc4095f3f \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/10/_remote.repositories b/artifacts/m2/org/sonatype/forge/forge-parent/10/_remote.repositories deleted file mode 100644 index 36a7c4b9ae88dc93f4e0b5da76b1d790352c7a6c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:07 CST 2019 -forge-parent-10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom b/artifacts/m2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom deleted file mode 100644 index 853fb2a7d43c3438878752ee00b1c9e8168eeb9e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +++ /dev/null @@ -1,317 +0,0 @@ - - - - 4.0.0 - - org.sonatype.forge - forge-parent - pom - 10 - Sonatype Forge Parent Pom - - 2008 - http://forge.sonatype.com/ - - - Sonatype, Inc. - http://www.sonatype.com/ - - - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-10 - http://svn.sonatype.org/forge/tags/forge-parent-10 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-10 - - - - forge-releases - https://repository.sonatype.org/service/local/staging/deploy/maven2 - forge-snapshots - https://repository.sonatype.org/content/repositories/snapshots - UTF-8 - UTF-8 - - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2.1 - - - org.apache.maven.plugins - maven-clean-plugin - 2.4.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-dependency-plugin - 2.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.5 - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.8 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0 - - - org.apache.maven.plugins - maven-gpg-plugin - 1.2 - - - org.apache.maven.plugins - maven-install-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-jar-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - - org.apache.maven.plugins - maven-release-plugin - 2.1 - - - forked-path - false - deploy - -Prelease - - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.2 - - - org.apache.maven.plugins - maven-resources-plugin - 2.5 - - - org.apache.maven.plugins - maven-scm-plugin - 1.4 - - - org.apache.maven.plugins - maven-site-plugin - 2.2 - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.8 - - true - - - - org.sonatype.plugins - sisu-maven-plugin - 1.0 - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.6 - - - com.mycila.maven-license-plugin - maven-license-plugin - 1.9.0 - - - org.codehaus.modello - modello-maven-plugin - 1.4.1 - - true - - - - org.apache.felix - maven-bundle-plugin - 2.3.4 - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.4 - - - org.codehaus.mojo - findbugs-maven-plugin - 2.3.1 - - UnreadFields - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.3.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - 1.5 - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - ${gpg.passphrase} - - true - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 b/artifacts/m2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 deleted file mode 100644 index b4b62fc5e38eb2665179ba1ae98a5b0ed75df2ab..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c24dc843444f348100c19ebd51157e7a5f61bfe7 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/3/_remote.repositories b/artifacts/m2/org/sonatype/forge/forge-parent/3/_remote.repositories deleted file mode 100644 index 97d3b8536339540a0f8121ad1ab8756ef9006d69..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:31 CST 2019 -forge-parent-3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom b/artifacts/m2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom deleted file mode 100644 index a450f8188f82aa6ee67fc16fca9d5b693d441d8b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom +++ /dev/null @@ -1,131 +0,0 @@ - - 4.0.0 - org.sonatype.forge - forge-parent - pom - 3 - Sonatype Forge Parent Pom - 2008 - http://forge.sonatype.com/ - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-3 - http://svn.sonatype.org/forge/tags/forge-parent-3 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-3 - - - - - forge-releases - http://repository.sonatype.org/content/repositories/releases - forge-snapshots - http://repository.sonatype.org/content/repositories/snapshots - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - - - maven-enforcer-plugin - 1.0-alpha-4-sonatype - - - maven-eclipse-plugin - 2.4 - - - maven-surefire-plugin - 2.3 - - - maven-clean-plugin - 2.2 - - - maven-deploy-plugin - 2.3 - - - maven-dependency-plugin - 2.0 - - - maven-site-plugin - 2.0-beta-6 - - - maven-jar-plugin - 2.1 - - - maven-help-plugin - 2.0.2 - - - maven-resources-plugin - 2.2 - - - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.1.1 - - UnreadFields - - - - maven-jxr-plugin - 2.0 - - - maven-pmd-plugin - 2.3 - - 1.5 - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 b/artifacts/m2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 deleted file mode 100644 index 02a4d045c6b00e92625331da444f448fbbaaf0b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/3/forge-parent-3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -fdc1f6eb65f750775acd57ff4371d5657ae2e6d3 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/4/_remote.repositories b/artifacts/m2/org/sonatype/forge/forge-parent/4/_remote.repositories deleted file mode 100644 index fb307ec57d4b5c02602904ea49efc58ab0c9ef88..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/4/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:20 CST 2019 -forge-parent-4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom b/artifacts/m2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom deleted file mode 100644 index f2dec6e6aebee90c1df62420ed4759d03d54260a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +++ /dev/null @@ -1,225 +0,0 @@ - - 4.0.0 - org.sonatype.forge - forge-parent - pom - 4 - Sonatype Forge Parent Pom - 2008 - http://forge.sonatype.com/ - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-4 - http://svn.sonatype.org/forge/tags/forge-parent-4 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-4 - - - - - forge-releases - http://repository.sonatype.org/content/repositories/releases - forge-snapshots - http://repository.sonatype.org/content/repositories/snapshots - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - - - maven-enforcer-plugin - 1.0-alpha-4-sonatype - - - maven-eclipse-plugin - 2.4 - - - maven-surefire-plugin - 2.3 - - - maven-clean-plugin - 2.2 - - - maven-deploy-plugin - 2.3 - - - maven-dependency-plugin - 2.0 - - - maven-site-plugin - 2.0-beta-6 - - - maven-jar-plugin - 2.1 - - - maven-help-plugin - 2.0.2 - - - maven-resources-plugin - 2.2 - - - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-1 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-8 - - false - deploy - -Prelease - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.1.1 - - UnreadFields - - - - maven-jxr-plugin - 2.0 - - - maven-pmd-plugin - 2.3 - - 1.5 - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 b/artifacts/m2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 deleted file mode 100644 index 879f582302075aced35631bbd358d3121db05b2e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -564f266ea9323e57e246f0fca8f04f596663fb86 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/5/_remote.repositories b/artifacts/m2/org/sonatype/forge/forge-parent/5/_remote.repositories deleted file mode 100644 index 0430fd4f9f21fe3f70785060c4998879d441988b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/5/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:07 CST 2019 -forge-parent-5.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom b/artifacts/m2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom deleted file mode 100644 index 82813619680fd046cbf0c08db06ebb45f6c56ab7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +++ /dev/null @@ -1,225 +0,0 @@ - - 4.0.0 - org.sonatype.forge - forge-parent - pom - 5 - Sonatype Forge Parent Pom - 2008 - http://forge.sonatype.com/ - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-5 - http://svn.sonatype.org/forge/tags/forge-parent-5 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-5 - - - - - forge-releases - http://repository.sonatype.org:8081/service/local/staging/deploy/maven2 - forge-snapshots - http://repository.sonatype.org/content/repositories/snapshots - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - - - maven-enforcer-plugin - 1.0-beta-1 - - - maven-eclipse-plugin - 2.4 - - - maven-surefire-plugin - 2.4.3 - - - maven-clean-plugin - 2.2 - - - maven-deploy-plugin - 2.4 - - - maven-dependency-plugin - 2.0 - - - maven-site-plugin - 2.0-beta-7 - - - maven-jar-plugin - 2.2 - - - maven-resources-plugin - 2.3 - - - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-2 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-8 - - false - deploy - -Prelease - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0-alpha-4 - - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.1.1 - - UnreadFields - - - - maven-jxr-plugin - 2.1 - - - maven-project-info-reports-plugin - 2.1.1 - - - maven-pmd-plugin - 2.4 - - 1.5 - - - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 b/artifacts/m2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 deleted file mode 100644 index 0173cc73f3bdff9f6ff4453127b16f89dbb7b796..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a557514263bbd4a6daef8f125ab80e78413292d3 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/6/_remote.repositories b/artifacts/m2/org/sonatype/forge/forge-parent/6/_remote.repositories deleted file mode 100644 index c724b33bc6c653f60cacfc0d2de23bff2826a1d2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/6/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:24 CST 2019 -forge-parent-6.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom b/artifacts/m2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom deleted file mode 100644 index 316569800065063a7e5d88cd3753521fb41aaff1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +++ /dev/null @@ -1,253 +0,0 @@ - - - - 4.0.0 - - org.sonatype.forge - forge-parent - pom - 6 - Sonatype Forge Parent Pom - - 2008 - http://forge.sonatype.com/ - - - scm:svn:http://svn.sonatype.org/forge/tags/forge-parent-6 - http://svn.sonatype.org/forge/tags/forge-parent-6 - scm:svn:https://svn.sonatype.org/forge/tags/forge-parent-6 - - - - forge-releases - http://repository.sonatype.org:8081/service/local/staging/deploy/maven2 - forge-snapshots - http://repository.sonatype.org/content/repositories/snapshots - - - - - ${forgeReleaseId} - ${forgeReleaseUrl} - - - ${forgeSnapshotId} - ${forgeSnapshotUrl} - - - - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.0-beta-1 - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.5 - - true - - - - org.apache.maven.plugins - maven-clean-plugin - 2.4 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.4 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.1 - - - org.apache.maven.plugins - maven-site-plugin - 2.0-beta-7 - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - org.apache.maven.plugins - maven-resources-plugin - 2.3 - - - org.apache.maven.plugins - maven-remote-resources-plugin - 1.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.2 - - - org.apache.maven.plugins - maven-compiler-plugin - 2.0.2 - - 1.5 - 1.5 - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.2-beta-3 - - - org.apache.maven.plugins - maven-release-plugin - 2.0-beta-9 - - false - deploy - -Prelease - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.0 - - - org.apache.maven.plugins - maven-scm-plugin - 1.2 - - - - - - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.0 - - - org.codehaus.mojo - findbugs-maven-plugin - 1.1.1 - - UnreadFields - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.1 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1.1 - - - org.apache.maven.plugins - maven-pmd-plugin - 2.4 - - 1.5 - - - - - - - - release - - - - - org.apache.maven.plugins - maven-gpg-plugin - - - ${gpg.passphrase} - - - - - sign - - - - - - - true - org.apache.maven.plugins - maven-deploy-plugin - - ${deploy.altRepository} - true - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - ${project.build.sourceEncoding} - - - - attach-javadocs - - jar - - - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 b/artifacts/m2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 deleted file mode 100644 index ffa7245de48b358335429aa1f80aa30473768177..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8726e91194a5442e05472854652602a3b599f27d \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/oss/oss-parent/7/_remote.repositories b/artifacts/m2/org/sonatype/oss/oss-parent/7/_remote.repositories deleted file mode 100644 index 3d30b2ceb05b7acba8f6504b0112481d4223581e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/oss/oss-parent/7/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:43 CST 2019 -oss-parent-7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom b/artifacts/m2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom deleted file mode 100644 index 8fb080fd0df53f1218fe5485ba188983c5bbd075..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - 4.0.0 - - org.sonatype.oss - oss-parent - 7 - 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/tags/oss-parent-7 - scm:svn:https://svn.sonatype.org/spice/tags/oss-parent-7 - http://svn.sonatype.org/spice/tags/oss-parent-7 - - - - - - - - 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.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 - -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/7/oss-parent-7.pom.sha1 b/artifacts/m2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 deleted file mode 100644 index 67d56762cb69e3b7a605544f83193a1afada4655..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aeb932c92796796d932798ded8d0ddc687cc557a \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories deleted file mode 100644 index 70bc743f9a329ae5aba1884fca77c8bcc0d0f199..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:35 CST 2019 -plexus-build-api-0.0.4.jar>repo.jenkins-ci.org= -plexus-build-api-0.0.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar deleted file mode 100644 index 33562b6d0d132a040a7f5baf0e87e6aec135a20c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 deleted file mode 100644 index e1b9c0c37f0b2aa42b74eb55aba229843389a0bb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8fdcf45c2fad3052a51385fdfc79753d9124a1a7 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom deleted file mode 100644 index d95885dada9142f3fa0472ee2b9ed7c135b50ded..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom +++ /dev/null @@ -1,82 +0,0 @@ - - - - 4.0.0 - - org.sonatype.spice - spice-parent - 10 - - org.sonatype.plexus - plexus-build-api - 0.0.4 - - - - org.codehaus.plexus - plexus-utils - 1.5.8 - - - - - - - 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.4 - scm:svn:https://svn.sonatype.org/spice/tags/plexus-build-api-0.0.4 - http://svn.sonatype.org/spice/tags/plexus-build-api-0.0.4 - - diff --git a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 deleted file mode 100644 index 021b354e7bb35b680e5df0cadf21ecbf953b5473..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -df389a276b6c493bcea1937339b29145a7ce99bf \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories b/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories deleted file mode 100644 index b5556b268d9e4896337a6e768801e1adae124f6b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-cipher-1.4.jar>repo.jenkins-ci.org= -plexus-cipher-1.4.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar b/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar deleted file mode 100644 index 9227205cda8b616437e1349c604b2b581051bb33..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 deleted file mode 100644 index 01c13fbc6781405cf3d5053145b415795b5ba10d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -50ade46f23bb38cd984b4ec560c46223432aac38 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom b/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom deleted file mode 100644 index 556cc844f028ae918a0f1c299e95fa0902e04627..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +++ /dev/null @@ -1,67 +0,0 @@ - - - - org.sonatype.spice - spice-parent - 12 - - - 4.0.0 - org.sonatype.plexus - plexus-cipher - http://spice.sonatype.org/${project.artifactId} - - Plexus Cipher: encryption/decryption Component - 1.4 - - - - sonatype.org-sites - ${spiceSiteBaseUrl}/${project.artifactId} - - - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - - descriptor - - - - - - maven-compiler-plugin - - 1.4 - 1.4 - - - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - provided - - - junit - junit - 3.8.2 - - - - - scm:svn:http://svn.sonatype.org/spice/tags/plexus-cipher-1.4 - scm:svn:https://svn.sonatype.org/spice/tags/plexus-cipher-1.4 - http://svn.sonatype.org/spice/tags/plexus-cipher-1.4 - - diff --git a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 deleted file mode 100644 index 0e0952d5dd38fb756a4c0b63262fff58d48e3fb0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8c0bee97c1badb926611bf82358e392fedc07764 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories deleted file mode 100644 index 78cb5697c882326e58bd1a73e00698d05d3f76c4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -plexus-sec-dispatcher-1.3.jar>repo.jenkins-ci.org= -plexus-sec-dispatcher-1.3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar deleted file mode 100644 index 9dc9f64b27a672d777bbd3371554c3b442a39205..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 deleted file mode 100644 index 3d230b7c91e5ff25aead15ec2d429bb6382fa77f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -dedc02034fb8fcd7615d66593228cb71709134b4 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom deleted file mode 100644 index 6ff4d3406ce6a9780dad43e991e6704294f2d1e8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +++ /dev/null @@ -1,97 +0,0 @@ - - - - org.sonatype.spice - spice-parent - 12 - - - 4.0.0 - org.sonatype.plexus - plexus-sec-dispatcher - http://spice.sonatype.org/${project.artifactId} - - Plexus Security Dispatcher Component - 1.3 - - - - sonatype.org-sites - ${spiceSiteBaseUrl}/${project.artifactId} - - - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - - descriptor - - - - - - maven-compiler-plugin - - - 1.4 - 1.4 - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/settings-security.mdo - - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - org.sonatype.plexus - plexus-cipher - 1.4 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - provided - - - junit - junit - 3.8.2 - - - - - scm:svn:http://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.3 - scm:svn:https://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.3 - http://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.3 - - diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 deleted file mode 100644 index 6a85c8c5b1831b96e8d06eeb9a6b7b41b4d85044..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b953c3a84a7d3f2a7f606e18c07ee38fb6766e3d \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/_remote.repositories b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/_remote.repositories deleted file mode 100644 index 46cbf5ae1949353c4ab528a99f6cca8432817ce6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:49 CST 2019 -plexus-sec-dispatcher-1.4.pom>repo.jenkins-ci.org= -plexus-sec-dispatcher-1.4.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar deleted file mode 100644 index c90fed80b73654e8149fe6a19130051239456783..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar.sha1 deleted file mode 100644 index a6e8ee22e459b7f3ae7b63b54bb82404b2bfa0d1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -43fde524e9b94c883727a9fddb8669181b890ea7 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom deleted file mode 100644 index 1eb21586abc62bafb4b818042eae2467f294384f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +++ /dev/null @@ -1,97 +0,0 @@ - - - - org.sonatype.spice - spice-parent - 12 - - - 4.0.0 - org.sonatype.plexus - plexus-sec-dispatcher - http://spice.sonatype.org/${project.artifactId} - - Plexus Security Dispatcher Component - 1.4 - - - - sonatype.org-sites - ${spiceSiteBaseUrl}/${project.artifactId} - - - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.5 - - - - descriptor - - - - - - maven-compiler-plugin - - - 1.4 - 1.4 - - - - org.codehaus.modello - modello-maven-plugin - - 1.0.0 - - src/main/mdo/settings-security.mdo - - - - - standard - - java - xpp3-reader - xpp3-writer - - - - - - - - - - org.codehaus.plexus - plexus-utils - - - org.sonatype.plexus - plexus-cipher - 1.4 - - - org.codehaus.plexus - plexus-container-default - 1.0-alpha-9-stable-1 - provided - - - junit - junit - 3.8.2 - - - - - scm:svn:http://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.4 - scm:svn:https://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.4 - http://svn.sonatype.org/spice/tags/plexus-sec-dispatcher-1.4 - - diff --git a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom.sha1 b/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom.sha1 deleted file mode 100644 index 62358d8f07d8aacd4208341e5942b44a3356e01b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -18c39936b9da963de44b4d68adf204f7c5df3a45 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories b/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories deleted file mode 100644 index acff8d67f9c251c31102d97a5ceaae9ea8a13bed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:21 CST 2019 -guice-bean-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom b/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom deleted file mode 100644 index b202f387210f043508c9f6defc32783c65bdc1ae..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +++ /dev/null @@ -1,79 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.sisu - sisu-inject - 1.4.2 - - - pom - - org.sonatype.sisu.inject - guice-bean - - Guice - Bean - - - guice-bean-reflect - guice-bean-inject - guice-bean-scanners - guice-bean-converters - guice-bean-locators - guice-bean-binders - guice-bean-containers - sisu-inject-bean - - - - - - - org.sonatype.sisu.inject - guice-bean-reflect - ${project.version} - - - org.sonatype.sisu.inject - guice-bean-inject - ${project.version} - - - org.sonatype.sisu.inject - guice-bean-scanners - ${project.version} - - - org.sonatype.sisu.inject - guice-bean-converters - ${project.version} - - - org.sonatype.sisu.inject - guice-bean-locators - ${project.version} - - - org.sonatype.sisu.inject - guice-bean-binders - ${project.version} - - - org.sonatype.sisu.inject - guice-bean-containers - ${project.version} - - - - org.sonatype.sisu - sisu-inject-bean - ${project.version} - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 b/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 deleted file mode 100644 index 363ee962fdf533d31555baa4ccf95d6d152d5b22..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -11c2c29c95aa9c9d636ac349b33b49de1190deaf \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/_remote.repositories b/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/_remote.repositories deleted file mode 100644 index 3861314e1fae92b919596723493af8e3eea6c3bd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:54 CST 2019 -guice-parent-3.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom b/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom deleted file mode 100644 index fd08d65891a2044c19286bdc22670129922599b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - 4.0.0 - - - org.sonatype.forge - forge-parent - 10 - - - pom - - org.sonatype.sisu.inject - guice-parent - 3.1.0 - - Sisu Guice - - - Patched build of Guice: a lightweight dependency injection framework for Java 5 and above - - - http://code.google.com/p/google-guice/ - 2006 - - - Google, Inc. - http://www.google.com - - - - - Guice Users List - http://groups.google.com/group/google-guice/topics - google-guice+subscribe@googlegroups.com - google-guice+unsubscribe@googlegroups.com - http://groups.google.com/group/google-guice/post - - - Guice Developers List - http://groups.google.com/group/google-guice-dev/topics - google-guice-dev+subscribe@googlegroups.com - google-guice-dev+unsubscribe@googlegroups.com - http://groups.google.com/group/google-guice-dev/post - - - - - scm:git:git@github.com:sonatype/sisu-guice.git - scm:git:git@github.com:sonatype/sisu-guice.git - http://github.com/sonatype/sisu-guice - - - - Google Code - http://code.google.com/p/google-guice/issues/ - - - - Hudson - https://builds.sonatype.org/job/sisu-guice/ - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - core - extensions - - - - 3.0 - - - - - 1.4 - UTF-8 - - true - - true - - - - - - org.testng - testng - 6.2 - test - - - - - - ${project.basedir}/src - - - false - ${project.basedir}/src - - **/*.java - - - - ${project.basedir}/test - - - false - ${project.basedir}/test - - **/*.java - - - - - - - - maven-remote-resources-plugin - 1.2.1 - - - - process - - - - org.apache:apache-jar-resource-bundle:1.4 - - - - - - - - maven-compiler-plugin - 2.3.2 - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.7 - - - org.codehaus.mojo.signature - java15 - 1.0 - - - - - check-java-1.5-compat - process-classes - - check - - - - - - maven-surefire-plugin - 2.9 - - true - - - - - org.apache.felix - maven-bundle-plugin - 2.3.5 - - - ${project.artifactId} - $(maven-symbolicname);singleton:=true - Copyright (C) 2006 Google Inc. - http://code.google.com/p/google-guice/ - Sonatype, Inc. - - J2SE-1.5,JavaSE-1.6 - - <_exportcontents>!*.internal.*,*;version=${guice.api.version} - !com.google.*,* - <_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 - - - - true - - - - - prepare-package - - manifest - - - - - - - maven-jar-plugin - 2.3.2 - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - false - - - - - package - - test-jar - - - - - - maven-javadoc-plugin - 2.8 - - com.google.doclava.Doclava - - ${project.basedir}/../lib/doclava.jar: - ${project.basedir}/../../lib/doclava.jar - - - ${sun.boot.class.path} - *.internal - - -quiet - -federate JDK http://download.oracle.com/javase/6/docs/api/index.html? - -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml - -hdf project.name "${project.name} (patched build of Google Guice)" - -d ${project.build.directory}/apidocs - - false - - -J-Xmx1024m - - - - maven-site-plugin - 3.0 - - - maven-source-plugin - 2.1.2 - - - maven-gpg-plugin - 1.4 - - - maven-release-plugin - 2.2.1 - - true - - - - maven-deploy-plugin - 2.7 - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom.sha1 b/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom.sha1 deleted file mode 100644 index 87698a25274f2916a4dd9ada43fe7b279946b165..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d6fd41163da61fd7f99593de5a6ccdc76c9338c \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories b/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories deleted file mode 100644 index edcd0ec609ed702b2a572cd419698d6f08faea2f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:21 CST 2019 -guice-plexus-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom b/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom deleted file mode 100644 index d16f42f54a72e6598c5788b59fbbd01b4690aa92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +++ /dev/null @@ -1,94 +0,0 @@ - - - - 4.0.0 - - - ../guice-bean - org.sonatype.sisu.inject - guice-bean - 1.4.2 - - - pom - - guice-plexus - - Guice - Plexus - - - guice-plexus-metadata - guice-plexus-scanners - guice-plexus-converters - guice-plexus-locators - guice-plexus-binders - guice-plexus-shim - sisu-inject-plexus - - - - - - - org.codehaus.plexus - plexus-component-annotations - 1.5.4 - - - org.codehaus.plexus - plexus-classworlds - 2.2.3 - - - org.codehaus.plexus - plexus-utils - 2.0.5 - - - - org.sonatype.sisu.inject - guice-plexus-metadata - ${project.version} - - - org.sonatype.sisu.inject - guice-plexus-scanners - ${project.version} - - - org.sonatype.sisu.inject - guice-plexus-converters - ${project.version} - - - org.sonatype.sisu.inject - guice-plexus-locators - ${project.version} - - - org.sonatype.sisu.inject - guice-plexus-binders - ${project.version} - - - org.sonatype.sisu.inject - guice-plexus-shim - ${project.version} - - - org.sonatype.sisu.inject - guice-plexus-tck - ${project.version} - - - - org.sonatype.sisu - sisu-inject-plexus - ${project.version} - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 b/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 deleted file mode 100644 index 61f84316d8e3c266511ec0cd942282ee401f3f57..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9b167556a64cb79acea3a8dbf6c2f580e2699d2b \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories b/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories deleted file mode 100644 index 4d26f93ef599526e3467a9d96718c6fbcacaa282..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -sisu-guice-2.1.7-noaop.jar>repo.jenkins-ci.org= -sisu-guice-2.1.7.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar b/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar deleted file mode 100644 index aa66844435dc5f0d8de747cd1cedf5bb1138ce3b..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 deleted file mode 100644 index f5cac1f19adb101422eb712e3a5fe1c30e7c0f5f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8cb56e976b8e0e7b23f2969c32bef7b830c6d6ed \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom b/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom deleted file mode 100644 index 70f85dddf0139734ed09d03d9fa25bf0a677c29e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +++ /dev/null @@ -1,316 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.forge - forge-parent - 6 - - - pom - - org.sonatype.sisu - sisu-guice - 2.1.7 - - Sisu - Guice - - Guice trunk with some patches applied for Sisu - - - scm:git:git@github.com:sonatype/sisu-guice.git - scm:git:git@github.com:sonatype/sisu-guice.git - git@github.com:sonatype/sisu-guice.git - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - UTF-8 - ${project.groupId}.${project.artifactId} - ${project.build.directory} - ${project.build.directory}/no_aop - https://repository.sonatype.org/service/local/staging/deploy/maven2 - - - - - javax.inject - javax.inject - 1 - - - aopalliance - aopalliance - 1.0 - - - asm - asm - 3.2 - true - - - org.slf4j - slf4j-api - 1.6.1 - true - - - junit - junit - 3.8.2 - test - - - org.apache.felix - org.apache.felix.framework - 3.0.2 - test - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.1 - - - maven-antrun-plugin - 1.4 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.5 - - - maven-javadoc-plugin - 2.7 - - - maven-source-plugin - 2.1.2 - - - maven-surefire-plugin - - true - - - - maven-gpg-plugin - 1.1 - - - maven-release-plugin - 2.0 - - - - - - maven-antrun-plugin - - - compile - compile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - run - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-jars - package - - attach-artifact - - - - - ${build.dir}/dist/guice-${project.version}.jar - - - ${noaop.dir}/dist/guice-${project.version}.jar - noaop - - - - - - - - - - - - test - - - !maven.test.skip - - - - - - maven-antrun-plugin - - - test - test - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - run - - - - - - - - - release - - - - maven-antrun-plugin - - - sources - package - - - - - - - - - - - - - - - - - - - - - - run - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-sources - package - - attach-artifact - - - - - ${build.dir}/guice-${project.version}-src.jar - sources - - - ${build.dir}/guice-${project.version}-doc.jar - javadoc - - - - - - - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 deleted file mode 100644 index ce0bb60076f0aa93bdccd04e7fdd49bddbdc1dc5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -f690b118b2c3ca4cf400a558e6d000a971fd8d98 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/_remote.repositories b/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/_remote.repositories deleted file mode 100644 index 87f8f171a910f0bd5862ada2db74e0fe2dac8f98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -sisu-guice-3.1.0-no_aop.jar>repo.jenkins-ci.org= -sisu-guice-3.1.0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar b/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar deleted file mode 100644 index 4c84b3e1a21cde0c8988298aac1bc2199d998598..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar.sha1 deleted file mode 100644 index 2b00852af2656155afb733dc7e764d44a9843bff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -97c87d15d749c86b2be1b9809b28321a1d926c7f \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom b/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom deleted file mode 100644 index f0033240965f0d2410de62f480756aeb471d7f53..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom +++ /dev/null @@ -1,318 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.sisu.inject - guice-parent - 3.1.0 - - - org.sonatype.sisu - sisu-guice - - Sisu Guice - Core Library - - - - javax.inject - javax.inject - 1 - - - aopalliance - aopalliance - 1.0 - - - org.slf4j - slf4j-api - 1.6.2 - true - - - cglib - cglib - 2.2.2 - true - - - org.sonatype.sisu - sisu-guava - 0.9.9 - - - javax.inject - javax.inject-tck - 1 - test - - - org.springframework - spring-beans - 3.0.6.RELEASE - test - - - biz.aQute - bnd - 0.0.384 - test - - - org.apache.felix - org.apache.felix.framework - 3.2.2 - test - - - - - - - - maven-remote-resources-plugin - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - maven-surefire-plugin - - - - org.slf4j:slf4j-api - - - - **/OSGiContainerTest* - - - - - - org.apache.felix - maven-bundle-plugin - - - - ${project.artifactId}$(if;$(classes;NAMED;*.Interceptor*);; (no_aop)) - - org.sonatype.sisu.guava - org.slf4j - true - - - - - - maven-jar-plugin - - - LICENSE - NOTICE - - - - - - - - - - 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.5 - - 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.** - - - - - - - jarjar-classes - process-test-classes - - jarjar - - - {classes} - - - - jarjar-test-classes - process-test-classes - - jarjar - - - {test-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/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom.sha1 deleted file mode 100644 index ba2450c4ced9c6c1bc9d2e08790f58dabd6fb628..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1cd0147913832b439befc627758b1b3dcc335adb \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories b/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories deleted file mode 100644 index e9b08bd46457e578906cc4bccd3bd2f1db4e1642..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -sisu-inject-bean-1.4.2.jar>repo.jenkins-ci.org= -sisu-inject-bean-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar b/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar deleted file mode 100644 index ca6abddf9f690e39c33a525a0343d04be94b68b9..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 deleted file mode 100644 index b0795aae86eca43005eff8e94959637fe685826e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5cf37202afbaae899d63dd51b46d173df650af1b \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom b/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom deleted file mode 100644 index 06f386f1023136d9c5a28b3664bcbe18c7ddc02a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +++ /dev/null @@ -1,165 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.sisu.inject - guice-bean - 1.4.2 - - - bundle - - org.sonatype.sisu - sisu-inject-bean - - Sisu - Inject (JSR330 bean support) - - - - org.sonatype.sisu - sisu-guice - noaop - - - javax.inject - javax.inject - - - aopalliance - aopalliance - - - - - org.sonatype.sisu.inject - guice-bean-containers - true - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - - org.sonatype.inject - - - org.sonatype.guice.bean.containers.Activator - - - org.slf4j,junit.framework - - - org.sonatype.inject;-noimport:=true;-split-package:=merge-first;version=${project.version}, - javax.*|org.aopalliance.*;version=1 - - - org.sonatype.guice.*,org.objectweb.asm - - - - - - maven-shade-plugin - - - package - - shade - - - - - ${project.groupId}:${project.artifactId} - - - - - org.objectweb - org.sonatype.guice - - - - - *:* - - org/objectweb/asm/*Adapter* - org/objectweb/asm/*Writer* - - - - - - - - - maven-jar-plugin - - - - org.sonatype.guice.bean.containers.Main - - - - - - - - - - release - - - - maven-dependency-plugin - - - unpack-source - prepare-package - - unpack-dependencies - - - sources - false - ${project.build.directory}/sources - - javax/**,org/aopalliance/**,org/sonatype/inject/**,org/sonatype/guice/bean/** - - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - prepare-package - - add-source - - - - ${project.build.directory}/sources - - - - - - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 deleted file mode 100644 index 40f1ff002c93272d9f35fd15c55d1742a5a5cf83..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8b8bd0a19ec8218bb04e27aca13658605c9d7588 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories b/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories deleted file mode 100644 index 9497ce8668875812ad78ad2f5508c12a7479b90b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:20 CST 2019 -sisu-inject-plexus-1.4.2.jar>repo.jenkins-ci.org= -sisu-inject-plexus-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar b/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar deleted file mode 100644 index 53063c771f73099e78a79e67a2d79fe9bb42d943..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar and /dev/null differ diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar.sha1 deleted file mode 100644 index 07f39dbf941b15f245774c1e05e6f2bf07468c2e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -53d863ed4879d4a43ad7aee7bc63f935cc513353 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom b/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom deleted file mode 100644 index 59f356182c035984bdd93ecc7e5e71a24764740d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +++ /dev/null @@ -1,159 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.sisu.inject - guice-plexus - 1.4.2 - - - bundle - - org.sonatype.sisu - sisu-inject-plexus - - Sisu - Inject (Plexus bean support) - - - - org.codehaus.plexus - plexus-component-annotations - - - org.codehaus.plexus - plexus-classworlds - - - org.codehaus.plexus - plexus-utils - - - org.sonatype.sisu - sisu-inject-bean - - - org.sonatype.sisu.inject - guice-plexus-shim - true - - - - - - - org.apache.felix - maven-bundle-plugin - true - - - - sisu-inject-bean,*;groupId=org.codehaus.plexus - - - - org.sonatype.inject.plexus - - - org.sonatype.inject - - - org.codehaus.plexus.*;-noimport:=true;-split-package:=merge-first - - - META-INF.plexus,org.sonatype.guice.*,org.objectweb.asm - - - - - - maven-shade-plugin - - - package - - shade - - - - - ${project.groupId}:${project.artifactId} - - - - - org.objectweb - org.sonatype.guice - - - - - *:* - - META-INF/** - org/codehaus/plexus/** - org/sonatype/guice/plexus/** - org/objectweb/asm/*Writer* - - - - - - - - - - - - - release - - - - maven-dependency-plugin - - - unpack-source - prepare-package - - unpack-dependencies - - - sources - false - ${project.build.directory}/sources - org.codehaus.plexus - - org/codehaus/plexus/**,org/sonatype/guice/plexus/** - - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-source - prepare-package - - add-source - - - - ${project.build.directory}/sources - - - - - - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 deleted file mode 100644 index 98957fd7cfcfae20a081241eccec31f645f93d8e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3e27a576e375175ba275f21692d99a386d879405 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories b/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories deleted file mode 100644 index a4bdbf8e313609b243799957fa0113f87985beb7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:22 CST 2019 -sisu-inject-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom b/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom deleted file mode 100644 index b1c31ff33c9f8ad3fc26067e580a82f9b973db22..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - - 4.0.0 - - - org.sonatype.sisu - sisu-parent - 1.4.2 - - - pom - - sisu-inject - - Sisu - Dependency Injection - - - guice-bean - guice-plexus - - - - 2.1.7 - - - - - - - org.sonatype.sisu - sisu-guice - ${sisu.guice.version} - - - org.sonatype.sisu - sisu-guice - ${sisu.guice.version} - noaop - - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 deleted file mode 100644 index 4f5adca52df04248f0a2bab65ffd421552e4ca0c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -780340415a1dc940f10ae38a7b32e84db28c95dd \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories b/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories deleted file mode 100644 index c7fd8851c750f3c0675c9022f0de5dae98d52f84..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:29:23 CST 2019 -sisu-parent-1.4.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom b/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom deleted file mode 100644 index 9e674141fd33abe11691a515055c7b1d46673d58..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - 4.0.0 - - - org.sonatype.forge - forge-parent - 6 - - - pom - - org.sonatype.sisu - sisu-parent - 1.4.2 - - Sisu - - http://sisu.sonatype.org/ - 2010 - - - Sonatype, Inc. - http://www.sonatype.com - - - - - Sisu Developers List - sisu-dev-subscribe@sonatype.org - sisu-dev-unsubscribe@sonatype.org - sisu-dev@sonatype.org - - - - Sisu Users List - sisu-user-subscribe@sonatype.org - sisu-user-unsubscribe@sonatype.org - sisu-user@sonatype.org - - - - Sisu Commits List - sisu-scm-subscribe@sonatype.org - sisu-scm-unsubscribe@sonatype.org - - - - - scm:git:git@github.com:sonatype/sisu.git - scm:git:git@github.com:sonatype/sisu.git - git@github.com:sonatype/sisu.git - - - - jira - https://issues.sonatype.org/browse/SISU - - - - Hudson - https://grid.sonatype.org/ci/job/Sisu/ - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - sisu-inject - - - - UTF-8 - 1.6.1 - https://repository.sonatype.org/service/local/staging/deploy/maven2 - - - - - org.slf4j - slf4j-simple - test - - - junit - junit - test - - - - - - - - asm - asm - 3.2 - - - - javax.inject - javax.inject - 1 - - - aopalliance - aopalliance - 1.0 - - - - org.slf4j - slf4j-api - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - - org.osgi - org.osgi.core - 4.2.0 - - - org.osgi - org.osgi.compendium - 4.2.0 - - - org.apache.felix - org.apache.felix.framework - 3.0.2 - - - - junit - junit - 3.8.2 - - - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.1 - - - org.apache.felix - maven-bundle-plugin - 2.1.0 - - - - J2SE-1.5,JavaSE-1.6 - - <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@))) - <_nouses>true - <_removeheaders> - Embed-Dependency,Embed-Transitive, - Built-By,Tool,Created-By,Build-Jdk, - Include-Resource,Private-Package, - Ignore-Package,Bnd-LastModified - - - - - - maven-shade-plugin - 1.4 - - - maven-antrun-plugin - 1.4 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.5 - - - maven-javadoc-plugin - 2.7 - - - maven-source-plugin - 2.1.2 - - - maven-surefire-plugin - - true - - - - maven-gpg-plugin - 1.1 - - - maven-release-plugin - 2.0 - - true - - - - - - - - - examples - - sisu-examples - - - - - diff --git a/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 b/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 deleted file mode 100644 index aa3bb23b89bc7731a04592aeb61c51d2cf2c7584..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -11c9a4a343a22f80cfe4e9677d7b0679850e4196 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/10/_remote.repositories b/artifacts/m2/org/sonatype/spice/spice-parent/10/_remote.repositories deleted file mode 100644 index cbd70453e087ed1f848fda8ea9b921fe6107172e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/10/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:27:30 CST 2019 -spice-parent-10.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom b/artifacts/m2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom deleted file mode 100644 index f3f2a5c746549eaf0c6c0ac5f380fa07b9970d52..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom +++ /dev/null @@ -1,105 +0,0 @@ - - 4.0.0 - - org.sonatype.forge - forge-parent - 3 - - org.sonatype.spice - spice-parent - 10 - pom - Sonatype Spice Components - - - scm:svn:http://svn.sonatype.org/spice/tags/spice-parent-10 - http://svn.sonatype.org/spice/tags/spice-parent-10 - scm:svn:https://svn.sonatype.org/spice/tags/spice-parent-10 - - - - 6.1.14 - - - - - - org.codehaus.plexus - plexus-container-default - 1.0-beta-1 - - - commons-logging - commons-logging - - - commons-logging - commons-logging-api - - - log4j - log4j - - - - - org.codehaus.plexus - plexus-component-annotations - 1.0-beta-1 - - - org.codehaus.plexus - plexus-utils - 1.5.5 - - - org.mortbay.jetty - jetty - ${jetty.version} - - - org.mortbay.jetty - jetty-client - ${jetty.version} - - - junit - junit - 4.5 - test - - - - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.0-beta-1 - - - process-classes - - generate-metadata - - - - - - org.codehaus.plexus - plexus-maven-plugin - 1.3.8 - - - - descriptor - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 b/artifacts/m2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 deleted file mode 100644 index 0899a8ef480a8c03d2047caf5733004899270d1f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/10/spice-parent-10.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8e0e4ba87d63321333c26494698377b1204633a8 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/12/_remote.repositories b/artifacts/m2/org/sonatype/spice/spice-parent/12/_remote.repositories deleted file mode 100644 index 65036cdc035ed964713dd383ddc808f79e1fa5c0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/12/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:12:19 CST 2019 -spice-parent-12.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom b/artifacts/m2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom deleted file mode 100644 index 76f58872328e7694bdcc41cc84c1b113c95c2167..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +++ /dev/null @@ -1,214 +0,0 @@ - - 4.0.0 - - org.sonatype.forge - forge-parent - 4 - - org.sonatype.spice - spice-parent - 12 - pom - Sonatype Spice Components - - - scm:svn:http://svn.sonatype.org/spice/tags/spice-parent-12 - http://svn.sonatype.org/spice/tags/spice-parent-12 - scm:svn:https://svn.sonatype.org/spice/tags/spice-parent-12 - - - - - 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} - provided - - - commons-logging - commons-logging - - - commons-logging - commons-logging-api - - - log4j - log4j - - - - - org.codehaus.plexus - plexus-component-annotations - ${plexus.version} - provided - - - 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 - - - - - - - - - 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.codehaus.mojo - cobertura-maven-plugin - 2.2 - - - 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/12/spice-parent-12.pom.sha1 b/artifacts/m2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 deleted file mode 100644 index 4c061971f15e841bdad6f1b6dbcf101f4ad81250..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e86b2d826f53093e27dc579bea3becbf1425d9ba \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/16/_remote.repositories b/artifacts/m2/org/sonatype/spice/spice-parent/16/_remote.repositories deleted file mode 100644 index a6d6c73a72a31495d3e6868ef617eb5e9dc90f8f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/16/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:07 CST 2019 -spice-parent-16.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom b/artifacts/m2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom deleted file mode 100644 index 6a4b153bb5564a9390610c8b1db0fa6a875ff2a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +++ /dev/null @@ -1,260 +0,0 @@ - - 4.0.0 - - org.sonatype.forge - forge-parent - 5 - - org.sonatype.spice - spice-parent - 16 - pom - Sonatype Spice Components - - - scm:svn:http://svn.sonatype.org/spice/tags/spice-parent-16 - http://svn.sonatype.org/spice/tags/spice-parent-16 - scm:svn:https://svn.sonatype.org/spice/tags/spice-parent-16 - - - - - 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/16/spice-parent-16.pom.sha1 b/artifacts/m2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 deleted file mode 100644 index 3b711de52cd1b98bbec5c161d56fe1f2751bbfe1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aefd3135046b7c3f5835283bcc3b670fc46692b9 \ No newline at end of file diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/17/_remote.repositories b/artifacts/m2/org/sonatype/spice/spice-parent/17/_remote.repositories deleted file mode 100644 index 9054b353040b8cee7cdf7f300143806066634bbe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/17/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:13:07 CST 2019 -spice-parent-17.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom b/artifacts/m2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom deleted file mode 100644 index abe8170b3c5cb967d0ba36d2152b55cd3af77352..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +++ /dev/null @@ -1,211 +0,0 @@ - - - 4.0.0 - - - org.sonatype.forge - forge-parent - 10 - - - - org.sonatype.spice - spice-parent - 17 - pom - - Sonatype Spice Components - - - scm:git:git://github.com/sonatype/oss-parents.git - scm:git:git@github.com:sonatype/oss-parents.git - https://github.com/sonatype/spice-parent - - - - - Apache License, Version 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 - - - - 2.1.1 - 1.6.1 - - - - - - - - - - org.sonatype.sisu - sisu-inject-bean - ${sisu-inject.version} - runtime - - - org.sonatype.sisu - sisu-guice - 2.9.4 - no_aop - runtime - - - javax.inject - javax.inject - 1 - compile - - - - - - org.sonatype.sisu - sisu-inject-plexus - ${sisu-inject.version} - compile - - - org.codehaus.plexus - plexus-component-annotations - 1.5.5 - compile - - - org.codehaus.plexus - plexus-classworlds - 2.4 - compile - - - org.codehaus.plexus - plexus-utils - 2.0.5 - compile - - - - - - - org.slf4j - slf4j-api - ${slf4j.version} - jar - compile - - - org.slf4j - jcl-over-slf4j - ${slf4j.version} - jar - runtime - - - org.slf4j - jul-to-slf4j - ${slf4j.version} - jar - runtime - - - org.slf4j - slf4j-simple - ${slf4j.version} - jar - test - - - - - junit - junit - 4.8.2 - test - - - - - - - - - org.codehaus.plexus - plexus-component-metadata - 1.5.5 - - - process-classes - - generate-metadata - - - - process-test-classes - - generate-test-metadata - - - - - - - - - - - - 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 - - - - - - - diff --git a/artifacts/m2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 b/artifacts/m2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 deleted file mode 100644 index 42dafabe45f0011124f4aae188b23dc6b455a7d3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7f500699ef371383492a4d6ee799b1a77ffd82cc \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 55955bda27f836f8f08bc00dd3da595088e9a369..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:43 CST 2019 -spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar>spring-snapshots= -spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index b254f93591b117a1eecbbba49dc2378988c914ed..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - org.springframework.boot - spring-boot-autoconfigure - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 115 - - 20171005125830 - - - pom.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - javadoc - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - javadoc - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index ca658c7b117ff1d12f0fa69cdd6946d696d0b4e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -f1fcf2a223a9479a4c5703c607a8d59f00d6af76 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 7005816ed6ff05a7b8c556da34b54e1b285c3592..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:39 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345158835 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345159653 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345159862 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar deleted file mode 100644 index 88993c0393b5a1c6ad8f115bc8690cd2495a45e8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar.sha1 deleted file mode 100644 index fca6a491496a544719520ba895b64bd334b0993e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -98ff83f831e93c309fe8b1e92d8817046d6c5bee \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom deleted file mode 100644 index e1d585f2f876c80932d101f94a866eec140ecc33..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom +++ /dev/null @@ -1,676 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot-autoconfigure - Spring Boot AutoConfigure - Spring Boot AutoConfigure - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - - - org.springframework.boot - spring-boot - - - - com.atomikos - transactions-jdbc - true - - - com.atomikos - transactions-jta - true - - - com.couchbase.client - couchbase-spring-cache - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - true - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - true - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - true - - - com.fasterxml.jackson.module - jackson-module-parameter-names - true - - - com.google.code.gson - gson - true - - - com.hazelcast - hazelcast - true - - - com.hazelcast - hazelcast-spring - true - - - com.h2database - h2 - true - - - com.samskivert - jmustache - true - - - com.sun.mail - javax.mail - true - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - true - - - javax.cache - cache-api - true - - - io.projectreactor.spring - reactor-spring-context - true - - - io.searchbox - jest - true - - - org.flywaydb - flyway-core - true - - - org.glassfish.jersey.core - jersey-server - true - - - org.glassfish.jersey.containers - jersey-container-servlet-core - true - - - org.glassfish.jersey.containers - jersey-container-servlet - true - - - org.glassfish.jersey.ext - jersey-spring3 - true - - - org.glassfish.jersey.media - jersey-media-json-jackson - true - - - commons-dbcp - commons-dbcp - true - - - org.apache.activemq - activemq-broker - true - - - org.apache.activemq - activemq-pool - true - - - org.apache.activemq - artemis-jms-client - true - - - org.apache.activemq - artemis-jms-server - true - - - org.apache.commons - commons-dbcp2 - true - - - org.apache.solr - solr-solrj - true - - - org.codehaus.woodstox - wstx-asl - - - log4j - log4j - - - - - org.apache.tomcat.embed - tomcat-embed-core - true - - - org.apache.tomcat.embed - tomcat-embed-el - true - - - org.apache.tomcat - tomcat-jdbc - true - - - org.apache.velocity - velocity - true - - - org.codehaus.btm - btm - true - - - org.codehaus.groovy - groovy-templates - true - - - com.sendgrid - sendgrid-java - true - - - com.zaxxer - HikariCP-java6 - true - - - org.eclipse.jetty - jetty-webapp - true - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - true - - - io.undertow - undertow-servlet - true - - - io.undertow - undertow-websockets-jsr - true - - - org.ehcache - ehcache - true - - - org.freemarker - freemarker - true - - - org.hibernate - hibernate-entitymanager - true - - - org.hibernate - hibernate-validator - true - - - org.hornetq - hornetq-jms-client - true - - - org.hornetq - hornetq-jms-server - true - - - org.infinispan - infinispan-jcache - true - - - org.infinispan - infinispan-spring4-embedded - true - - - org.springframework - spring-jdbc - true - - - org.springframework.integration - spring-integration-core - true - - - org.springframework.integration - spring-integration-jmx - true - - - org.springframework - spring-jms - true - - - org.springframework - spring-orm - true - - - org.springframework - spring-tx - true - - - org.springframework - spring-web - true - - - org.springframework - spring-websocket - true - - - org.springframework - spring-webmvc - true - - - org.springframework.batch - spring-batch-core - true - - - org.springframework.data - spring-data-couchbase - true - - - org.slf4j - jcl-over-slf4j - - - - - org.springframework.data - spring-data-jpa - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-rest-webmvc - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-cassandra - true - - - org.springframework.data - spring-data-mongodb - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-neo4j - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-redis - true - - - org.springframework.data - spring-data-elasticsearch - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-solr - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.hateoas - spring-hateoas - true - - - redis.clients - jedis - true - - - org.liquibase - liquibase-core - true - - - org.springframework.security - spring-security-acl - true - - - org.springframework.security - spring-security-web - true - - - org.springframework.security - spring-security-config - true - - - org.springframework.security - spring-security-data - true - - - org.springframework.security.oauth - spring-security-oauth2 - true - - - org.springframework.security - spring-security-jwt - true - - - org.springframework.session - spring-session - true - - - org.springframework.amqp - spring-rabbit - true - - - org.springframework.cloud - spring-cloud-spring-service-connector - true - - - org.springframework.mobile - spring-mobile-device - true - - - org.springframework.social - spring-social-config - true - - - org.springframework.social - spring-social-core - true - - - org.springframework.social - spring-social-web - true - - - org.springframework.social - spring-social-facebook - true - - - org.springframework.social - spring-social-twitter - true - - - org.springframework.social - spring-social-linkedin - true - - - org.springframework.ws - spring-ws-core - true - - - org.thymeleaf - thymeleaf - true - - - org.thymeleaf - thymeleaf-spring4 - true - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - true - - - com.github.ben-manes.caffeine - caffeine - true - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - true - - - org.thymeleaf.extras - thymeleaf-extras-conditionalcomments - true - - - org.thymeleaf.extras - thymeleaf-extras-java8time - true - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity4 - true - - - javax.jms - jms-api - true - - - javax.mail - javax.mail-api - true - - - net.sf.ehcache - ehcache - true - - - org.aspectj - aspectjweaver - true - - - org.jooq - jooq - true - - - org.jboss.narayana.jta - jta - true - - - org.jboss.narayana.jts - narayana-jts-integration - true - - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - org.springframework.boot - spring-boot - test-jar - test - - - org.springframework.boot - spring-boot-test - test - - - org.springframework.boot - spring-boot-test - test-jar - test - - - ch.qos.logback - logback-classic - test - - - com.atomikos - transactions-jms - test - - - mysql - mysql-connector-java - test - - - org.apache.tomcat.embed - tomcat-embed-websocket - test - - - org.hsqldb - hsqldb - test - - - org.springframework - spring-test - test - - - org.springframework.security - spring-security-test - test - - - org.yaml - snakeyaml - test - - - org.apache.tomcat.embed - tomcat-embed-jasper - test - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated deleted file mode 100644 index 01792a4cd4b69a20b8a59c9b0bfddadc5ee42ea2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:07 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667366609 -http\://repo.spring.io/snapshot/.lastUpdated=1553667367641 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom.sha1 deleted file mode 100644 index 1fa333fe09cb21beb114d547bf1bd21c084787db..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-20160920.220833-115.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -3fb3ed983961ea97da9c3ef9302fb8bb7687d594 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index 88993c0393b5a1c6ad8f115bc8690cd2495a45e8..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index e1d585f2f876c80932d101f94a866eec140ecc33..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-autoconfigure/1.4.1.BUILD-SNAPSHOT/spring-boot-autoconfigure-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,676 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot-autoconfigure - Spring Boot AutoConfigure - Spring Boot AutoConfigure - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - - - org.springframework.boot - spring-boot - - - - com.atomikos - transactions-jdbc - true - - - com.atomikos - transactions-jta - true - - - com.couchbase.client - couchbase-spring-cache - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - true - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - true - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - true - - - com.fasterxml.jackson.module - jackson-module-parameter-names - true - - - com.google.code.gson - gson - true - - - com.hazelcast - hazelcast - true - - - com.hazelcast - hazelcast-spring - true - - - com.h2database - h2 - true - - - com.samskivert - jmustache - true - - - com.sun.mail - javax.mail - true - - - de.flapdoodle.embed - de.flapdoodle.embed.mongo - true - - - javax.cache - cache-api - true - - - io.projectreactor.spring - reactor-spring-context - true - - - io.searchbox - jest - true - - - org.flywaydb - flyway-core - true - - - org.glassfish.jersey.core - jersey-server - true - - - org.glassfish.jersey.containers - jersey-container-servlet-core - true - - - org.glassfish.jersey.containers - jersey-container-servlet - true - - - org.glassfish.jersey.ext - jersey-spring3 - true - - - org.glassfish.jersey.media - jersey-media-json-jackson - true - - - commons-dbcp - commons-dbcp - true - - - org.apache.activemq - activemq-broker - true - - - org.apache.activemq - activemq-pool - true - - - org.apache.activemq - artemis-jms-client - true - - - org.apache.activemq - artemis-jms-server - true - - - org.apache.commons - commons-dbcp2 - true - - - org.apache.solr - solr-solrj - true - - - org.codehaus.woodstox - wstx-asl - - - log4j - log4j - - - - - org.apache.tomcat.embed - tomcat-embed-core - true - - - org.apache.tomcat.embed - tomcat-embed-el - true - - - org.apache.tomcat - tomcat-jdbc - true - - - org.apache.velocity - velocity - true - - - org.codehaus.btm - btm - true - - - org.codehaus.groovy - groovy-templates - true - - - com.sendgrid - sendgrid-java - true - - - com.zaxxer - HikariCP-java6 - true - - - org.eclipse.jetty - jetty-webapp - true - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - true - - - io.undertow - undertow-servlet - true - - - io.undertow - undertow-websockets-jsr - true - - - org.ehcache - ehcache - true - - - org.freemarker - freemarker - true - - - org.hibernate - hibernate-entitymanager - true - - - org.hibernate - hibernate-validator - true - - - org.hornetq - hornetq-jms-client - true - - - org.hornetq - hornetq-jms-server - true - - - org.infinispan - infinispan-jcache - true - - - org.infinispan - infinispan-spring4-embedded - true - - - org.springframework - spring-jdbc - true - - - org.springframework.integration - spring-integration-core - true - - - org.springframework.integration - spring-integration-jmx - true - - - org.springframework - spring-jms - true - - - org.springframework - spring-orm - true - - - org.springframework - spring-tx - true - - - org.springframework - spring-web - true - - - org.springframework - spring-websocket - true - - - org.springframework - spring-webmvc - true - - - org.springframework.batch - spring-batch-core - true - - - org.springframework.data - spring-data-couchbase - true - - - org.slf4j - jcl-over-slf4j - - - - - org.springframework.data - spring-data-jpa - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-rest-webmvc - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-cassandra - true - - - org.springframework.data - spring-data-mongodb - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-neo4j - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-redis - true - - - org.springframework.data - spring-data-elasticsearch - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.data - spring-data-solr - true - - - jcl-over-slf4j - org.slf4j - - - - - org.springframework.hateoas - spring-hateoas - true - - - redis.clients - jedis - true - - - org.liquibase - liquibase-core - true - - - org.springframework.security - spring-security-acl - true - - - org.springframework.security - spring-security-web - true - - - org.springframework.security - spring-security-config - true - - - org.springframework.security - spring-security-data - true - - - org.springframework.security.oauth - spring-security-oauth2 - true - - - org.springframework.security - spring-security-jwt - true - - - org.springframework.session - spring-session - true - - - org.springframework.amqp - spring-rabbit - true - - - org.springframework.cloud - spring-cloud-spring-service-connector - true - - - org.springframework.mobile - spring-mobile-device - true - - - org.springframework.social - spring-social-config - true - - - org.springframework.social - spring-social-core - true - - - org.springframework.social - spring-social-web - true - - - org.springframework.social - spring-social-facebook - true - - - org.springframework.social - spring-social-twitter - true - - - org.springframework.social - spring-social-linkedin - true - - - org.springframework.ws - spring-ws-core - true - - - org.thymeleaf - thymeleaf - true - - - org.thymeleaf - thymeleaf-spring4 - true - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - true - - - com.github.ben-manes.caffeine - caffeine - true - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - true - - - org.thymeleaf.extras - thymeleaf-extras-conditionalcomments - true - - - org.thymeleaf.extras - thymeleaf-extras-java8time - true - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity4 - true - - - javax.jms - jms-api - true - - - javax.mail - javax.mail-api - true - - - net.sf.ehcache - ehcache - true - - - org.aspectj - aspectjweaver - true - - - org.jooq - jooq - true - - - org.jboss.narayana.jta - jta - true - - - org.jboss.narayana.jts - narayana-jts-integration - true - - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - org.springframework.boot - spring-boot - test-jar - test - - - org.springframework.boot - spring-boot-test - test - - - org.springframework.boot - spring-boot-test - test-jar - test - - - ch.qos.logback - logback-classic - test - - - com.atomikos - transactions-jms - test - - - mysql - mysql-connector-java - test - - - org.apache.tomcat.embed - tomcat-embed-websocket - test - - - org.hsqldb - hsqldb - test - - - org.springframework - spring-test - test - - - org.springframework.security - spring-security-test - test - - - org.yaml - snakeyaml - test - - - org.apache.tomcat.embed - tomcat-embed-jasper - test - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index aa09136f3bc92f296a9ad01ebef9616f2ebd5e01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:10:55 CST 2019 -spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index c2f3e5cc3ddf19ce469f280859c3a37c1e083e15..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 115 - - 20171005125832 - - - pom.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 94325a6953c219e136374a2f3c0be08cc5a117ce..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -4a7474b54092ab1e3a5abd8fd1246cc06b1543b8 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 502b17addfa1aaab81835199e6d83699eab61d76..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:25 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345143946 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345143792 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345145322 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom deleted file mode 100644 index 3fa00d338709ae02fe1ea8e2f97dd2c4b1844ff2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom +++ /dev/null @@ -1,2618 +0,0 @@ - - 4.0.0 - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - pom - Spring Boot Dependencies - Spring Boot Dependencies - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - https://github.com/spring-projects/spring-boot - - - - pwebb - Phillip Webb - pwebb at pivotal.io - Pivotal Software, Inc. - http://www.spring.io - - Project lead - - - - dsyer - Dave Syer - dsyer at pivotal.io - Pivotal Software, Inc. - http://www.spring.io - - Project lead - - - - - 5.13.4 - 2.7.7 - 1.9.42 - 1.3.0 - 1.8.9 - 2.5.0 - 3.9.3 - 2.1.4 - 2.3.3 - 2.1.9 - 1.3.1 - 1.9.2 - 3.2.2 - 1.10 - 1.4 - 2.1.1 - 2.1 - 1.6 - 2.4.2 - 2.2.8 - 2.0.0 - 1.3.2 - 10.12.1.1 - 1.6.1 - 3.1.2 - 2.10.2.2.21 - 3.1.2 - 1.50.5 - 3.2.1 - 2.3.25-incubating - 2.4.0 - 8.2.0 - 3.0.0 - 1.12 - 2.4.7 - 2.7 - 1.4.192 - 1.3 - 3.6.5 - 5.0.11.Final - 5.2.4.Final - 2.4.7 - 2.3.13 - 2.4.7.Final - 2.3.3 - 2.21 - 4.1.2 - 4.5.2 - 4.4.5 - 8.2.4.Final - 2.8.3 - 2.7.8 - 3.20.0-GA - 1.0.0 - 1.5.6 - 1.2 - 1.1.6 - 2.2.11 - 3.3.0.Final - 7.3.4.Final - 2.0.6 - 2.8.1 - 2.23.2 - 2.0.3 - 9.3.11.v20160721 - 2.2.0.v201112011158 - 8.0.33 - 1.12 - 4.2.2 - 2.9.4 - 1.3.4 - 3.8.4 - 20140107 - 1.3.0 - 2.2.0 - 1.2 - 1.3.1 - 4.12 - 3.5.1 - 2.6.2 - 1.1.7 - 1.16.10 - 1.4.6 - 1.10.19 - 3.2.2 - 5.1.39 - 5.3.4.Final - 1.9.22 - 2.0.5 - 9.4.1211.jre7 - 4.1.4 - 2.0.8.RELEASE - 2.0.7.RELEASE - 2.53.1 - 2.2.2 - 3.1.0 - 1.1.1 - 1.7.21 - 1.17 - 5.5.3 - 1.0-groovy-2.4 - 4.3.3.RELEASE - 1.6.2.RELEASE - 1.2.3.RELEASE - 3.0.7.RELEASE - Hopper-SR3 - 0.20.0.RELEASE - 4.3.2.RELEASE - 1.1.3.RELEASE - 1.2.6.RELEASE - 1.1.5.RELEASE - 1.2.0.RELEASE - 1.1.2.RELEASE - 1.1.4.RELEASE - 4.1.3.RELEASE - 1.0.5.RELEASE - 2.0.11.RELEASE - 1.2.2.RELEASE - 1.1.4.RELEASE - 2.0.3.RELEASE - 1.0.2.RELEASE - 1.1.2.RELEASE - 2.3.0.RELEASE - 3.8.11.2 - 3.1.0 - ${javax-mail.version} - 2.1.5.RELEASE - 2.1.2.RELEASE - 2.1.2.RELEASE - 1.4.0 - 1.3 - 2.1.0.RELEASE - 8.5.5 - 1.3.25.Final - 1.7 - 2.0 - 9f96c74 - 0.32 - 1.6.3 - 1.4.01 - - - 3.2.1 - - - - - - org.springframework.boot - spring-boot - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot - test-jar - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-test - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-test-autoconfigure - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-test - test-jar - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-actuator - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-actuator-docs - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-autoconfigure - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-configuration-metadata - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-configuration-processor - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-devtools - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-loader - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-loader-tools - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter - 1.4.1.BUILD-SNAPSHOT - - - commons-logging - commons-logging - - - - - org.springframework.boot - spring-boot-starter-activemq - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-actuator - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-amqp - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-aop - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-artemis - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-batch - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-cache - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-cloud-connectors - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-cassandra - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-couchbase - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-gemfire - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-jpa - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-mongodb - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-redis - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-redis - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-neo4j - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-rest - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-solr - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-freemarker - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-groovy-templates - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-hateoas - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-hornetq - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-integration - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jdbc - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jersey - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jetty - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jooq - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jta-atomikos - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jta-bitronix - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-undertow - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-log4j2 - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-logging - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-mail - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-mobile - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-mustache - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jta-narayana - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-remote-shell - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-security - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-social-facebook - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-social-linkedin - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-social-twitter - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-test - 1.4.1.BUILD-SNAPSHOT - - - commons-logging - commons-logging - - - - - org.springframework.boot - spring-boot-starter-thymeleaf - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-tomcat - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-validation - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-velocity - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-web - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-websocket - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-web-services - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-ws - 1.4.1.BUILD-SNAPSHOT - - - - - 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-dse - ${cassandra-driver.version} - - - org.slf4j - slf4j-log4j12 - - - log4j - log4j - - - com.google.guava - guava - - - - - com.datastax.cassandra - cassandra-driver-mapping - ${cassandra-driver.version} - - - com.fasterxml - classmate - ${classmate.version} - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version} - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version} - - - com.fasterxml.jackson.module - jackson-module-kotlin - ${jackson.version} - - - com.fasterxml.jackson.module - jackson-module-parameter-names - ${jackson.version} - - - com.gemstone.gemfire - gemfire - ${gemfire.version} - - - com.github.ben-manes.caffeine - caffeine - ${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.version} - - - com.google.code.gson - gson - ${gson.version} - - - com.googlecode.json-simple - json-simple - ${simple-json.version} - - - com.h2database - h2 - ${h2.version} - - - com.hazelcast - hazelcast - ${hazelcast.version} - - - com.hazelcast - hazelcast-hibernate4 - ${hazelcast.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.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} - - - org.mongodb - mongo-java-driver - - - - - com.samskivert - jmustache - ${jmustache.version} - - - com.sendgrid - sendgrid-java - ${sendgrid.version} - - - com.sun.mail - javax.mail - ${sun-mail.version} - - - com.timgroup - java-statsd-client - ${statsd-client.version} - - - com.zaxxer - HikariCP - ${hikaricp.version} - - - com.zaxxer - HikariCP-java6 - ${hikaricp-java6.version} - - - commons-beanutils - commons-beanutils - ${commons-beanutils.version} - - - commons-logging - commons-logging - - - - - commons-collections - commons-collections - ${commons-collections.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - commons-dbcp - commons-dbcp - ${commons-dbcp.version} - - - commons-digester - commons-digester - ${commons-digester.version} - - - commons-logging - commons-logging - - - - - 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-core - ${dropwizard-metrics.version} - - - io.dropwizard.metrics - metrics-ganglia - ${dropwizard-metrics.version} - - - io.dropwizard.metrics - metrics-graphite - ${dropwizard-metrics.version} - - - io.dropwizard.metrics - metrics-servlets - ${dropwizard-metrics.version} - - - io.projectreactor - reactor-bus - ${reactor.version} - - - io.projectreactor - reactor-core - ${reactor.version} - - - io.projectreactor - reactor-groovy - ${reactor.version} - - - io.projectreactor - reactor-groovy-extensions - ${reactor.version} - - - io.projectreactor - reactor-logback - ${reactor.version} - - - io.projectreactor - reactor-net - ${reactor.version} - - - io.projectreactor - reactor-stream - ${reactor.version} - - - io.projectreactor.spring - reactor-spring-context - ${reactor-spring.version} - - - io.projectreactor.spring - reactor-spring-core - ${reactor-spring.version} - - - io.projectreactor.spring - reactor-spring-messaging - ${reactor-spring.version} - - - io.projectreactor.spring - reactor-spring-webmvc - ${reactor-spring.version} - - - io.searchbox - jest - ${jest.version} - - - io.undertow - undertow-core - ${undertow.version} - - - io.undertow - undertow-servlet - ${undertow.version} - - - io.undertow - undertow-websockets-jsr - ${undertow.version} - - - javax.cache - cache-api - ${javax-cache.version} - - - javax.jms - jms-api - 1.1-rev-1 - - - javax.mail - javax.mail-api - ${javax-mail.version} - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - javax.servlet - jstl - ${jstl.version} - - - javax.transaction - javax.transaction-api - ${javax-transaction.version} - - - jaxen - jaxen - ${jaxen.version} - - - joda-time - joda-time - ${joda-time.version} - - - junit - junit - ${junit.version} - - - mysql - mysql-connector-java - ${mysql.version} - - - net.java.dev.jna - jna - ${jna.version} - - - net.sf.ehcache - ehcache - ${ehcache.version} - - - net.sourceforge.htmlunit - htmlunit - ${htmlunit.version} - - - 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} - - - org.apache.activemq - artemis-core-client - ${artemis.version} - - - org.apache.activemq - artemis-jms-client - ${artemis.version} - - - org.apache.activemq - artemis-jms-server - ${artemis.version} - - - 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} - - - org.apache.activemq - artemis-service-extensions - ${artemis.version} - - - org.apache.commons - commons-dbcp2 - ${commons-dbcp2.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 - httpclient - ${httpclient.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - org.apache.httpcomponents - httpmime - ${httpclient.version} - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - org.apache.logging.log4j - log4j-core - ${log4j2.version} - - - org.apache.logging.log4j - log4j-slf4j-impl - ${log4j2.version} - - - org.apache.solr - solr-solrj - ${solr.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.apache.tomcat - tomcat-jdbc - ${tomcat.version} - - - org.apache.tomcat - tomcat-jsp-api - ${tomcat.version} - - - org.apache.velocity - velocity - ${velocity.version} - - - org.apache.velocity - velocity-tools - ${velocity-tools.version} - - - commons-logging - commons-logging - - - - - 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-all - ${groovy.version} - - - org.codehaus.groovy - groovy-ant - ${groovy.version} - - - org.codehaus.groovy - groovy-bsf - ${groovy.version} - - - org.codehaus.groovy - groovy-console - ${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-jmx - ${groovy.version} - - - org.codehaus.groovy - groovy-json - ${groovy.version} - - - org.codehaus.groovy - groovy-jsr223 - ${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-testng - ${groovy.version} - - - org.codehaus.groovy - groovy-xml - ${groovy.version} - - - org.codehaus.janino - janino - ${janino.version} - - - org.crashub - crash.cli - ${crashub.version} - - - org.crashub - crash.connectors.ssh - ${crashub.version} - - - commons-logging - commons-logging - - - - - org.crashub - crash.connectors.telnet - ${crashub.version} - - - org.crashub - crash.embed.spring - ${crashub.version} - - - org.crashub - crash.plugins.cron - ${crashub.version} - - - org.crashub - crash.plugins.mail - ${crashub.version} - - - org.crashub - crash.shell - ${crashub.version} - - - org.eclipse.jetty - jetty-annotations - ${jetty.version} - - - org.eclipse.jetty - jetty-client - ${jetty.version} - - - org.eclipse.jetty - jetty-continuation - ${jetty.version} - - - org.eclipse.jetty - jetty-deploy - ${jetty.version} - - - org.eclipse.jetty - jetty-http - ${jetty.version} - - - org.eclipse.jetty - jetty-io - ${jetty.version} - - - org.eclipse.jetty - apache-jstl - ${jetty.version} - - - org.eclipse.jetty - apache-jsp - ${jetty.version} - - - org.eclipse.jetty - jetty-jmx - ${jetty.version} - - - org.eclipse.jetty - jetty-plus - ${jetty.version} - - - org.eclipse.jetty - jetty-security - ${jetty.version} - - - org.eclipse.jetty - jetty-server - ${jetty.version} - - - org.eclipse.jetty - jetty-servlet - ${jetty.version} - - - org.eclipse.jetty - jetty-servlets - ${jetty.version} - - - org.eclipse.jetty - jetty-util - ${jetty.version} - - - org.eclipse.jetty - jetty-webapp - ${jetty.version} - - - org.eclipse.jetty - jetty-xml - ${jetty.version} - - - org.eclipse.jetty.orbit - javax.servlet.jsp - ${jetty-jsp.version} - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - ${jetty.version} - - - org.eclipse.jetty.websocket - websocket-client - ${jetty.version} - - - org.eclipse.jetty.websocket - websocket-server - ${jetty.version} - - - org.ehcache - ehcache - ${ehcache3.version} - - - org.ehcache - ehcache-clustered - ${ehcache3.version} - - - org.ehcache - ehcache-transactions - ${ehcache3.version} - - - org.elasticsearch - elasticsearch - ${elasticsearch.version} - - - org.firebirdsql.jdbc - jaybird-jdk16 - ${jaybird.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.jersey.containers - jersey-container-servlet - ${jersey.version} - - - org.glassfish.jersey.containers - jersey-container-servlet-core - ${jersey.version} - - - org.glassfish.jersey.core - jersey-server - ${jersey.version} - - - org.glassfish.jersey.ext - jersey-bean-validation - ${jersey.version} - - - org.glassfish.jersey.ext - jersey-spring3 - ${jersey.version} - - - org.glassfish.hk2.external - bean-validator - - - - - org.glassfish.jersey.media - jersey-media-json-jackson - ${jersey.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - org.hibernate - hibernate-core - ${hibernate.version} - - - org.hibernate - hibernate-ehcache - ${hibernate.version} - - - org.hibernate - hibernate-entitymanager - ${hibernate.version} - - - org.hibernate - hibernate-envers - ${hibernate.version} - - - org.hibernate - hibernate-java8 - ${hibernate.version} - - - org.hibernate - hibernate-jpamodelgen - ${hibernate.version} - - - org.hibernate - hibernate-validator - ${hibernate-validator.version} - - - org.hibernate - hibernate-validator-annotation-processor - ${hibernate-validator.version} - - - org.hornetq - hornetq-jms-client - ${hornetq.version} - - - org.hornetq - hornetq-jms-server - ${hornetq.version} - - - org.jboss.spec.javax.transaction - jboss-transaction-api_1.1_spec - - - - - org.hsqldb - hsqldb - ${hsqldb.version} - - - org.infinispan - infinispan-jcache - ${infinispan.version} - - - org.infinispan - infinispan-spring4-common - ${infinispan.version} - - - commons-logging - commons-logging - - - org.apache.logging.log4j - log4j-core - - - org.apache.logging.log4j - log4j-slf4j-impl - - - org.apache.logging.log4j - log4j-jcl - - - - - org.infinispan - infinispan-spring4-embedded - ${infinispan.version} - - - commons-logging - commons-logging - - - org.apache.logging.log4j - log4j-core - - - org.apache.logging.log4j - log4j-slf4j-impl - - - org.apache.logging.log4j - log4j-jcl - - - - - org.javassist - javassist - ${javassist.version} - - - org.jboss - jboss-transaction-spi - ${jboss-transaction-spi.version} - - - org.jboss.logging - jboss-logging - ${jboss-logging.version} - - - org.jboss.narayana.jta - jdbc - ${narayana.version} - - - org.jboss.narayana.jta - jms - ${narayana.version} - - - org.jboss.narayana.jta - jta - ${narayana.version} - - - org.jboss.narayana.jts - narayana-jts-integration - ${narayana.version} - - - org.jdom - jdom2 - ${jdom2.version} - - - org.jolokia - jolokia-core - ${jolokia.version} - - - org.json - json - ${json.version} - - - org.jooq - jooq - ${jooq.version} - - - org.jooq - jooq-meta - ${jooq.version} - - - org.jooq - jooq-codegen - ${jooq.version} - - - org.liquibase - liquibase-core - ${liquibase.version} - - - org.mariadb.jdbc - mariadb-java-client - ${mariadb.version} - - - org.mockito - mockito-core - ${mockito.version} - - - org.mongodb - mongodb-driver - ${mongodb.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-compiler - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-core - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-http-driver - ${neo4j-ogm.version} - - - org.postgresql - postgresql - ${postgresql.version} - - - org.projectlombok - lombok - ${lombok.version} - - - org.seleniumhq.selenium - htmlunit-driver - ${htmlunit.version} - - - org.seleniumhq.selenium - selenium-api - ${selenium.version} - - - org.seleniumhq.selenium - selenium-chrome-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-remote-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-safari-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-support - ${selenium.version} - - - 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-jdk14 - ${slf4j.version} - - - org.slf4j - slf4j-log4j12 - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - org.spockframework - spock-core - ${spock.version} - - - org.codehaus.groovy - groovy-all - - - - - org.spockframework - spock-spring - ${spock.version} - - - org.springframework - spring-core - ${spring.version} - - - org.springframework - spring-framework-bom - ${spring.version} - import - pom - - - org.springframework - springloaded - ${spring-loaded.version} - - - org.springframework.amqp - spring-amqp - ${spring-amqp.version} - - - org.springframework.amqp - spring-rabbit - ${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-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} - import - pom - - - org.springframework.hateoas - spring-hateoas - ${spring-hateoas.version} - - - org.springframework.integration - spring-integration-bom - ${spring-integration.version} - import - pom - - - org.springframework.integration - spring-integration-http - ${spring-integration.version} - - - commons-logging - commons-logging - - - commons-logging - commons-logging-api - - - - - org.springframework.integration - spring-integration-java-dsl - ${spring-integration-java-dsl.version} - - - org.springframework.mobile - spring-mobile-device - ${spring-mobile.version} - - - org.springframework.plugin - spring-plugin-core - ${spring-plugin.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.retry - spring-retry - ${spring-retry.version} - - - org.springframework.security - spring-security-bom - ${spring-security.version} - import - pom - - - org.springframework.security - spring-security-jwt - ${spring-security-jwt.version} - - - org.springframework.security.oauth - spring-security-oauth - ${spring-security-oauth.version} - - - org.springframework.security.oauth - spring-security-oauth2 - ${spring-security-oauth.version} - - - org.springframework.session - spring-session - ${spring-session.version} - - - org.springframework.session - spring-session-data-gemfire - ${spring-session.version} - - - org.springframework.session - spring-session-data-mongo - ${spring-session.version} - - - org.springframework.session - spring-session-jdbc - ${spring-session.version} - - - org.springframework.session - spring-session-data-redis - ${spring-session.version} - - - org.springframework.social - spring-social-config - ${spring-social.version} - - - org.springframework.social - spring-social-core - ${spring-social.version} - - - org.springframework.social - spring-social-security - ${spring-social.version} - - - org.springframework.social - spring-social-web - ${spring-social.version} - - - org.springframework.social - spring-social-facebook - ${spring-social-facebook.version} - - - org.springframework.social - spring-social-facebook-web - ${spring-social-facebook.version} - - - org.springframework.social - spring-social-linkedin - ${spring-social-linkedin.version} - - - org.springframework.social - spring-social-twitter - ${spring-social-twitter.version} - - - 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.xerial - sqlite-jdbc - ${sqlite-jdbc.version} - - - org.thymeleaf - thymeleaf - ${thymeleaf.version} - - - org.thymeleaf - thymeleaf-spring4 - ${thymeleaf.version} - - - org.thymeleaf.extras - thymeleaf-extras-conditionalcomments - ${thymeleaf-extras-conditionalcomments.version} - - - org.thymeleaf.extras - thymeleaf-extras-java8time - ${thymeleaf-extras-java8time.version} - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity4 - ${thymeleaf-extras-springsecurity4.version} - - - org.webjars - hal-browser - ${webjars-hal-browser.version} - - - org.webjars - webjars-locator - ${webjars-locator.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - redis.clients - jedis - ${jedis.version} - - - wsdl4j - wsdl4j - ${wsdl4j.version} - - - xml-apis - xml-apis - ${xml-apis.version} - - - - - - - - org.jooq - jooq-codegen-maven - ${jooq.version} - - - org.springframework.boot - spring-boot-maven-plugin - 1.4.1.BUILD-SNAPSHOT - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.6 - - false - - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.10 - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.10 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-help-plugin - 2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - org.apache.maven.plugins - maven-shade-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-site-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-war-plugin - 2.6 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.10 - - - org.codehaus.mojo - exec-maven-plugin - 1.5.0 - - - org.codehaus.mojo - versions-maven-plugin - 2.2 - - - pl.project13.maven - git-commit-id-plugin - 2.2.1 - - - - - - maven-help-plugin - false - - - generate-effective-dependencies-pom - generate-resources - - effective-pom - - - ${project.build.directory}/effective-pom/spring-boot-dependencies.xml - - - - - - org.codehaus.mojo - xml-maven-plugin - 1.0 - false - - - - transform - - - - - - - ${project.build.directory}/effective-pom - src/main/xslt/single-project.xsl - ${project.build.directory}/effective-pom - - - - - - org.codehaus.mojo - build-helper-maven-plugin - false - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/effective-pom/spring-boot-dependencies.xml - effective-pom - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom.sha1 deleted file mode 100644 index d779545db41e0b6a17f88a035d064971872aadd2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-20160920.220833-115.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -e0e14ac32b2081372c113e72955a556c2fbff3d4 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 3fa00d338709ae02fe1ea8e2f97dd2c4b1844ff2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-dependencies/1.4.1.BUILD-SNAPSHOT/spring-boot-dependencies-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,2618 +0,0 @@ - - 4.0.0 - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - pom - Spring Boot Dependencies - Spring Boot Dependencies - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - https://github.com/spring-projects/spring-boot - - - - pwebb - Phillip Webb - pwebb at pivotal.io - Pivotal Software, Inc. - http://www.spring.io - - Project lead - - - - dsyer - Dave Syer - dsyer at pivotal.io - Pivotal Software, Inc. - http://www.spring.io - - Project lead - - - - - 5.13.4 - 2.7.7 - 1.9.42 - 1.3.0 - 1.8.9 - 2.5.0 - 3.9.3 - 2.1.4 - 2.3.3 - 2.1.9 - 1.3.1 - 1.9.2 - 3.2.2 - 1.10 - 1.4 - 2.1.1 - 2.1 - 1.6 - 2.4.2 - 2.2.8 - 2.0.0 - 1.3.2 - 10.12.1.1 - 1.6.1 - 3.1.2 - 2.10.2.2.21 - 3.1.2 - 1.50.5 - 3.2.1 - 2.3.25-incubating - 2.4.0 - 8.2.0 - 3.0.0 - 1.12 - 2.4.7 - 2.7 - 1.4.192 - 1.3 - 3.6.5 - 5.0.11.Final - 5.2.4.Final - 2.4.7 - 2.3.13 - 2.4.7.Final - 2.3.3 - 2.21 - 4.1.2 - 4.5.2 - 4.4.5 - 8.2.4.Final - 2.8.3 - 2.7.8 - 3.20.0-GA - 1.0.0 - 1.5.6 - 1.2 - 1.1.6 - 2.2.11 - 3.3.0.Final - 7.3.4.Final - 2.0.6 - 2.8.1 - 2.23.2 - 2.0.3 - 9.3.11.v20160721 - 2.2.0.v201112011158 - 8.0.33 - 1.12 - 4.2.2 - 2.9.4 - 1.3.4 - 3.8.4 - 20140107 - 1.3.0 - 2.2.0 - 1.2 - 1.3.1 - 4.12 - 3.5.1 - 2.6.2 - 1.1.7 - 1.16.10 - 1.4.6 - 1.10.19 - 3.2.2 - 5.1.39 - 5.3.4.Final - 1.9.22 - 2.0.5 - 9.4.1211.jre7 - 4.1.4 - 2.0.8.RELEASE - 2.0.7.RELEASE - 2.53.1 - 2.2.2 - 3.1.0 - 1.1.1 - 1.7.21 - 1.17 - 5.5.3 - 1.0-groovy-2.4 - 4.3.3.RELEASE - 1.6.2.RELEASE - 1.2.3.RELEASE - 3.0.7.RELEASE - Hopper-SR3 - 0.20.0.RELEASE - 4.3.2.RELEASE - 1.1.3.RELEASE - 1.2.6.RELEASE - 1.1.5.RELEASE - 1.2.0.RELEASE - 1.1.2.RELEASE - 1.1.4.RELEASE - 4.1.3.RELEASE - 1.0.5.RELEASE - 2.0.11.RELEASE - 1.2.2.RELEASE - 1.1.4.RELEASE - 2.0.3.RELEASE - 1.0.2.RELEASE - 1.1.2.RELEASE - 2.3.0.RELEASE - 3.8.11.2 - 3.1.0 - ${javax-mail.version} - 2.1.5.RELEASE - 2.1.2.RELEASE - 2.1.2.RELEASE - 1.4.0 - 1.3 - 2.1.0.RELEASE - 8.5.5 - 1.3.25.Final - 1.7 - 2.0 - 9f96c74 - 0.32 - 1.6.3 - 1.4.01 - - - 3.2.1 - - - - - - org.springframework.boot - spring-boot - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot - test-jar - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-test - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-test-autoconfigure - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-test - test-jar - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-actuator - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-actuator-docs - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-autoconfigure - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-configuration-metadata - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-configuration-processor - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-devtools - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-loader - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-loader-tools - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter - 1.4.1.BUILD-SNAPSHOT - - - commons-logging - commons-logging - - - - - org.springframework.boot - spring-boot-starter-activemq - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-actuator - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-amqp - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-aop - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-artemis - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-batch - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-cache - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-cloud-connectors - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-cassandra - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-couchbase - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-gemfire - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-jpa - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-mongodb - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-redis - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-redis - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-neo4j - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-rest - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-data-solr - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-freemarker - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-groovy-templates - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-hateoas - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-hornetq - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-integration - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jdbc - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jersey - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jetty - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jooq - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jta-atomikos - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jta-bitronix - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-undertow - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-log4j2 - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-logging - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-mail - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-mobile - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-mustache - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-jta-narayana - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-remote-shell - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-security - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-social-facebook - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-social-linkedin - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-social-twitter - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-test - 1.4.1.BUILD-SNAPSHOT - - - commons-logging - commons-logging - - - - - org.springframework.boot - spring-boot-starter-thymeleaf - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-tomcat - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-validation - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-velocity - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-web - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-websocket - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-web-services - 1.4.1.BUILD-SNAPSHOT - - - org.springframework.boot - spring-boot-starter-ws - 1.4.1.BUILD-SNAPSHOT - - - - - 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-dse - ${cassandra-driver.version} - - - org.slf4j - slf4j-log4j12 - - - log4j - log4j - - - com.google.guava - guava - - - - - com.datastax.cassandra - cassandra-driver-mapping - ${cassandra-driver.version} - - - com.fasterxml - classmate - ${classmate.version} - - - com.fasterxml.jackson.core - jackson-annotations - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-core - ${jackson.version} - - - com.fasterxml.jackson.core - jackson-databind - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - ${jackson.version} - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - ${jackson.version} - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - ${jackson.version} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - ${jackson.version} - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - ${jackson.version} - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - ${jackson.version} - - - com.fasterxml.jackson.module - jackson-module-kotlin - ${jackson.version} - - - com.fasterxml.jackson.module - jackson-module-parameter-names - ${jackson.version} - - - com.gemstone.gemfire - gemfire - ${gemfire.version} - - - com.github.ben-manes.caffeine - caffeine - ${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.version} - - - com.google.code.gson - gson - ${gson.version} - - - com.googlecode.json-simple - json-simple - ${simple-json.version} - - - com.h2database - h2 - ${h2.version} - - - com.hazelcast - hazelcast - ${hazelcast.version} - - - com.hazelcast - hazelcast-hibernate4 - ${hazelcast.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.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} - - - org.mongodb - mongo-java-driver - - - - - com.samskivert - jmustache - ${jmustache.version} - - - com.sendgrid - sendgrid-java - ${sendgrid.version} - - - com.sun.mail - javax.mail - ${sun-mail.version} - - - com.timgroup - java-statsd-client - ${statsd-client.version} - - - com.zaxxer - HikariCP - ${hikaricp.version} - - - com.zaxxer - HikariCP-java6 - ${hikaricp-java6.version} - - - commons-beanutils - commons-beanutils - ${commons-beanutils.version} - - - commons-logging - commons-logging - - - - - commons-collections - commons-collections - ${commons-collections.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - commons-dbcp - commons-dbcp - ${commons-dbcp.version} - - - commons-digester - commons-digester - ${commons-digester.version} - - - commons-logging - commons-logging - - - - - 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-core - ${dropwizard-metrics.version} - - - io.dropwizard.metrics - metrics-ganglia - ${dropwizard-metrics.version} - - - io.dropwizard.metrics - metrics-graphite - ${dropwizard-metrics.version} - - - io.dropwizard.metrics - metrics-servlets - ${dropwizard-metrics.version} - - - io.projectreactor - reactor-bus - ${reactor.version} - - - io.projectreactor - reactor-core - ${reactor.version} - - - io.projectreactor - reactor-groovy - ${reactor.version} - - - io.projectreactor - reactor-groovy-extensions - ${reactor.version} - - - io.projectreactor - reactor-logback - ${reactor.version} - - - io.projectreactor - reactor-net - ${reactor.version} - - - io.projectreactor - reactor-stream - ${reactor.version} - - - io.projectreactor.spring - reactor-spring-context - ${reactor-spring.version} - - - io.projectreactor.spring - reactor-spring-core - ${reactor-spring.version} - - - io.projectreactor.spring - reactor-spring-messaging - ${reactor-spring.version} - - - io.projectreactor.spring - reactor-spring-webmvc - ${reactor-spring.version} - - - io.searchbox - jest - ${jest.version} - - - io.undertow - undertow-core - ${undertow.version} - - - io.undertow - undertow-servlet - ${undertow.version} - - - io.undertow - undertow-websockets-jsr - ${undertow.version} - - - javax.cache - cache-api - ${javax-cache.version} - - - javax.jms - jms-api - 1.1-rev-1 - - - javax.mail - javax.mail-api - ${javax-mail.version} - - - javax.servlet - javax.servlet-api - ${servlet-api.version} - - - javax.servlet - jstl - ${jstl.version} - - - javax.transaction - javax.transaction-api - ${javax-transaction.version} - - - jaxen - jaxen - ${jaxen.version} - - - joda-time - joda-time - ${joda-time.version} - - - junit - junit - ${junit.version} - - - mysql - mysql-connector-java - ${mysql.version} - - - net.java.dev.jna - jna - ${jna.version} - - - net.sf.ehcache - ehcache - ${ehcache.version} - - - net.sourceforge.htmlunit - htmlunit - ${htmlunit.version} - - - 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} - - - org.apache.activemq - artemis-core-client - ${artemis.version} - - - org.apache.activemq - artemis-jms-client - ${artemis.version} - - - org.apache.activemq - artemis-jms-server - ${artemis.version} - - - 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} - - - org.apache.activemq - artemis-service-extensions - ${artemis.version} - - - org.apache.commons - commons-dbcp2 - ${commons-dbcp2.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 - httpclient - ${httpclient.version} - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpcore - ${httpcore.version} - - - org.apache.httpcomponents - httpmime - ${httpclient.version} - - - org.apache.logging.log4j - log4j-api - ${log4j2.version} - - - org.apache.logging.log4j - log4j-core - ${log4j2.version} - - - org.apache.logging.log4j - log4j-slf4j-impl - ${log4j2.version} - - - org.apache.solr - solr-solrj - ${solr.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.apache.tomcat - tomcat-jdbc - ${tomcat.version} - - - org.apache.tomcat - tomcat-jsp-api - ${tomcat.version} - - - org.apache.velocity - velocity - ${velocity.version} - - - org.apache.velocity - velocity-tools - ${velocity-tools.version} - - - commons-logging - commons-logging - - - - - 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-all - ${groovy.version} - - - org.codehaus.groovy - groovy-ant - ${groovy.version} - - - org.codehaus.groovy - groovy-bsf - ${groovy.version} - - - org.codehaus.groovy - groovy-console - ${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-jmx - ${groovy.version} - - - org.codehaus.groovy - groovy-json - ${groovy.version} - - - org.codehaus.groovy - groovy-jsr223 - ${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-testng - ${groovy.version} - - - org.codehaus.groovy - groovy-xml - ${groovy.version} - - - org.codehaus.janino - janino - ${janino.version} - - - org.crashub - crash.cli - ${crashub.version} - - - org.crashub - crash.connectors.ssh - ${crashub.version} - - - commons-logging - commons-logging - - - - - org.crashub - crash.connectors.telnet - ${crashub.version} - - - org.crashub - crash.embed.spring - ${crashub.version} - - - org.crashub - crash.plugins.cron - ${crashub.version} - - - org.crashub - crash.plugins.mail - ${crashub.version} - - - org.crashub - crash.shell - ${crashub.version} - - - org.eclipse.jetty - jetty-annotations - ${jetty.version} - - - org.eclipse.jetty - jetty-client - ${jetty.version} - - - org.eclipse.jetty - jetty-continuation - ${jetty.version} - - - org.eclipse.jetty - jetty-deploy - ${jetty.version} - - - org.eclipse.jetty - jetty-http - ${jetty.version} - - - org.eclipse.jetty - jetty-io - ${jetty.version} - - - org.eclipse.jetty - apache-jstl - ${jetty.version} - - - org.eclipse.jetty - apache-jsp - ${jetty.version} - - - org.eclipse.jetty - jetty-jmx - ${jetty.version} - - - org.eclipse.jetty - jetty-plus - ${jetty.version} - - - org.eclipse.jetty - jetty-security - ${jetty.version} - - - org.eclipse.jetty - jetty-server - ${jetty.version} - - - org.eclipse.jetty - jetty-servlet - ${jetty.version} - - - org.eclipse.jetty - jetty-servlets - ${jetty.version} - - - org.eclipse.jetty - jetty-util - ${jetty.version} - - - org.eclipse.jetty - jetty-webapp - ${jetty.version} - - - org.eclipse.jetty - jetty-xml - ${jetty.version} - - - org.eclipse.jetty.orbit - javax.servlet.jsp - ${jetty-jsp.version} - - - org.eclipse.jetty.websocket - javax-websocket-server-impl - ${jetty.version} - - - org.eclipse.jetty.websocket - websocket-client - ${jetty.version} - - - org.eclipse.jetty.websocket - websocket-server - ${jetty.version} - - - org.ehcache - ehcache - ${ehcache3.version} - - - org.ehcache - ehcache-clustered - ${ehcache3.version} - - - org.ehcache - ehcache-transactions - ${ehcache3.version} - - - org.elasticsearch - elasticsearch - ${elasticsearch.version} - - - org.firebirdsql.jdbc - jaybird-jdk16 - ${jaybird.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.jersey.containers - jersey-container-servlet - ${jersey.version} - - - org.glassfish.jersey.containers - jersey-container-servlet-core - ${jersey.version} - - - org.glassfish.jersey.core - jersey-server - ${jersey.version} - - - org.glassfish.jersey.ext - jersey-bean-validation - ${jersey.version} - - - org.glassfish.jersey.ext - jersey-spring3 - ${jersey.version} - - - org.glassfish.hk2.external - bean-validator - - - - - org.glassfish.jersey.media - jersey-media-json-jackson - ${jersey.version} - - - org.hamcrest - hamcrest-core - ${hamcrest.version} - - - org.hamcrest - hamcrest-library - ${hamcrest.version} - - - org.hibernate - hibernate-core - ${hibernate.version} - - - org.hibernate - hibernate-ehcache - ${hibernate.version} - - - org.hibernate - hibernate-entitymanager - ${hibernate.version} - - - org.hibernate - hibernate-envers - ${hibernate.version} - - - org.hibernate - hibernate-java8 - ${hibernate.version} - - - org.hibernate - hibernate-jpamodelgen - ${hibernate.version} - - - org.hibernate - hibernate-validator - ${hibernate-validator.version} - - - org.hibernate - hibernate-validator-annotation-processor - ${hibernate-validator.version} - - - org.hornetq - hornetq-jms-client - ${hornetq.version} - - - org.hornetq - hornetq-jms-server - ${hornetq.version} - - - org.jboss.spec.javax.transaction - jboss-transaction-api_1.1_spec - - - - - org.hsqldb - hsqldb - ${hsqldb.version} - - - org.infinispan - infinispan-jcache - ${infinispan.version} - - - org.infinispan - infinispan-spring4-common - ${infinispan.version} - - - commons-logging - commons-logging - - - org.apache.logging.log4j - log4j-core - - - org.apache.logging.log4j - log4j-slf4j-impl - - - org.apache.logging.log4j - log4j-jcl - - - - - org.infinispan - infinispan-spring4-embedded - ${infinispan.version} - - - commons-logging - commons-logging - - - org.apache.logging.log4j - log4j-core - - - org.apache.logging.log4j - log4j-slf4j-impl - - - org.apache.logging.log4j - log4j-jcl - - - - - org.javassist - javassist - ${javassist.version} - - - org.jboss - jboss-transaction-spi - ${jboss-transaction-spi.version} - - - org.jboss.logging - jboss-logging - ${jboss-logging.version} - - - org.jboss.narayana.jta - jdbc - ${narayana.version} - - - org.jboss.narayana.jta - jms - ${narayana.version} - - - org.jboss.narayana.jta - jta - ${narayana.version} - - - org.jboss.narayana.jts - narayana-jts-integration - ${narayana.version} - - - org.jdom - jdom2 - ${jdom2.version} - - - org.jolokia - jolokia-core - ${jolokia.version} - - - org.json - json - ${json.version} - - - org.jooq - jooq - ${jooq.version} - - - org.jooq - jooq-meta - ${jooq.version} - - - org.jooq - jooq-codegen - ${jooq.version} - - - org.liquibase - liquibase-core - ${liquibase.version} - - - org.mariadb.jdbc - mariadb-java-client - ${mariadb.version} - - - org.mockito - mockito-core - ${mockito.version} - - - org.mongodb - mongodb-driver - ${mongodb.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-compiler - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-core - ${neo4j-ogm.version} - - - org.neo4j - neo4j-ogm-http-driver - ${neo4j-ogm.version} - - - org.postgresql - postgresql - ${postgresql.version} - - - org.projectlombok - lombok - ${lombok.version} - - - org.seleniumhq.selenium - htmlunit-driver - ${htmlunit.version} - - - org.seleniumhq.selenium - selenium-api - ${selenium.version} - - - org.seleniumhq.selenium - selenium-chrome-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-remote-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-safari-driver - ${selenium.version} - - - org.seleniumhq.selenium - selenium-support - ${selenium.version} - - - 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-jdk14 - ${slf4j.version} - - - org.slf4j - slf4j-log4j12 - ${slf4j.version} - - - org.slf4j - slf4j-simple - ${slf4j.version} - - - org.spockframework - spock-core - ${spock.version} - - - org.codehaus.groovy - groovy-all - - - - - org.spockframework - spock-spring - ${spock.version} - - - org.springframework - spring-core - ${spring.version} - - - org.springframework - spring-framework-bom - ${spring.version} - import - pom - - - org.springframework - springloaded - ${spring-loaded.version} - - - org.springframework.amqp - spring-amqp - ${spring-amqp.version} - - - org.springframework.amqp - spring-rabbit - ${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-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} - import - pom - - - org.springframework.hateoas - spring-hateoas - ${spring-hateoas.version} - - - org.springframework.integration - spring-integration-bom - ${spring-integration.version} - import - pom - - - org.springframework.integration - spring-integration-http - ${spring-integration.version} - - - commons-logging - commons-logging - - - commons-logging - commons-logging-api - - - - - org.springframework.integration - spring-integration-java-dsl - ${spring-integration-java-dsl.version} - - - org.springframework.mobile - spring-mobile-device - ${spring-mobile.version} - - - org.springframework.plugin - spring-plugin-core - ${spring-plugin.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.retry - spring-retry - ${spring-retry.version} - - - org.springframework.security - spring-security-bom - ${spring-security.version} - import - pom - - - org.springframework.security - spring-security-jwt - ${spring-security-jwt.version} - - - org.springframework.security.oauth - spring-security-oauth - ${spring-security-oauth.version} - - - org.springframework.security.oauth - spring-security-oauth2 - ${spring-security-oauth.version} - - - org.springframework.session - spring-session - ${spring-session.version} - - - org.springframework.session - spring-session-data-gemfire - ${spring-session.version} - - - org.springframework.session - spring-session-data-mongo - ${spring-session.version} - - - org.springframework.session - spring-session-jdbc - ${spring-session.version} - - - org.springframework.session - spring-session-data-redis - ${spring-session.version} - - - org.springframework.social - spring-social-config - ${spring-social.version} - - - org.springframework.social - spring-social-core - ${spring-social.version} - - - org.springframework.social - spring-social-security - ${spring-social.version} - - - org.springframework.social - spring-social-web - ${spring-social.version} - - - org.springframework.social - spring-social-facebook - ${spring-social-facebook.version} - - - org.springframework.social - spring-social-facebook-web - ${spring-social-facebook.version} - - - org.springframework.social - spring-social-linkedin - ${spring-social-linkedin.version} - - - org.springframework.social - spring-social-twitter - ${spring-social-twitter.version} - - - 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.xerial - sqlite-jdbc - ${sqlite-jdbc.version} - - - org.thymeleaf - thymeleaf - ${thymeleaf.version} - - - org.thymeleaf - thymeleaf-spring4 - ${thymeleaf.version} - - - org.thymeleaf.extras - thymeleaf-extras-conditionalcomments - ${thymeleaf-extras-conditionalcomments.version} - - - org.thymeleaf.extras - thymeleaf-extras-java8time - ${thymeleaf-extras-java8time.version} - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity4 - ${thymeleaf-extras-springsecurity4.version} - - - org.webjars - hal-browser - ${webjars-hal-browser.version} - - - org.webjars - webjars-locator - ${webjars-locator.version} - - - org.yaml - snakeyaml - ${snakeyaml.version} - - - redis.clients - jedis - ${jedis.version} - - - wsdl4j - wsdl4j - ${wsdl4j.version} - - - xml-apis - xml-apis - ${xml-apis.version} - - - - - - - - org.jooq - jooq-codegen-maven - ${jooq.version} - - - org.springframework.boot - spring-boot-maven-plugin - 1.4.1.BUILD-SNAPSHOT - - - org.apache.maven.plugins - maven-antrun-plugin - 1.8 - - - org.apache.maven.plugins - maven-assembly-plugin - 2.6 - - false - - - - org.apache.maven.plugins - maven-clean-plugin - 2.6.1 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.1 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.apache.maven.plugins - maven-dependency-plugin - 2.10 - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.10 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-help-plugin - 2.2 - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - org.apache.maven.plugins - maven-resources-plugin - 2.7 - - - org.apache.maven.plugins - maven-shade-plugin - 2.4.3 - - - org.apache.maven.plugins - maven-site-plugin - 3.5.1 - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - org.apache.maven.plugins - maven-war-plugin - 2.6 - - - org.codehaus.mojo - build-helper-maven-plugin - 1.10 - - - org.codehaus.mojo - exec-maven-plugin - 1.5.0 - - - org.codehaus.mojo - versions-maven-plugin - 2.2 - - - pl.project13.maven - git-commit-id-plugin - 2.2.1 - - - - - - maven-help-plugin - false - - - generate-effective-dependencies-pom - generate-resources - - effective-pom - - - ${project.build.directory}/effective-pom/spring-boot-dependencies.xml - - - - - - org.codehaus.mojo - xml-maven-plugin - 1.0 - false - - - - transform - - - - - - - ${project.build.directory}/effective-pom - src/main/xslt/single-project.xsl - ${project.build.directory}/effective-pom - - - - - - org.codehaus.mojo - build-helper-maven-plugin - false - - - attach-artifacts - package - - attach-artifact - - - - - ${project.build.directory}/effective-pom/spring-boot-dependencies.xml - effective-pom - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index d0e050a9ba43aa25e3737e73f7ea94de9fa3f566..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:34 CST 2019 -spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom>spring-snapshots= -spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index fe8261b7b40c4d867197153a50c901ae51a69f86..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - org.springframework.boot - spring-boot-loader-tools - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 116 - - 20171005125836 - - - pom.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - javadoc - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - javadoc - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 2d2c44cd62bb0051289177fc85c152cbe9187371..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -f077a25c86237d003c2e7a15afea40f3350eacbf \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index bd6bdc1b960f9ddd7e12b591012b1c58d64b29aa..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:14 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1553667314985 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1553667313565 -maven-metadata-spring-snapshots.xml.lastUpdated=1553667314987 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar deleted file mode 100644 index 518dfbd36aa4501d07acd977364c1158d2424ecd..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar.sha1 deleted file mode 100644 index e785d58569b95cd6c20e8eb141ca992536195776..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ddd4456f40b00848b4c49dc073c4d38592f8b052 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom deleted file mode 100644 index 7e5d71745e424e3da129ad4933e8e3691049bce3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-tools - 1.4.1.BUILD-SNAPSHOT - - spring-boot-loader-tools - Spring Boot Loader Tools - Spring Boot Loader Tools - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - - org.springframework - spring-core - - - - org.springframework.boot - spring-boot-loader - provided - - - ch.qos.logback - logback-classic - provided - - - - org.zeroturnaround - zt-zip - test - - - org.springframework - springloaded - test - - - - - - pl.project13.maven - git-commit-id-plugin - - - include-git-properties - prepare-package - - revision - - - ${main.basedir}/.git - true - - true - - - - - - false - - - - org.apache.maven.plugins - maven-dependency-plugin - - - include-layout-jar - generate-resources - - copy - - - - - org.springframework.boot - spring-boot-loader - ${project.version} - spring-boot-loader.jar - - - ${basedir}/target/generated-resources/loader/META-INF/loader - false - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-resources - generate-resources - - add-resource - - - - - ${basedir}/target/generated-resources/loader - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${git.commit.id} - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.springframework.boot.loader.tools.UsesUnsafeJava - org.springframework.lang.UsesJava7 - org.springframework.lang.UsesJava8 - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated deleted file mode 100644 index de13de16ca6ced0573bd65f6f6f84aaed7f38dc4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:28:34 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553668111178 -http\://repo.spring.io/snapshot/.lastUpdated=1553668114468 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom.sha1 deleted file mode 100644 index 168ea86c858f5192323d8760c0075c62f94396b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-20160920.220833-116.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c75566b6a1c88933cea9d1b39abba5b3323100cf \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index 518dfbd36aa4501d07acd977364c1158d2424ecd..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 7e5d71745e424e3da129ad4933e8e3691049bce3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-loader-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-loader-tools-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,144 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-tools - 1.4.1.BUILD-SNAPSHOT - - spring-boot-loader-tools - Spring Boot Loader Tools - Spring Boot Loader Tools - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - - org.springframework - spring-core - - - - org.springframework.boot - spring-boot-loader - provided - - - ch.qos.logback - logback-classic - provided - - - - org.zeroturnaround - zt-zip - test - - - org.springframework - springloaded - test - - - - - - pl.project13.maven - git-commit-id-plugin - - - include-git-properties - prepare-package - - revision - - - ${main.basedir}/.git - true - - true - - - - - - false - - - - org.apache.maven.plugins - maven-dependency-plugin - - - include-layout-jar - generate-resources - - copy - - - - - org.springframework.boot - spring-boot-loader - ${project.version} - spring-boot-loader.jar - - - ${basedir}/target/generated-resources/loader/META-INF/loader - false - true - - - - - - org.codehaus.mojo - build-helper-maven-plugin - - - add-resources - generate-resources - - add-resource - - - - - ${basedir}/target/generated-resources/loader - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${git.commit.id} - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - - org.springframework.boot.loader.tools.UsesUnsafeJava - org.springframework.lang.UsesJava7 - org.springframework.lang.UsesJava8 - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 286ea2d5536ccc4e701cb919eee53f5b32bafe20..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:19 CST 2019 -spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom>spring-snapshots= -spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 8672f4dd12003785669835c2a150d50df11a6fcb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - org.springframework.boot - spring-boot-maven-plugin - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 115 - - 20171005125836 - - - pom.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - javadoc - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - javadoc - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index f56985daf03861fc2ffc58d2329ab7f5dff3995e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -3a0efc7e55c6e25ce937b23df31fdfbcd2869e59 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 6127be108a6de104c5095b9130248e5b1fce804e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:26 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345146207 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345146202 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345146550 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar deleted file mode 100644 index ae4f23e271f25ce296a518af14c3e389e160f62d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar.sha1 deleted file mode 100644 index ac1e590bdd06a0eabda67c5d4f2ed5fe23c62535..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -32a78245b7f37d46759d8fffe977ef374d976175 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom deleted file mode 100644 index 0551288b54624fdcc93fe8a8d05bedeb9047009b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom +++ /dev/null @@ -1,216 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-tools - 1.4.1.BUILD-SNAPSHOT - - spring-boot-maven-plugin - maven-plugin - Spring Boot Maven Plugin - Spring Boot Maven Plugin - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - integration - - true - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${project.build.directory}/it - src/it/settings.xml - ${project.build.directory}/local-repo - verify - true - ${skipTests} - true - - - - integration-test - - install - run - - - - - - - - - full - - - - org.apache.maven.plugins - maven-site-plugin - - - generate-site - - jar - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${project.build.directory}/it - src/it/settings.xml - ${project.build.directory}/local-repo - verify - true - ${skipTests} - true - - - - integration-test - - install - run - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - - index - cim - issue-tracking - license - scm - - - - - - - - - - - - - org.springframework.boot - spring-boot-loader-tools - - - org.apache.maven - maven-archiver - - - org.apache.maven - maven-artifact - - - org.apache.maven - maven-core - - - org.apache.maven - maven-model - - - org.apache.maven - maven-plugin-api - - - org.apache.maven - maven-settings - - - org.apache.maven.shared - maven-common-artifact-filters - - - org.codehaus.plexus - plexus-archiver - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-utils - - - - org.apache.maven.plugins - maven-shade-plugin - true - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - org.apache.maven.plugins - maven-plugin-plugin - - spring-boot - true - - - - generate-descriptor - - descriptor - - - - generated-helpmojo - - helpmojo - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated deleted file mode 100644 index ab3b14c805cf9c3f7a5e7edac7ec4f7266627dfe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:14 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667073126 -http\://repo.spring.io/snapshot/.lastUpdated=1553667074153 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom.sha1 deleted file mode 100644 index 81de5b63eda4b1d6992d9107def926c8e911194e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-20160920.220833-115.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -146757415b2bf72c9886699adb664d33e5e3f149 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index ae4f23e271f25ce296a518af14c3e389e160f62d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 0551288b54624fdcc93fe8a8d05bedeb9047009b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-maven-plugin/1.4.1.BUILD-SNAPSHOT/spring-boot-maven-plugin-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,216 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-tools - 1.4.1.BUILD-SNAPSHOT - - spring-boot-maven-plugin - maven-plugin - Spring Boot Maven Plugin - Spring Boot Maven Plugin - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - integration - - true - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${project.build.directory}/it - src/it/settings.xml - ${project.build.directory}/local-repo - verify - true - ${skipTests} - true - - - - integration-test - - install - run - - - - - - - - - full - - - - org.apache.maven.plugins - maven-site-plugin - - - generate-site - - jar - - - - - - org.apache.maven.plugins - maven-invoker-plugin - - ${project.build.directory}/it - src/it/settings.xml - ${project.build.directory}/local-repo - verify - true - ${skipTests} - true - - - - integration-test - - install - run - - - - - - - - - - org.apache.maven.plugins - maven-plugin-plugin - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.7 - - - - index - cim - issue-tracking - license - scm - - - - - - - - - - - - - org.springframework.boot - spring-boot-loader-tools - - - org.apache.maven - maven-archiver - - - org.apache.maven - maven-artifact - - - org.apache.maven - maven-core - - - org.apache.maven - maven-model - - - org.apache.maven - maven-plugin-api - - - org.apache.maven - maven-settings - - - org.apache.maven.shared - maven-common-artifact-filters - - - org.codehaus.plexus - plexus-archiver - - - org.codehaus.plexus - plexus-container-default - - - org.codehaus.plexus - plexus-component-api - - - - - org.codehaus.plexus - plexus-utils - - - - org.apache.maven.plugins - maven-shade-plugin - true - - - - org.apache.maven.plugin-tools - maven-plugin-annotations - provided - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - org.apache.maven.plugins - maven-plugin-plugin - - spring-boot - true - - - - generate-descriptor - - descriptor - - - - generated-helpmojo - - helpmojo - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 52e47a6a9a356ae5d279fa5b817334d5a8c9ce01..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:18 CST 2019 -spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index e7db1eb97b791315a925287740c28f4338bac9b6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 116 - - 20171005125836 - - - pom.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index bd27a3c42aead1a9e78b2f74d14626f603a81502..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -2b3181c4e74d10f0e2a921dc1cc4abc55c7fc1c8 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index d11e0630153da8639aa4b4b4aec53442adf1dafb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:29 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345148595 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345147878 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345149316 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom deleted file mode 100644 index 1abebc949401f49a3668e9698c1a82680fdc02b8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom +++ /dev/null @@ -1,759 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-dependencies - - spring-boot-parent - pom - Spring Boot Parent - Spring Boot Parent - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - .. - false - 1.6 - 1.0.2.v20150114 - UTF-8 - UTF-8 - 3.1.1 - - - http://github.com/spring-projects/spring-boot - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - - - Github - https://github.com/spring-projects/spring-boot/issues - - - Bamboo - https://build.spring.io/browse/BOOT-PUB - - - - - - log4j - log4j - 1.2.17 - - - com.google.guava - guava - 18.0 - - - com.squareup.okhttp - okhttp - 2.7.5 - - - com.squareup.okhttp3 - okhttp - 3.4.1 - - - io.netty - netty-all - 4.0.38.Final - - - io.spring.gradle - dependency-management-plugin - 0.6.1.RELEASE - - - jline - jline - 2.11 - - - net.sf.jopt-simple - jopt-simple - 4.6 - - - org.apache.ivy - ivy - 2.3.0 - - - org.apache.maven - maven-aether-provider - 3.2.1 - - - org.apache.maven - maven-archiver - 2.6 - - - org.apache.maven - maven-artifact - ${maven.version} - - - org.apache.maven - maven-core - ${maven.version} - - - org.apache.maven - maven-model - ${maven.version} - - - org.apache.maven - maven-plugin-api - ${maven.version} - - - org.apache.maven - maven-settings - ${maven.version} - - - org.apache.maven - maven-settings-builder - ${maven.version} - - - org.apache.maven.shared - maven-common-artifact-filters - 1.4 - - - org.apache.maven.plugins - maven-shade-plugin - 2.2 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.2 - - - org.codehaus.plexus - plexus-archiver - 2.8.1 - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-33 - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.eclipse.aether - aether-api - ${aether.version} - - - org.eclipse.aether - aether-connector-basic - ${aether.version} - - - org.eclipse.aether - aether-impl - ${aether.version} - - - org.eclipse.aether - aether-spi - ${aether.version} - - - org.eclipse.aether - aether-transport-file - ${aether.version} - - - org.eclipse.aether - aether-transport-http - ${aether.version} - - - org.eclipse.aether - aether-util - ${aether.version} - - - org.gradle - gradle-core - ${gradle.version} - - - org.gradle - gradle-base-services - ${gradle.version} - - - org.gradle - gradle-base-services-groovy - ${gradle.version} - - - org.gradle - gradle-plugins - ${gradle.version} - - - org.zeroturnaround - zt-zip - 1.7 - - - - - - - junit - junit - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.hamcrest - hamcrest-library - test - - - org.springframework - spring-test - test - - - commons-logging - commons-logging - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - - com.puppycrawl.tools - checkstyle - 7.1.1 - - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.10 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18 - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.15 - - - org.codehaus.cargo - cargo-maven2-plugin - 1.4.15 - - - org.codehaus.gmavenplus - gmavenplus-plugin - 1.2 - - - org.codehaus.mojo - sonar-maven-plugin - 2.4 - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - - - maven-enforcer-plugin - - - [1.3.1,) - - - enforce - - - - - - - - - - org.apache.maven.plugins - - - maven-dependency-plugin - - - [2.8,) - - - copy - - - - - - - - - - org.apache.maven.plugins - - - maven-plugin-plugin - - - [3.2,) - - - descriptor - helpmojo - - - - - - - - - - org.codehaus.mojo - - - build-helper-maven-plugin - - - [1.9.1,) - - - - reserve-network-port - - - - - - - - - - - org.apache.maven.plugins - - - maven-checkstyle-plugin - - - [2.16,) - - - - check - - - - - - - - - - - org.apache.maven.plugins - - - maven-invoker-plugin - - - [1.0.0,) - - - - install - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-validation - validate - - ${disable.checks} - src/checkstyle/checkstyle.xml - src/checkstyle/checkstyle-suppressions.xml - src/checkstyle/checkstyle-header.txt - checkstyle.build.directory=${project.build.directory} - UTF-8 - true - true - true - - - check - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${java.version} - ${java.version} - - - - org.apache.maven.plugins - maven-eclipse-plugin - - false - - - .settings/org.eclipse.jdt.ui.prefs - ${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs - - - .settings/org.eclipse.jdt.core.prefs - ${main.basedir}/eclipse/org.eclipse.jdt.core.prefs - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-rules - - enforce - - - - - [1.8,) - - - main.basedir - - - project.organization.name - - - project.name - - - project.description - - - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - - - **/Abstract*.java - - - file:/dev/./urandom - true - - -Xmx1024m - - - - org.apache.maven.plugins - maven-war-plugin - - false - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - ${disable.checks} - - org.codehaus.mojo.signature - java16 - 1.1 - - - org.springframework.lang.UsesJava8 - org.springframework.lang.UsesJava7 - org.springframework.boot.lang.UsesUnsafeJava - - - - - enforce-java-6 - test - - check - - - - - - - - - default - - true - - - - - - fast - - - fast - - - - true - - - - - - eclipse.profile - - - m2e.version - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.8 - 1.8 - - - - - - - - - prepare - - - - full - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.1 - - - attach-javadocs - - jar - - true - - - - - - - - - snapshot - - - milestone - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-milestone-rules - - enforce - - - - - (1.8,1.9) - - - - - true - - - - - - - - - release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-release-rules - - enforce - - - - - (1.8,1.9) - - - - - true - - - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom.sha1 deleted file mode 100644 index 65f9fa9329c4fbf859ee0003dd5d70d1d216a006..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-20160920.220833-116.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -30b202b502d7816228ff950c5345e03cfe5e7a2d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 1abebc949401f49a3668e9698c1a82680fdc02b8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-parent-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,759 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-dependencies - - spring-boot-parent - pom - Spring Boot Parent - Spring Boot Parent - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - .. - false - 1.6 - 1.0.2.v20150114 - UTF-8 - UTF-8 - 3.1.1 - - - http://github.com/spring-projects/spring-boot - scm:git:git://github.com/spring-projects/spring-boot.git - scm:git:ssh://git@github.com/spring-projects/spring-boot.git - - - Github - https://github.com/spring-projects/spring-boot/issues - - - Bamboo - https://build.spring.io/browse/BOOT-PUB - - - - - - log4j - log4j - 1.2.17 - - - com.google.guava - guava - 18.0 - - - com.squareup.okhttp - okhttp - 2.7.5 - - - com.squareup.okhttp3 - okhttp - 3.4.1 - - - io.netty - netty-all - 4.0.38.Final - - - io.spring.gradle - dependency-management-plugin - 0.6.1.RELEASE - - - jline - jline - 2.11 - - - net.sf.jopt-simple - jopt-simple - 4.6 - - - org.apache.ivy - ivy - 2.3.0 - - - org.apache.maven - maven-aether-provider - 3.2.1 - - - org.apache.maven - maven-archiver - 2.6 - - - org.apache.maven - maven-artifact - ${maven.version} - - - org.apache.maven - maven-core - ${maven.version} - - - org.apache.maven - maven-model - ${maven.version} - - - org.apache.maven - maven-plugin-api - ${maven.version} - - - org.apache.maven - maven-settings - ${maven.version} - - - org.apache.maven - maven-settings-builder - ${maven.version} - - - org.apache.maven.shared - maven-common-artifact-filters - 1.4 - - - org.apache.maven.plugins - maven-shade-plugin - 2.2 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.2 - - - org.codehaus.plexus - plexus-archiver - 2.8.1 - - - org.codehaus.plexus - plexus-component-api - 1.0-alpha-33 - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - org.eclipse.aether - aether-api - ${aether.version} - - - org.eclipse.aether - aether-connector-basic - ${aether.version} - - - org.eclipse.aether - aether-impl - ${aether.version} - - - org.eclipse.aether - aether-spi - ${aether.version} - - - org.eclipse.aether - aether-transport-file - ${aether.version} - - - org.eclipse.aether - aether-transport-http - ${aether.version} - - - org.eclipse.aether - aether-util - ${aether.version} - - - org.gradle - gradle-core - ${gradle.version} - - - org.gradle - gradle-base-services - ${gradle.version} - - - org.gradle - gradle-base-services-groovy - ${gradle.version} - - - org.gradle - gradle-plugins - ${gradle.version} - - - org.zeroturnaround - zt-zip - 1.7 - - - - - - - junit - junit - test - - - org.assertj - assertj-core - test - - - org.mockito - mockito-core - test - - - org.hamcrest - hamcrest-library - test - - - org.springframework - spring-test - test - - - commons-logging - commons-logging - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - - com.puppycrawl.tools - checkstyle - 7.1.1 - - - - - org.apache.maven.plugins - maven-invoker-plugin - 1.10 - - - org.apache.maven.plugins - maven-enforcer-plugin - 1.4 - - - org.apache.maven.plugins - maven-failsafe-plugin - 2.18 - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-plugin-plugin - 3.3 - - - org.apache.maven.plugins - maven-antrun-plugin - 1.7 - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - org.codehaus.mojo - animal-sniffer-maven-plugin - 1.15 - - - org.codehaus.cargo - cargo-maven2-plugin - 1.4.15 - - - org.codehaus.gmavenplus - gmavenplus-plugin - 1.2 - - - org.codehaus.mojo - sonar-maven-plugin - 2.4 - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.apache.maven.plugins - - - maven-enforcer-plugin - - - [1.3.1,) - - - enforce - - - - - - - - - - org.apache.maven.plugins - - - maven-dependency-plugin - - - [2.8,) - - - copy - - - - - - - - - - org.apache.maven.plugins - - - maven-plugin-plugin - - - [3.2,) - - - descriptor - helpmojo - - - - - - - - - - org.codehaus.mojo - - - build-helper-maven-plugin - - - [1.9.1,) - - - - reserve-network-port - - - - - - - - - - - org.apache.maven.plugins - - - maven-checkstyle-plugin - - - [2.16,) - - - - check - - - - - - - - - - - org.apache.maven.plugins - - - maven-invoker-plugin - - - [1.0.0,) - - - - install - - - - - - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-validation - validate - - ${disable.checks} - src/checkstyle/checkstyle.xml - src/checkstyle/checkstyle-suppressions.xml - src/checkstyle/checkstyle-header.txt - checkstyle.build.directory=${project.build.directory} - UTF-8 - true - true - true - - - check - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - ${java.version} - ${java.version} - - - - org.apache.maven.plugins - maven-eclipse-plugin - - false - - - .settings/org.eclipse.jdt.ui.prefs - ${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs - - - .settings/org.eclipse.jdt.core.prefs - ${main.basedir}/eclipse/org.eclipse.jdt.core.prefs - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-rules - - enforce - - - - - [1.8,) - - - main.basedir - - - project.organization.name - - - project.name - - - project.description - - - true - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - true - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - - - **/Abstract*.java - - - file:/dev/./urandom - true - - -Xmx1024m - - - - org.apache.maven.plugins - maven-war-plugin - - false - - - - org.apache.maven.plugins - maven-source-plugin - - - attach-sources - - jar-no-fork - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - ${disable.checks} - - org.codehaus.mojo.signature - java16 - 1.1 - - - org.springframework.lang.UsesJava8 - org.springframework.lang.UsesJava7 - org.springframework.boot.lang.UsesUnsafeJava - - - - - enforce-java-6 - test - - check - - - - - - - - - default - - true - - - - - - fast - - - fast - - - - true - - - - - - eclipse.profile - - - m2e.version - - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.8 - 1.8 - - - - - - - - - prepare - - - - full - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.1 - - - attach-javadocs - - jar - - true - - - - - - - - - snapshot - - - milestone - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-milestone-rules - - enforce - - - - - (1.8,1.9) - - - - - true - - - - - - - - - release - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-release-rules - - enforce - - - - - (1.8,1.9) - - - - - true - - - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 1347ac76eebbc661f1ef4267eec10a16deeffc98..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:43 CST 2019 -spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar>spring-snapshots= -spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 1b25137e5f096933d4589e62029602e4d98ce075..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - org.springframework.boot - spring-boot-starter-logging - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 115 - - 20171005125852 - - - pom.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index de145cbe7fe7e67ddefe9ad38e6b7003cc27042f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -881894cfa3b35c627365936f125ca434929a73fe \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index dc25aa44afda23408d0034ca19f2e9135a0a9a69..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:42 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345160387 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345162418 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345160667 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar deleted file mode 100644 index bb5deaea55fd310934cdd9183923b816e66f1fe3..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar.sha1 deleted file mode 100644 index ebf5dc804b7ee1c72d26b93b65bda88adab51639..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3d270df3aed1001ce9bfa67cb7611024b529ca1f \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom deleted file mode 100644 index bd11aba30528fc5ce13a6994d3303df25614eca7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom +++ /dev/null @@ -1,38 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter-logging - Spring Boot Logging Starter - Starter for logging using Logback. Default logging starter - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - ch.qos.logback - logback-classic - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - jul-to-slf4j - - - org.slf4j - log4j-over-slf4j - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated deleted file mode 100644 index b7717e9507a45e30345dc0ea61375826283d9bb1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:11 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667370500 -http\://repo.spring.io/snapshot/.lastUpdated=1553667371425 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom.sha1 deleted file mode 100644 index 656534549a37ceaa86b4e4780016dde3bc3e5441..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-20160920.220833-115.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -be33046d9e247ac9abc9ae059e00e69c2ae5f574 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index bb5deaea55fd310934cdd9183923b816e66f1fe3..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index bd11aba30528fc5ce13a6994d3303df25614eca7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-logging/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-logging-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,38 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter-logging - Spring Boot Logging Starter - Starter for logging using Logback. Default logging starter - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - ch.qos.logback - logback-classic - - - org.slf4j - jcl-over-slf4j - - - org.slf4j - jul-to-slf4j - - - org.slf4j - log4j-over-slf4j - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index d931fd8e42d11abb42c72ef5a89b5ad85fdeab7b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:10:52 CST 2019 -spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 794472a59978cfe4cfca61c898293308e54861f0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.springframework.boot - spring-boot-starter-parent - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 115 - - 20171005145848 - - - pom.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 1b6cae4a2a227e0eeef2f62093626195b1ece5df..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -7e9ecff676b0b2f6acf853e5d36741ec65f54df2 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 46c5c59bb83bf73884986de56d6b3b055e7e9153..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:23 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345143357 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345142459 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345142834 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom deleted file mode 100644 index a09b7148359725633f4971f4f480f36e51981b92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom +++ /dev/null @@ -1,219 +0,0 @@ - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - ../../spring-boot-dependencies - - spring-boot-starter-parent - pom - Spring Boot Starter Parent - Parent pom providing dependency and plugin management for applications - built with Maven - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - 1.6 - @ - UTF-8 - UTF-8 - ${java.version} - ${java.version} - - - - - org.springframework - spring-core - ${spring.version} - - - commons-logging - commons-logging - - - - - - - - - - ${basedir}/src/main/resources - true - - **/application*.yml - **/application*.properties - - - - ${basedir}/src/main/resources - - **/application*.yml - **/application*.properties - - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${start-class} - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - **/*Test.java - - - **/Abstract*.java - - - - - org.apache.maven.plugins - maven-war-plugin - - false - - - ${start-class} - true - - - - - - org.codehaus.mojo - exec-maven-plugin - - ${start-class} - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - ${resource.delimiter} - - false - - - - pl.project13.maven - git-commit-id-plugin - 2.1.11 - - - - revision - - - - - true - yyyy-MM-dd'T'HH:mm:ssZ - true - ${project.build.outputDirectory}/git.properties - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - repackage - - - - - ${start-class} - - - - - org.apache.maven.plugins - maven-shade-plugin - - - org.springframework.boot - spring-boot-maven-plugin - 1.4.1.BUILD-SNAPSHOT - - - - true - true - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - package - - shade - - - - - META-INF/spring.handlers - - - META-INF/spring.factories - - - META-INF/spring.schemas - - - - ${start-class} - - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom.sha1 deleted file mode 100644 index 922fc2a4d5c4a2a6445f32f6be83abe6b5a11f50..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-20160920.220833-115.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c96ed8864baa2f57b7f5a1dd21b1e4d6a7dd5df1 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index a09b7148359725633f4971f4f480f36e51981b92..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-parent/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-parent-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,219 +0,0 @@ - - 4.0.0 - - org.springframework.boot - spring-boot-dependencies - 1.4.1.BUILD-SNAPSHOT - ../../spring-boot-dependencies - - spring-boot-starter-parent - pom - Spring Boot Starter Parent - Parent pom providing dependency and plugin management for applications - built with Maven - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - 1.6 - @ - UTF-8 - UTF-8 - ${java.version} - ${java.version} - - - - - org.springframework - spring-core - ${spring.version} - - - commons-logging - commons-logging - - - - - - - - - - ${basedir}/src/main/resources - true - - **/application*.yml - **/application*.properties - - - - ${basedir}/src/main/resources - - **/application*.yml - **/application*.properties - - - - - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - - integration-test - verify - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - ${start-class} - true - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - **/*Test.java - - - **/Abstract*.java - - - - - org.apache.maven.plugins - maven-war-plugin - - false - - - ${start-class} - true - - - - - - org.codehaus.mojo - exec-maven-plugin - - ${start-class} - - - - org.apache.maven.plugins - maven-resources-plugin - 2.6 - - - ${resource.delimiter} - - false - - - - pl.project13.maven - git-commit-id-plugin - 2.1.11 - - - - revision - - - - - true - yyyy-MM-dd'T'HH:mm:ssZ - true - ${project.build.outputDirectory}/git.properties - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - repackage - - - - - ${start-class} - - - - - org.apache.maven.plugins - maven-shade-plugin - - - org.springframework.boot - spring-boot-maven-plugin - 1.4.1.BUILD-SNAPSHOT - - - - true - true - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - package - - shade - - - - - META-INF/spring.handlers - - - META-INF/spring.factories - - - META-INF/spring.schemas - - - - ${start-class} - - - - - - - - - - \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 23cbae9e2ce56b153c4b3bfc04b77113a860ed43..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:43 CST 2019 -spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar>spring-snapshots= -spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 7f6a93fb47b82122cfd800db58b47c73a78540a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - org.springframework.boot - spring-boot-starter-tomcat - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 114 - - 20171005125856 - - - pom.asc - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 00baf85b083e2a5a7eb4f32ac1a6a6e53316d645..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -f472fcd1e2ae33b53c39190051b29c2b9c42ca82 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 0694cfb4accd89980133d384acdc78ced9297136..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:43 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345162931 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345162932 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345163461 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar deleted file mode 100644 index 6059f6172b24e1144b292974517d09c031d2c68d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar.sha1 deleted file mode 100644 index 4db9f1b1fe4383f034d4011e153c61ebe83d8400..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5c5ae79fec0310a52671b98bd9aa30e0a17ff734 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom deleted file mode 100644 index daa8d87322cb68c3249f040d97ece0abd7bf086d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter-tomcat - Spring Boot Tomcat Starter - Starter for using Tomcat as the embedded servlet container. Default - servlet container starter used by spring-boot-starter-web - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - org.apache.tomcat.embed - tomcat-embed-core - - - org.apache.tomcat.embed - tomcat-embed-el - - - org.apache.tomcat.embed - tomcat-embed-websocket - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom.lastUpdated deleted file mode 100644 index 135d8870c537cd1cd6b0c92a6913d94af373a6a1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:22 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667382072 -http\://repo.spring.io/snapshot/.lastUpdated=1553667382999 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom.sha1 deleted file mode 100644 index 126eabf7c90e7ee586b33e63e32d3e55b9e6fcda..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-20160920.220833-114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -418e81658836b797e64ef09dced8a96088c62b4a \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index 6059f6172b24e1144b292974517d09c031d2c68d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index daa8d87322cb68c3249f040d97ece0abd7bf086d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-tomcat/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-tomcat-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,35 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter-tomcat - Spring Boot Tomcat Starter - Starter for using Tomcat as the embedded servlet container. Default - servlet container starter used by spring-boot-starter-web - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - org.apache.tomcat.embed - tomcat-embed-core - - - org.apache.tomcat.embed - tomcat-embed-el - - - org.apache.tomcat.embed - tomcat-embed-websocket - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index b6b6f74f14372e25a20cd60a7c4165634a038775..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:43 CST 2019 -spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar>spring-snapshots= -spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 24b07a74957d7dac8476eb7e84946a9b32829a2a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - org.springframework.boot - spring-boot-starter-web - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 116 - - 20171005125856 - - - pom.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 88004c60f32582f11a42a1e2e1bffd75261351a7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -f25777e60304ece3a2460fb8afec86ce18dd7d8a \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 17d6097e4bde9db4762f742aacadc8757ecb7265..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:33 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345152266 -maven-metadata-spring-milestones.xml.lastUpdated=1554345153041 -maven-metadata-spring-milestones.xml.error= -maven-metadata-spring-snapshots.xml.lastUpdated=1554345153003 diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar deleted file mode 100644 index 7ff3bdef06fc60b1caf3be22f42609115ef8ec4e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar.sha1 deleted file mode 100644 index 16c05c9d357ee74d69ee433afeb30c58ec6d1491..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -a356f09a25edb93c03f78be38ba3531324b4fdcc \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom deleted file mode 100644 index 99a6ef46a6bf59ab9bfa519f293d49162e2f9dc5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter-web - Spring Boot Web Starter - Starter for building web, including RESTful, applications using Spring - MVC. Uses Tomcat as the default embedded container - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - org.springframework.boot - spring-boot-starter - - - org.springframework.boot - spring-boot-starter-tomcat - - - org.hibernate - hibernate-validator - - - com.fasterxml.jackson.core - jackson-databind - - - org.springframework - spring-web - - - org.springframework - spring-webmvc - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated deleted file mode 100644 index 38f18a3505fb0edff3f04cd409ca222cfef0a401..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:46 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667345489 -http\://repo.spring.io/snapshot/.lastUpdated=1553667346515 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom.sha1 deleted file mode 100644 index 43d033c0de143dc9ffec66a9b759c676b6ae3381..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-20160920.220833-116.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -38cc6bb949949abe03632c3d7fb605538e14d51c \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index 7ff3bdef06fc60b1caf3be22f42609115ef8ec4e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 99a6ef46a6bf59ab9bfa519f293d49162e2f9dc5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter-web/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-web-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,47 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter-web - Spring Boot Web Starter - Starter for building web, including RESTful, applications using Spring - MVC. Uses Tomcat as the default embedded container - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - org.springframework.boot - spring-boot-starter - - - org.springframework.boot - spring-boot-starter-tomcat - - - org.hibernate - hibernate-validator - - - com.fasterxml.jackson.core - jackson-databind - - - org.springframework - spring-web - - - org.springframework - spring-webmvc - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 3e547a12707fef090ee40de996f1f68caba0ca88..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:43 CST 2019 -spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom>spring-snapshots= -spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 95522056bf739fdd9be2231fa55e043fce9ffa0b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - org.springframework.boot - spring-boot-starter - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 115 - - 20171005125844 - - - pom.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-115 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 1861e82ccca118f9f2860df302c3f850cbcdbbc5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -3c4503963b42957c47b39c1cb646098fe4f4f61b \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index f6907ae9b6ecbb1cb6b75aadb7d1d5bdf1c82d2c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:37 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345155894 -maven-metadata-spring-milestones.xml.lastUpdated=1554345155925 -maven-metadata-spring-milestones.xml.error= -maven-metadata-spring-snapshots.xml.lastUpdated=1554345157302 diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar deleted file mode 100644 index 79117f1e0982b3ab55e4fc3d623957b8610cdc97..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar.sha1 deleted file mode 100644 index 4704386756a41293fdbf121f509f11291e05ea68..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -757ce26b7d4fdf2da1dc18e105c80ff4f6b967f0 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom deleted file mode 100644 index fbfeb798d0c3c8098ae4c712e23815ef377eed10..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter - Spring Boot Starter - Core starter, including auto-configuration support, logging and YAML - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - org.springframework.boot - spring-boot - - - org.springframework.boot - spring-boot-autoconfigure - - - org.springframework.boot - spring-boot-starter-logging - - - org.springframework - spring-core - - - commons-logging - commons-logging - - - - - org.yaml - snakeyaml - runtime - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated deleted file mode 100644 index e838731b48a67b57d3724912b3b68d14d649d4f0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:54 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667352913 -http\://repo.spring.io/snapshot/.lastUpdated=1553667354969 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom.sha1 deleted file mode 100644 index 9048856def98a7bc9800499562f2668f00858a32..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-20160920.220833-115.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -107b352bd8f73e8e4eeb0f024fd91eaca82e8410 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index 79117f1e0982b3ab55e4fc3d623957b8610cdc97..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index fbfeb798d0c3c8098ae4c712e23815ef377eed10..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starter/1.4.1.BUILD-SNAPSHOT/spring-boot-starter-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,49 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - spring-boot-starter - Spring Boot Starter - Core starter, including auto-configuration support, logging and YAML - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - - - - org.springframework.boot - spring-boot - - - org.springframework.boot - spring-boot-autoconfigure - - - org.springframework.boot - spring-boot-starter-logging - - - org.springframework - spring-core - - - commons-logging - commons-logging - - - - - org.yaml - snakeyaml - runtime - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index 722977839f82d1164afcf5101772581d358a112c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:50 CST 2019 -spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index be0cd793e6d20168bcadcedf728482091d734c74..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.springframework.boot - spring-boot-starters - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 114 - - 20171005125858 - - - pom.asc - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-114 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index e6dcc4b555e757ab310b4ce888b5f0a30544dc52..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -b983bfc8d25a5cd19db0c317736c9eda19de9ff3 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index daca7d848a7aff97658df986130e1abcb0ac23cc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:35 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345153654 -maven-metadata-spring-milestones.xml.lastUpdated=1554345153787 -maven-metadata-spring-milestones.xml.error= -maven-metadata-spring-snapshots.xml.lastUpdated=1554345155242 diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom deleted file mode 100644 index 7677c189214e72a0062259bd53cbc3948b5b57da..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom +++ /dev/null @@ -1,194 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot-starters - pom - Spring Boot Starters - Spring Boot Starters - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - spring-boot-starter - spring-boot-starter-activemq - spring-boot-starter-amqp - spring-boot-starter-aop - spring-boot-starter-artemis - spring-boot-starter-batch - spring-boot-starter-cache - spring-boot-starter-cloud-connectors - spring-boot-starter-data-cassandra - spring-boot-starter-data-couchbase - spring-boot-starter-data-elasticsearch - spring-boot-starter-data-gemfire - spring-boot-starter-data-jpa - spring-boot-starter-data-mongodb - spring-boot-starter-data-neo4j - spring-boot-starter-data-redis - spring-boot-starter-data-rest - spring-boot-starter-data-solr - spring-boot-starter-freemarker - spring-boot-starter-groovy-templates - spring-boot-starter-hateoas - spring-boot-starter-hornetq - spring-boot-starter-integration - spring-boot-starter-jdbc - spring-boot-starter-jersey - spring-boot-starter-jetty - spring-boot-starter-jooq - spring-boot-starter-jta-atomikos - spring-boot-starter-jta-bitronix - spring-boot-starter-jta-narayana - spring-boot-starter-logging - spring-boot-starter-log4j2 - spring-boot-starter-mail - spring-boot-starter-mobile - spring-boot-starter-mustache - spring-boot-starter-actuator - spring-boot-starter-parent - - spring-boot-starter-redis - spring-boot-starter-security - spring-boot-starter-social-facebook - spring-boot-starter-social-twitter - spring-boot-starter-social-linkedin - spring-boot-starter-remote-shell - spring-boot-starter-test - spring-boot-starter-thymeleaf - spring-boot-starter-tomcat - spring-boot-starter-undertow - spring-boot-starter-validation - spring-boot-starter-velocity - spring-boot-starter-web - spring-boot-starter-websocket - spring-boot-starter-web-services - spring-boot-starter-ws - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-rules - - enforce - - - - - - commons-logging:*:* - - true - - - - true - - - - - - maven-assembly-plugin - false - - - assemble-starter-poms - generate-resources - - single - - - - src/main/assembly/starter-poms-assembly.xml - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-validation - validate - - check - - - true - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - true - - - - org.basepom.maven - duplicate-finder-maven-plugin - 1.2.1 - - - duplicate-dependencies - validate - - check - - - true - - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.basepom.maven - duplicate-finder-maven-plugin - [1,2) - - check - - - - - - - - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom.sha1 deleted file mode 100644 index 15155387957bcb8761baa988e580a35ba96347a8..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-20160920.220833-114.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -8175caaa30f86290feef1edd4310d5f213467bfe \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 7677c189214e72a0062259bd53cbc3948b5b57da..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-starters/1.4.1.BUILD-SNAPSHOT/spring-boot-starters-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,194 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot-starters - pom - Spring Boot Starters - Spring Boot Starters - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - spring-boot-starter - spring-boot-starter-activemq - spring-boot-starter-amqp - spring-boot-starter-aop - spring-boot-starter-artemis - spring-boot-starter-batch - spring-boot-starter-cache - spring-boot-starter-cloud-connectors - spring-boot-starter-data-cassandra - spring-boot-starter-data-couchbase - spring-boot-starter-data-elasticsearch - spring-boot-starter-data-gemfire - spring-boot-starter-data-jpa - spring-boot-starter-data-mongodb - spring-boot-starter-data-neo4j - spring-boot-starter-data-redis - spring-boot-starter-data-rest - spring-boot-starter-data-solr - spring-boot-starter-freemarker - spring-boot-starter-groovy-templates - spring-boot-starter-hateoas - spring-boot-starter-hornetq - spring-boot-starter-integration - spring-boot-starter-jdbc - spring-boot-starter-jersey - spring-boot-starter-jetty - spring-boot-starter-jooq - spring-boot-starter-jta-atomikos - spring-boot-starter-jta-bitronix - spring-boot-starter-jta-narayana - spring-boot-starter-logging - spring-boot-starter-log4j2 - spring-boot-starter-mail - spring-boot-starter-mobile - spring-boot-starter-mustache - spring-boot-starter-actuator - spring-boot-starter-parent - - spring-boot-starter-redis - spring-boot-starter-security - spring-boot-starter-social-facebook - spring-boot-starter-social-twitter - spring-boot-starter-social-linkedin - spring-boot-starter-remote-shell - spring-boot-starter-test - spring-boot-starter-thymeleaf - spring-boot-starter-tomcat - spring-boot-starter-undertow - spring-boot-starter-validation - spring-boot-starter-velocity - spring-boot-starter-web - spring-boot-starter-websocket - spring-boot-starter-web-services - spring-boot-starter-ws - - - - - - org.apache.maven.plugins - maven-enforcer-plugin - - - enforce-rules - - enforce - - - - - - commons-logging:*:* - - true - - - - true - - - - - - maven-assembly-plugin - false - - - assemble-starter-poms - generate-resources - - single - - - - src/main/assembly/starter-poms-assembly.xml - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - - checkstyle-validation - validate - - check - - - true - - - - - - org.codehaus.mojo - animal-sniffer-maven-plugin - - true - - - - org.basepom.maven - duplicate-finder-maven-plugin - 1.2.1 - - - duplicate-dependencies - validate - - check - - - true - - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - org.basepom.maven - duplicate-finder-maven-plugin - [1,2) - - check - - - - - - - - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index c87fdbfd3a070434fe0955da1e00cb169bfa6541..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:16 CST 2019 -spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 7457696afa2d4a59802f83b243fc50a644397366..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - org.springframework.boot - spring-boot-tools - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 116 - - 20171005125857 - - - pom.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index 553ad6e86bbe3750f6082197e1b21d90352774b1..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -a65e60970954f700c54abba05f02d423f7159d1d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 159c4d1dd19027f056baa5a3be027af32f17d3de..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:27 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345146979 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345147127 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345147400 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom deleted file mode 100644 index ff7f59680755dcb7ac3c28030467010fcde14715..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot-tools - pom - Spring Boot Tools - Spring Boot Tools - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - spring-boot-configuration-metadata - spring-boot-configuration-processor - spring-boot-loader - spring-boot-loader-tools - spring-boot-maven-plugin - spring-boot-gradle-plugin - spring-boot-antlib - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom.sha1 deleted file mode 100644 index 40c413696086a9c9daf07e5e40edf3397f5832ff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-20160920.220833-116.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce0312069f3946b2a90737584cd4f956bee0a8f9 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index ff7f59680755dcb7ac3c28030467010fcde14715..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot-tools/1.4.1.BUILD-SNAPSHOT/spring-boot-tools-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,31 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot-tools - pom - Spring Boot Tools - Spring Boot Tools - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - spring-boot-configuration-metadata - spring-boot-configuration-processor - spring-boot-loader - spring-boot-loader-tools - spring-boot-maven-plugin - spring-boot-gradle-plugin - spring-boot-antlib - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/_remote.repositories b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/_remote.repositories deleted file mode 100644 index b416ae436f661d9e2990757702b01653bf1e6458..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:43 CST 2019 -spring-boot-1.4.1.BUILD-20160920.220833-116.jar>spring-snapshots= -spring-boot-1.4.1.BUILD-20160920.220833-116.pom>spring-snapshots= diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml deleted file mode 100644 index 3cc51207eb5079ee8a90aa1dfe980f38ddaef41b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - org.springframework.boot - spring-boot - 1.4.1.BUILD-SNAPSHOT - - - 20160920.220833 - 116 - - 20171005125829 - - - pom.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - javadoc - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - sources - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - jar - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - javadoc - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - pom - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - sources - jar.asc - 1.4.1.BUILD-20160920.220833-116 - 20160920220833 - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 deleted file mode 100644 index a9b310081ac1957e1459ec26efe219bcbf798a1a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/maven-metadata-spring-snapshots.xml.sha1 +++ /dev/null @@ -1 +0,0 @@ -1825636950137f19fdddac77f5ce318994f703b5 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/resolver-status.properties b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/resolver-status.properties deleted file mode 100644 index 174521342af2e1d6f56787c7739f49e05ed79aa5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/resolver-status.properties +++ /dev/null @@ -1,7 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 10:32:38 CST 2019 -maven-metadata-repo.jenkins-ci.org.xml.lastUpdated=1554345157679 -maven-metadata-repo.jenkins-ci.org.xml.error= -maven-metadata-spring-milestones.xml.lastUpdated=1554345157794 -maven-metadata-spring-snapshots.xml.lastUpdated=1554345158429 -maven-metadata-spring-milestones.xml.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.jar b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.jar deleted file mode 100644 index 31f2fb429971cf00a691c618f7218a4645e18a12..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.jar.sha1 b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.jar.sha1 deleted file mode 100644 index c9fc3a4f9790945719718f7775fa0344c7a4f04b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -935e769821465ed42c14d33db0c57db78114fd1c \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom deleted file mode 100644 index 15170ddcfe12c3a7a428f1931b2699d782ba5500..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom +++ /dev/null @@ -1,360 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot - Spring Boot - Spring Boot - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - - - org.springframework - spring-core - - - org.springframework - spring-context - - - - ch.qos.logback - logback-classic - true - - - com.atomikos - transactions-jms - true - - - com.atomikos - transactions-jta - true - - - com.atomikos - transactions-jdbc - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - com.sendgrid - sendgrid-java - true - - - com.google.code.gson - gson - true - - - com.googlecode.json-simple - json-simple - true - - - javax.jms - jms-api - true - - - javax.servlet - javax.servlet-api - true - - - junit - junit - true - - - org.apache.logging.log4j - log4j-api - true - - - org.apache.logging.log4j - log4j-core - true - - - org.apache.httpcomponents - httpclient - true - - - org.apache.tomcat.embed - tomcat-embed-core - true - - - org.apache.tomcat.embed - tomcat-embed-jasper - true - - - org.apache.velocity - velocity - true - - - org.apache.velocity - velocity-tools - true - - - org.assertj - assertj-core - true - - - org.codehaus.btm - btm - true - - - org.codehaus.groovy - groovy - true - - - org.codehaus.groovy - groovy-xml - true - - - org.eclipse.jetty - jetty-webapp - true - - - org.eclipse.jetty - jetty-util - true - - - org.eclipse.jetty - jetty-servlets - true - - - io.undertow - undertow-servlet - true - - - org.hamcrest - hamcrest-library - true - - - org.hibernate - hibernate-entitymanager - true - - - org.hibernate - hibernate-validator - true - - - org.json - json - true - - - org.liquibase - liquibase-core - true - - - org.neo4j - neo4j-ogm-core - true - - - org.slf4j - slf4j-api - true - - - org.slf4j - jul-to-slf4j - true - - - org.springframework - spring-orm - true - - - org.springframework - spring-test - true - - - org.springframework - spring-web - true - - - org.springframework - spring-webmvc - true - - - org.yaml - snakeyaml - true - - - org.jboss.narayana.jta - jta - true - - - org.jboss.narayana.jta - jdbc - true - - - org.jboss.narayana.jta - jms - true - - - org.jboss.narayana.jts - narayana-jts-integration - true - - - org.jboss - jboss-transaction-spi - true - - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - com.google.appengine - appengine-api-1.0-sdk - test - - - com.h2database - h2 - test - - - com.squareup.okhttp - okhttp - test - - - com.squareup.okhttp3 - okhttp - test - - - mysql - mysql-connector-java - test - - - net.sourceforge.jtds - jtds - test - - - org.apache.derby - derby - test - - - org.apache.httpcomponents - httpasyncclient - test - - - org.firebirdsql.jdbc - jaybird-jdk18 - test - - - org.hsqldb - hsqldb - test - - - org.mariadb.jdbc - mariadb-java-client - test - - - io.netty - netty-all - test - - - org.postgresql - postgresql - test - - - org.slf4j - jcl-over-slf4j - test - - - org.springframework - spring-context-support - test - - - org.springframework.data - spring-data-redis - test - - - org.xerial - sqlite-jdbc - test - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated deleted file mode 100644 index 2e353ea70b5886c69da2741dcf0c9da9f09b5553..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom.lastUpdated +++ /dev/null @@ -1,5 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:59 CST 2019 -https\://repo.jenkins-ci.org/public/.lastUpdated=1553667357912 -http\://repo.spring.io/snapshot/.lastUpdated=1553667359158 -https\://repo.jenkins-ci.org/public/.error= diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom.sha1 b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom.sha1 deleted file mode 100644 index 69c08bff9a913fa02fd8ada79337313b69befd26..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-20160920.220833-116.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -c5d6a1caf24075bb7d351baacd5ba177849f8912 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-SNAPSHOT.jar b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-SNAPSHOT.jar deleted file mode 100644 index 31f2fb429971cf00a691c618f7218a4645e18a12..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-SNAPSHOT.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-SNAPSHOT.pom b/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-SNAPSHOT.pom deleted file mode 100644 index 15170ddcfe12c3a7a428f1931b2699d782ba5500..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/boot/spring-boot/1.4.1.BUILD-SNAPSHOT/spring-boot-1.4.1.BUILD-SNAPSHOT.pom +++ /dev/null @@ -1,360 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-parent - 1.4.1.BUILD-SNAPSHOT - ../spring-boot-parent - - spring-boot - Spring Boot - Spring Boot - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/.. - - - - - org.springframework - spring-core - - - org.springframework - spring-context - - - - ch.qos.logback - logback-classic - true - - - com.atomikos - transactions-jms - true - - - com.atomikos - transactions-jta - true - - - com.atomikos - transactions-jdbc - true - - - com.fasterxml.jackson.core - jackson-databind - true - - - com.sendgrid - sendgrid-java - true - - - com.google.code.gson - gson - true - - - com.googlecode.json-simple - json-simple - true - - - javax.jms - jms-api - true - - - javax.servlet - javax.servlet-api - true - - - junit - junit - true - - - org.apache.logging.log4j - log4j-api - true - - - org.apache.logging.log4j - log4j-core - true - - - org.apache.httpcomponents - httpclient - true - - - org.apache.tomcat.embed - tomcat-embed-core - true - - - org.apache.tomcat.embed - tomcat-embed-jasper - true - - - org.apache.velocity - velocity - true - - - org.apache.velocity - velocity-tools - true - - - org.assertj - assertj-core - true - - - org.codehaus.btm - btm - true - - - org.codehaus.groovy - groovy - true - - - org.codehaus.groovy - groovy-xml - true - - - org.eclipse.jetty - jetty-webapp - true - - - org.eclipse.jetty - jetty-util - true - - - org.eclipse.jetty - jetty-servlets - true - - - io.undertow - undertow-servlet - true - - - org.hamcrest - hamcrest-library - true - - - org.hibernate - hibernate-entitymanager - true - - - org.hibernate - hibernate-validator - true - - - org.json - json - true - - - org.liquibase - liquibase-core - true - - - org.neo4j - neo4j-ogm-core - true - - - org.slf4j - slf4j-api - true - - - org.slf4j - jul-to-slf4j - true - - - org.springframework - spring-orm - true - - - org.springframework - spring-test - true - - - org.springframework - spring-web - true - - - org.springframework - spring-webmvc - true - - - org.yaml - snakeyaml - true - - - org.jboss.narayana.jta - jta - true - - - org.jboss.narayana.jta - jdbc - true - - - org.jboss.narayana.jta - jms - true - - - org.jboss.narayana.jts - narayana-jts-integration - true - - - org.jboss - jboss-transaction-spi - true - - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - com.google.appengine - appengine-api-1.0-sdk - test - - - com.h2database - h2 - test - - - com.squareup.okhttp - okhttp - test - - - com.squareup.okhttp3 - okhttp - test - - - mysql - mysql-connector-java - test - - - net.sourceforge.jtds - jtds - test - - - org.apache.derby - derby - test - - - org.apache.httpcomponents - httpasyncclient - test - - - org.firebirdsql.jdbc - jaybird-jdk18 - test - - - org.hsqldb - hsqldb - test - - - org.mariadb.jdbc - mariadb-java-client - test - - - io.netty - netty-all - test - - - org.postgresql - postgresql - test - - - org.slf4j - jcl-over-slf4j - test - - - org.springframework - spring-context-support - test - - - org.springframework.data - spring-data-redis - test - - - org.xerial - sqlite-jdbc - test - - - - - - org.apache.maven.plugins - maven-jar-plugin - - - - test-jar - - - - - - - diff --git a/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/_remote.repositories deleted file mode 100644 index 4a197681f1ffdee968e37adc4343508d9d77de53..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:10:58 CST 2019 -spring-data-build-1.8.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/spring-data-build-1.8.3.RELEASE.pom b/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/spring-data-build-1.8.3.RELEASE.pom deleted file mode 100644 index 3a77dcfa69c2df0abc6901601e2953d99da9cebe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/spring-data-build-1.8.3.RELEASE.pom +++ /dev/null @@ -1,190 +0,0 @@ - - - - 4.0.0 - org.springframework.data.build - spring-data-build - 1.8.3.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. - http://www.spring.io - - - - resources - parent - bom - - - - - ogierke - Oliver Gierke - ogierke at gopivotal.com - Pivotal Software, Inc. - http://www.spring.io - - Project lead - - +1 - - - - - - Apache License, Version 2.0 - http://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 - - http://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.jfrog.buildinfo - artifactory-maven-plugin - 2.4.0 - - - build-info - - publish - - - - false - - - {{artifactory.server}} - {{artifactory.username}} - {{artifactory.password}} - {{artifactory.staging-repository}} - {{artifactory.staging-repository}} - - - {{artifactory.build-name}} - {{artifactory.build-number}} - - - - - - - - - - - - - org.jfrog.buildinfo - artifactory-maven-plugin - false - - - - - - - - - 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 - - - - - - - - - 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/1.8.3.RELEASE/spring-data-build-1.8.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/spring-data-build-1.8.3.RELEASE.pom.sha1 deleted file mode 100644 index 9dddf1bd4a49e93eafd2101f6fb94f7fd907359e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/data/build/spring-data-build/1.8.3.RELEASE/spring-data-build-1.8.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -187a361fc3a63b572ba51695310d69109e03c34d \ No newline at end of file diff --git a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/_remote.repositories b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/_remote.repositories deleted file mode 100644 index a8d52f1fad5820fa2201d9c8e5dcd120a8809f99..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:10:57 CST 2019 -spring-data-releasetrain-Hopper-SR3.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/spring-data-releasetrain-Hopper-SR3.pom b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/spring-data-releasetrain-Hopper-SR3.pom deleted file mode 100644 index be5945abec934f438feb1852d8922dd7b78aefcc..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/spring-data-releasetrain-Hopper-SR3.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - - 4.0.0 - org.springframework.data - spring-data-releasetrain - Hopper-SR3 - pom - - - org.springframework.data.build - spring-data-build - 1.8.3.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-cql - 1.4.3.RELEASE - - - org.springframework.data - spring-data-cassandra - 1.4.3.RELEASE - - - - - org.springframework.data - spring-data-commons - 1.12.3.RELEASE - - - - - org.springframework.data - spring-data-couchbase - 2.1.3.RELEASE - - - - - org.springframework.data - spring-data-elasticsearch - 2.0.3.RELEASE - - - - - org.springframework.data - spring-data-gemfire - 1.8.3.RELEASE - - - - - org.springframework.data - spring-data-jpa - 1.10.3.RELEASE - - - - - org.springframework.data - spring-data-mongodb - 1.9.3.RELEASE - - - org.springframework.data - spring-data-mongodb-cross-store - 1.9.3.RELEASE - - - org.springframework.data - spring-data-mongodb-log4j - 1.9.3.RELEASE - - - - - org.springframework.data - spring-data-neo4j - 4.1.3.RELEASE - - - - - org.springframework.data - spring-data-redis - 1.7.3.RELEASE - - - - - org.springframework.data - spring-data-rest-webmvc - 2.5.3.RELEASE - - - org.springframework.data - spring-data-rest-core - 2.5.3.RELEASE - - - org.springframework.data - spring-data-rest-hal-browser - 2.5.3.RELEASE - - - - - org.springframework.data - spring-data-solr - 2.0.3.RELEASE - - - - - org.springframework.data - spring-data-keyvalue - 1.1.3.RELEASE - - - - - org.springframework.data - spring-data-envers - 1.0.3.RELEASE - - - - - - diff --git a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/spring-data-releasetrain-Hopper-SR3.pom.sha1 b/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/spring-data-releasetrain-Hopper-SR3.pom.sha1 deleted file mode 100644 index cf2e05753d47c75b2881d61fd39e142a77b1fc62..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/data/spring-data-releasetrain/Hopper-SR3/spring-data-releasetrain-Hopper-SR3.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -1a1507d40b4ea984e8b769d63fdf5e354254e763 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/_remote.repositories deleted file mode 100644 index 6a684147c52ce3f4edc203be2dc0da12b9147ee3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:10:59 CST 2019 -spring-integration-bom-4.3.2.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/spring-integration-bom-4.3.2.RELEASE.pom b/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/spring-integration-bom-4.3.2.RELEASE.pom deleted file mode 100644 index f9c17982c7f4e59281ac55df3efa7514796d20e0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/spring-integration-bom-4.3.2.RELEASE.pom +++ /dev/null @@ -1,223 +0,0 @@ - - - 4.0.0 - org.springframework.integration - spring-integration-bom - 4.3.2.RELEASE - pom - Spring Integration (Bill of Materials) - Spring Integration (Bill of Materials) - https://projects.spring.io/spring-integration - - SpringIO - http://spring.io - - - - The Apache Software License, Version 2.0 - http://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 - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-core - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-event - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-feed - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-file - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-ftp - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-gemfire - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-groovy - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-http - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-ip - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-jdbc - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-jms - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-jmx - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-jpa - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-mail - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-mongodb - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-mqtt - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-redis - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-rmi - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-scripting - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-security - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-sftp - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-stomp - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-stream - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-syslog - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-test - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-twitter - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-websocket - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-ws - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-xml - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-xmpp - 4.3.2.RELEASE - - - org.springframework.integration - spring-integration-zookeeper - 4.3.2.RELEASE - - - - diff --git a/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/spring-integration-bom-4.3.2.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/spring-integration-bom-4.3.2.RELEASE.pom.sha1 deleted file mode 100644 index eefc15e7fa343a66e3f263d41b315d10c2013f9f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/integration/spring-integration-bom/4.3.2.RELEASE/spring-integration-bom-4.3.2.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -aedba1e719b92594cb278656686e13d36160b3f2 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/_remote.repositories deleted file mode 100644 index 67c344e7e65c8b2c76d88945d4abe04bb4412dea..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:11:00 CST 2019 -spring-security-bom-4.1.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/spring-security-bom-4.1.3.RELEASE.pom b/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/spring-security-bom-4.1.3.RELEASE.pom deleted file mode 100644 index f00bad3465e9d62aa76a48331027eb17a0708b1d..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/spring-security-bom-4.1.3.RELEASE.pom +++ /dev/null @@ -1,119 +0,0 @@ - - - 4.0.0 - org.springframework.security - spring-security-bom - 4.1.3.RELEASE - pom - spring-security-bom - spring-security-bom - http://spring.io/spring-security - - spring.io - http://spring.io/ - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - rwinch - Rob Winch - rwinch@gopivotal.com - - - - 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 - - - - - maven-compiler-plugin - - 1.7 - 1.7 - - - - - - - - org.springframework.security - spring-security-acl - 4.1.3.RELEASE - - - org.springframework.security - spring-security-aspects - 4.1.3.RELEASE - - - org.springframework.security - spring-security-cas - 4.1.3.RELEASE - - - org.springframework.security - spring-security-config - 4.1.3.RELEASE - - - org.springframework.security - spring-security-core - 4.1.3.RELEASE - - - org.springframework.security - spring-security-crypto - 4.1.3.RELEASE - - - org.springframework.security - spring-security-data - 4.1.3.RELEASE - - - org.springframework.security - spring-security-ldap - 4.1.3.RELEASE - - - org.springframework.security - spring-security-messaging - 4.1.3.RELEASE - - - org.springframework.security - spring-security-openid - 4.1.3.RELEASE - - - org.springframework.security - spring-security-remoting - 4.1.3.RELEASE - - - org.springframework.security - spring-security-taglibs - 4.1.3.RELEASE - - - org.springframework.security - spring-security-test - 4.1.3.RELEASE - - - org.springframework.security - spring-security-web - 4.1.3.RELEASE - - - - diff --git a/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/spring-security-bom-4.1.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/spring-security-bom-4.1.3.RELEASE.pom.sha1 deleted file mode 100644 index 5ddd708f52e0bfe917847df53e272c5a9d7568ad..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/security/spring-security-bom/4.1.3.RELEASE/spring-security-bom-4.1.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b949f0527b9006f280373c4990899986fd033db3 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index cc73deff7511458c7ed75c6b251e2bc93e29263b..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-aop-4.3.3.RELEASE.jar>repo.jenkins-ci.org= -spring-aop-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.jar deleted file mode 100644 index 7f7822111a51eb0218adacce0de0e9f60d5c8ab5..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index 2168b839ef3f789b838209c3184e5855b321fecd..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3b6b6d116e96fa42fa9bdc9663946a97fc109120 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.pom deleted file mode 100644 index c5533f4bc7706c08efe30fada9e94060502da8e6..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - 4.0.0 - org.springframework - spring-aop - 4.3.3.RELEASE - Spring AOP - Spring AOP - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - com.jamonapi - jamon - 2.81 - compile - true - - - commons-pool - commons-pool - 1.6 - compile - true - - - org.apache.commons - commons-pool2 - 2.4.2 - compile - true - - - org.aspectj - aspectjweaver - 1.8.9 - compile - true - - - org.springframework - spring-beans - 4.3.3.RELEASE - compile - - - org.springframework - spring-core - 4.3.3.RELEASE - compile - - - diff --git a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index 3b861b5155db9e8fddf3352ada0e64a8389f8a1f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-aop/4.3.3.RELEASE/spring-aop-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bd9457ba066a494efd6ad5c48aed5a2a3cfbb1ba \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index 33ff3a72871351baaf93ce3d42ccda3aa8d7e699..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-beans-4.3.3.RELEASE.jar>repo.jenkins-ci.org= -spring-beans-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.jar deleted file mode 100644 index 8d25ec2521ca560f69b30be7f427509d3734f5bc..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index afd144e8897c88e34b5a73591bd32497bf4c1740..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -8e446175b4c8f9bf42abfa11e8194cb729171675 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.pom deleted file mode 100644 index 3444995fe88ff05b21050f4a57576274a6652f43..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.springframework - spring-beans - 4.3.3.RELEASE - Spring Beans - Spring Beans - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - javax.el - javax.el-api - 2.2.5 - compile - true - - - javax.inject - javax.inject - 1 - compile - true - - - org.codehaus.groovy - groovy-all - 2.4.7 - compile - true - - - org.springframework - spring-core - 4.3.3.RELEASE - compile - - - org.yaml - snakeyaml - 1.17 - compile - true - - - diff --git a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index 02e07e520488c1f9e714fc439f017a2b39d0d24f..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-beans/4.3.3.RELEASE/spring-beans-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -27f5866ae5502307cfb6c1f0173f725243026ee2 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index a6e80972f7700e3eabb58135c7c313ab49f459e7..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-context-4.3.3.RELEASE.jar>repo.jenkins-ci.org= -spring-context-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.jar deleted file mode 100644 index fbf01c719a457fa1fa32d611b1d72bf0d236abdf..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index 48d4797ecab9990da57c7597844ac649e32c23fb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -cfcd94c9b28d71e81bdfc058fd386c1aa4a61aea \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.pom deleted file mode 100644 index 672932a4e828f358866123d5d6384a80a7f816e9..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.pom +++ /dev/null @@ -1,155 +0,0 @@ - - - 4.0.0 - org.springframework - spring-context - 4.3.3.RELEASE - Spring Context - Spring Context - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - javax.ejb - ejb-api - 3.0 - compile - true - - - javax.enterprise.concurrent - javax.enterprise.concurrent-api - 1.0 - compile - true - - - javax.inject - javax.inject - 1 - compile - true - - - javax.money - money-api - 1.0.1 - compile - true - - - javax.validation - validation-api - 1.0.0.GA - compile - true - - - joda-time - joda-time - 2.9.4 - compile - true - - - org.aspectj - aspectjweaver - 1.8.9 - compile - true - - - org.beanshell - bsh - 2.0b4 - compile - true - - - org.codehaus.groovy - groovy-all - 2.4.7 - compile - true - - - org.eclipse.persistence - javax.persistence - 2.0.0 - compile - true - - - org.hibernate - hibernate-validator - 4.3.2.Final - compile - true - - - org.jruby - jruby - 1.7.25 - compile - true - - - org.springframework - spring-aop - 4.3.3.RELEASE - compile - - - org.springframework - spring-beans - 4.3.3.RELEASE - compile - - - org.springframework - spring-core - 4.3.3.RELEASE - compile - - - org.springframework - spring-expression - 4.3.3.RELEASE - compile - - - org.springframework - spring-instrument - 4.3.3.RELEASE - compile - true - - - diff --git a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index e1fbdc2e7bf449822d6ccfa9ca0b0ed0a40c06ba..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-context/4.3.3.RELEASE/spring-context-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7a5968d1d40ecfb2ba992c7e39695f59536bbe58 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index 04e2b1bf7e52f10d733041999c9c7ee9534e9219..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-core-4.3.3.RELEASE.pom>repo.jenkins-ci.org= -spring-core-4.3.3.RELEASE.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.jar deleted file mode 100644 index ded56ad4245e7417a70b5f8843c46ec990b553ee..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index e4bdee830b78b3cb406797cff3ba66c926b25349..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -ffad13be3dac6eef7d2418a9de87c2a1592d3033 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.pom deleted file mode 100644 index f3d06be1def21fea1ffe28951f2debe23f5b4599..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.springframework - spring-core - 4.3.3.RELEASE - Spring Core - Spring Core - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - commons-codec - commons-codec - 1.10 - compile - true - - - commons-logging - commons-logging - 1.2 - compile - - - log4j - log4j - 1.2.17 - compile - true - - - net.sf.jopt-simple - jopt-simple - 5.0.2 - compile - true - - - org.aspectj - aspectjweaver - 1.8.9 - compile - true - - - diff --git a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index cfddc45f6f1b7aba9bc13ca5577795cb4f3317f2..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-core/4.3.3.RELEASE/spring-core-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -7051c4416c983a129673120cdc7114b34fb84e23 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index 5f2cd73cf0d3d9f4da2d4abae960c0f6cccd5da0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-expression-4.3.3.RELEASE.jar>repo.jenkins-ci.org= -spring-expression-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.jar deleted file mode 100644 index c30b677fcc57255132c1374bfb9ac0184db9b814..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index 24b72a118a320c4c2e4f1eeba8ffa7a3cbfb2b2c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5e2f2e998370bc7d93c3b2c51f88eb3f95d3a470 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.pom deleted file mode 100644 index 35cdbd9c978d60a857259d2fe3ffb82c64f8d2ff..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.pom +++ /dev/null @@ -1,46 +0,0 @@ - - - 4.0.0 - org.springframework - spring-expression - 4.3.3.RELEASE - Spring Expression Language (SpEL) - Spring Expression Language (SpEL) - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - org.springframework - spring-core - 4.3.3.RELEASE - compile - - - diff --git a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index e47092549888b944669303583fd8d5662f118029..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-expression/4.3.3.RELEASE/spring-expression-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -a13729de63957861c5fa415158a10b97008bc382 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index ae28ac2255d8e147263fae12cd7642d8cc60afbe..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:10:56 CST 2019 -spring-framework-bom-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/spring-framework-bom-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/spring-framework-bom-4.3.3.RELEASE.pom deleted file mode 100644 index 265460f8d3a276d66f4e62365b3ac6e02fb38258..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/spring-framework-bom-4.3.3.RELEASE.pom +++ /dev/null @@ -1,142 +0,0 @@ - - - 4.0.0 - org.springframework - spring-framework-bom - 4.3.3.RELEASE - pom - Spring Framework (Bill of Materials) - Spring Framework (Bill of Materials) - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - - org.springframework - spring-aop - 4.3.3.RELEASE - - - org.springframework - spring-aspects - 4.3.3.RELEASE - - - org.springframework - spring-beans - 4.3.3.RELEASE - - - org.springframework - spring-context - 4.3.3.RELEASE - - - org.springframework - spring-context-support - 4.3.3.RELEASE - - - org.springframework - spring-core - 4.3.3.RELEASE - - - org.springframework - spring-expression - 4.3.3.RELEASE - - - org.springframework - spring-instrument - 4.3.3.RELEASE - - - org.springframework - spring-instrument-tomcat - 4.3.3.RELEASE - - - org.springframework - spring-jdbc - 4.3.3.RELEASE - - - org.springframework - spring-jms - 4.3.3.RELEASE - - - org.springframework - spring-messaging - 4.3.3.RELEASE - - - org.springframework - spring-orm - 4.3.3.RELEASE - - - org.springframework - spring-oxm - 4.3.3.RELEASE - - - org.springframework - spring-test - 4.3.3.RELEASE - - - org.springframework - spring-tx - 4.3.3.RELEASE - - - org.springframework - spring-web - 4.3.3.RELEASE - - - org.springframework - spring-webmvc - 4.3.3.RELEASE - - - org.springframework - spring-webmvc-portlet - 4.3.3.RELEASE - - - org.springframework - spring-websocket - 4.3.3.RELEASE - - - - diff --git a/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/spring-framework-bom-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/spring-framework-bom-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index 27c8ea5bb0c4950d943be5e0b2baae6888eb5d40..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-framework-bom/4.3.3.RELEASE/spring-framework-bom-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9cd0619185a93836611066d76b7d0a134af6d8b4 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index 42313c87d11fe5f3c3bb4bb3281550a6cd60d2d5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-web-4.3.3.RELEASE.jar>repo.jenkins-ci.org= -spring-web-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar deleted file mode 100644 index e178d808008bf41d817d312c380348f19aed759c..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index 21e02abf0cf7743314f3269dfc1c2c370b0f23b5..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -f66f40abfe733621768eae0515ea0dc90bb49753 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.pom deleted file mode 100644 index 7f82a93e90b99a827fabd2c8af3b43f4920e6024..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.pom +++ /dev/null @@ -1,250 +0,0 @@ - - - 4.0.0 - org.springframework - spring-web - 4.3.3.RELEASE - Spring Web - Spring Web - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - com.caucho - hessian - 4.0.38 - compile - true - - - com.fasterxml.jackson.core - jackson-databind - 2.8.2 - compile - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - 2.8.2 - compile - true - - - com.google.code.gson - gson - 2.7 - compile - true - - - com.google.protobuf - protobuf-java - 2.6.1 - compile - true - - - com.googlecode.protobuf-java-format - protobuf-java-format - 1.4 - compile - true - - - com.rometools - rome - 1.7.0 - compile - true - - - com.squareup.okhttp3 - okhttp - 3.4.1 - compile - true - - - com.squareup.okhttp - okhttp - 2.7.5 - compile - true - - - commons-fileupload - commons-fileupload - 1.3.2 - compile - true - - - io.netty - netty-all - 4.1.5.Final - compile - true - - - javax.el - javax.el-api - 2.2.5 - compile - true - - - javax.faces - javax.faces-api - 2.2 - compile - true - - - javax.mail - javax.mail-api - 1.5.5 - compile - true - - - javax.portlet - portlet-api - 2.0 - compile - true - - - javax.servlet.jsp - javax.servlet.jsp-api - 2.2.1 - compile - true - - - javax.validation - validation-api - 1.0.0.GA - compile - true - - - log4j - log4j - 1.2.17 - compile - true - - - org.apache.httpcomponents - httpasyncclient - 4.1.2 - compile - true - - - org.apache.httpcomponents - httpclient - 4.5.2 - compile - true - - - org.codehaus.groovy - groovy-all - 2.4.7 - compile - true - - - org.eclipse.jetty - jetty-server - 9.3.11.v20160721 - compile - - - javax.servlet-api - javax.servlet - - - true - - - org.eclipse.jetty - jetty-servlet - 9.3.11.v20160721 - compile - - - javax.servlet-api - javax.servlet - - - true - - - org.springframework - spring-aop - 4.3.3.RELEASE - compile - - - org.springframework - spring-beans - 4.3.3.RELEASE - compile - - - org.springframework - spring-context - 4.3.3.RELEASE - compile - - - org.springframework - spring-core - 4.3.3.RELEASE - compile - - - org.springframework - spring-oxm - 4.3.3.RELEASE - compile - true - - - javax.servlet - javax.servlet-api - 3.0.1 - provided - - - diff --git a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index 6d00bc81fa685b49edbcca4bce9baec7cbf6d6f3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -056e7455bea76e5898fcf044a9eb03bcbd374326 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/_remote.repositories b/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/_remote.repositories deleted file mode 100644 index be4b9195d929f392499098589c09ad60b4ad6683..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -spring-webmvc-4.3.3.RELEASE.jar>repo.jenkins-ci.org= -spring-webmvc-4.3.3.RELEASE.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.jar b/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.jar deleted file mode 100644 index 5686d2afa710ee9a030b2d83eb7d8a59b1250ff6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.jar and /dev/null differ diff --git a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.jar.sha1 b/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.jar.sha1 deleted file mode 100644 index 13d0c2c09384ff552288e36db27b11266926aadb..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -729d7756ba6b41b6ae40be9dff076ba31946f923 \ No newline at end of file diff --git a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.pom b/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.pom deleted file mode 100644 index 8bbc637b115b14cbf2344c5fb416fbaa1498dd8a..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.pom +++ /dev/null @@ -1,314 +0,0 @@ - - - 4.0.0 - org.springframework - spring-webmvc - 4.3.3.RELEASE - Spring Web MVC - Spring Web MVC - https://github.com/spring-projects/spring-framework - - Spring IO - http://projects.spring.io/spring-framework - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - 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 - - - Jira - https://jira.springsource.org/browse/SPR - - - - com.fasterxml.jackson.core - jackson-databind - 2.8.2 - compile - true - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - 2.8.2 - compile - true - - - com.lowagie - itext - 2.1.7 - compile - true - - - com.rometools - rome - 1.7.0 - compile - true - - - javax.el - javax.el-api - 2.2.5 - compile - true - - - javax.servlet.jsp.jstl - javax.servlet.jsp.jstl-api - 1.2.1 - compile - true - - - javax.servlet.jsp - javax.servlet.jsp-api - 2.2.1 - compile - true - - - net.sf.jasperreports - jasperreports - 6.2.1 - compile - - - xml-apis - xml-apis - - - jackson-core - com.fasterxml.jackson.core - - - jackson-databind - com.fasterxml.jackson.core - - - olap4j - org.olap4j - - - spring-context - org.springframework - - - jackson-annotations - com.fasterxml.jackson.core - - - true - - - net.sourceforge.jexcelapi - jxl - 2.6.12 - compile - true - - - org.apache.poi - poi - 3.14 - compile - true - - - org.apache.poi - poi-ooxml - 3.14 - compile - true - - - org.apache.tiles - tiles-api - 2.2.2 - compile - true - - - org.apache.tiles - tiles-core - 2.2.2 - compile - - - jcl-over-slf4j - org.slf4j - - - true - - - org.apache.tiles - tiles-el - 2.2.2 - compile - - - jcl-over-slf4j - org.slf4j - - - true - - - org.apache.tiles - tiles-extras - 2.2.2 - compile - - - spring-web - org.springframework - - - jcl-over-slf4j - org.slf4j - - - velocity-tools - org.apache.velocity - - - true - - - org.apache.tiles - tiles-jsp - 2.2.2 - compile - - - jcl-over-slf4j - org.slf4j - - - true - - - org.apache.tiles - tiles-servlet - 2.2.2 - compile - - - jcl-over-slf4j - org.slf4j - - - true - - - org.apache.velocity - velocity - 1.7 - compile - true - - - org.codehaus.groovy - groovy-all - 2.4.7 - compile - true - - - org.freemarker - freemarker - 2.3.23 - compile - true - - - org.springframework - spring-aop - 4.3.3.RELEASE - compile - - - org.springframework - spring-beans - 4.3.3.RELEASE - compile - - - org.springframework - spring-context - 4.3.3.RELEASE - compile - - - org.springframework - spring-context-support - 4.3.3.RELEASE - compile - true - - - org.springframework - spring-core - 4.3.3.RELEASE - compile - - - org.springframework - spring-expression - 4.3.3.RELEASE - compile - - - org.springframework - spring-oxm - 4.3.3.RELEASE - compile - true - - - org.springframework - spring-web - 4.3.3.RELEASE - compile - - - org.webjars - webjars-locator - 0.32 - compile - true - - - velocity-tools - velocity-tools-view - 1.4 - compile - true - - - javax.servlet - javax.servlet-api - 3.0.1 - provided - - - diff --git a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.pom.sha1 b/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.pom.sha1 deleted file mode 100644 index cd99c2dcb7abf583a7d3acbf62979664638c18ce..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/springframework/spring-webmvc/4.3.3.RELEASE/spring-webmvc-4.3.3.RELEASE.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -ce29b55943b4b8234598c591f1ef8daea86bd935 \ No newline at end of file diff --git a/artifacts/m2/org/vafer/jdependency/0.7/_remote.repositories b/artifacts/m2/org/vafer/jdependency/0.7/_remote.repositories deleted file mode 100644 index 9155649647ab2f93e8e7177bb731d81d398f566c..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/vafer/jdependency/0.7/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:30:10 CST 2019 -jdependency-0.7.pom>repo.jenkins-ci.org= -jdependency-0.7.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.jar b/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.jar deleted file mode 100644 index 63ef9349f3191274618e443f8bd732714280d3e0..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.jar and /dev/null differ diff --git a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 b/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 deleted file mode 100644 index 32f5515ede11f32d0753245696dfbce048e191b0..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -1ff888f026579c58d5b2d730ed2a0e86a36ad46d \ No newline at end of file diff --git a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.pom b/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.pom deleted file mode 100644 index 4e729206031b5db043516bdc8452e691a23f61e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.pom +++ /dev/null @@ -1,205 +0,0 @@ - - - 4.0.0 - org.vafer - jdependency - jdependency - 0.7 - This project provides an API to analyse class dependencies - http://github.com/tcurdt/jdependency - - - tcurdt - Torsten Curdt - tcurdt at apache.org - - Lead Developer - - +1 - - - - - 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/tree/master - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.5 - 1.5 - UTF-8 - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.4 - - never - - **/*TestCase.java - - - **/Abstract* - - false - - - - - - - - junit - junit - 3.8.2 - test - - - commons-io - commons-io - 1.3.2 - - - asm - asm - 3.2 - - - asm - asm-analysis - 3.2 - - - asm - asm-commons - 3.2 - - - asm - asm-util - 3.2 - - - asm - asm-tree - 3.2 - - - - - releases - scpexe://vafer.org/var/www/vafer.org/www/repository/releases - - - snaphots - scpexe://vafer.org/var/www/vafer.org/www/repository/snapshots - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.4 - - true - - http://java.sun.com/javase/5/docs/api - - - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.1 - - - - project-team - dependencies - license - scm - - - - - - org.apache.maven.plugins - maven-surefire-report-plugin - 2.4 - - - org.apache.maven.plugins - maven-pmd-plugin - 2.5 - - - org.apache.maven.plugins - maven-jxr-plugin - 2.2 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - FIXME - TODO - @todo - @deprecated - - true - - - - - diff --git a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 b/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 deleted file mode 100644 index 7fe520f2280f0671d6a65da964ef7d741a7edaf3..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/vafer/jdependency/0.7/jdependency-0.7.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -9666402d9bdbfb9f5b22fb87fbe166ee1183dfe2 \ No newline at end of file diff --git a/artifacts/m2/org/yaml/snakeyaml/1.17/_remote.repositories b/artifacts/m2/org/yaml/snakeyaml/1.17/_remote.repositories deleted file mode 100644 index df14db2c3f56d95a4dc88c22a0a83096160e2640..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/yaml/snakeyaml/1.17/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:16:50 CST 2019 -snakeyaml-1.17.jar>repo.jenkins-ci.org= -snakeyaml-1.17.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar b/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar deleted file mode 100644 index b0372a3cddd2d09e343629153ec113b2762cd301..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar and /dev/null differ diff --git a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar.sha1 b/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar.sha1 deleted file mode 100644 index 9ac6e87f2244af392ab65e8d2ecb9fb51fa591e4..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7a27ea250c5130b2922b86dea63cbb1cc10a660c \ No newline at end of file diff --git a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom b/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom deleted file mode 100644 index 6c5a6ac062175f542abf2265a9df3edc3ae9db57..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom +++ /dev/null @@ -1,635 +0,0 @@ - - 4.0.0 - org.yaml - snakeyaml - 1.17 - bundle - - UTF-8 - bitbucket - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - https://oss.sonatype.org/content/repositories/snapshots/ - - 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 - v1.17 - - - - 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 - - - - 3.0.5 - - - - junit - junit - 4.12 - test - - - org.springframework - spring - 2.5.6 - 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-snapshots - Sonatype Nexus Snapshots - ${snapshot.repo.url} - false - - - - - - ${basedir}/src/test/resources - true - - - - - - org.apache.maven.plugins - maven-site-plugin - 3.4 - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - 1.5 - 1.5 - ${project.build.sourceEncoding} - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - -Xmx512m - - **/*Test.java - - - **/StressTest.java - **/ParallelTest.java - - - - - org.apache.maven.plugins - maven-eclipse-plugin - 2.10 - - bin - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - - 80 - 95 - - - html - xml - - - - org/yaml/snakeyaml/external/** - - - - - - - clean - check - - - - - - org.apache.maven.plugins - maven-changes-plugin - 2.11 - - - validate-changes - pre-site - - changes-validate - - - true - - - - - - org.apache.maven.plugins - maven-source-plugin - 2.4 - - - - jar - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.3 - - - http://java.sun.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 - 2.5.4 - true - - - <_nouses>true - - !org.yaml.snakeyaml.external*, - org.yaml.snakeyaml.*;version=${project.version} - - J2SE-1.5 - - - - - maven-site-plugin - 3.4 - - - attach-descriptor - - attach-descriptor - - - - -
-
- - - - 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 - 2.18.1 - - true - - - - org.codehaus.mojo - cobertura-maven-plugin - 2.6 - - - html - xml - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.1 - - - 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 - - - - - - - - - jdk8 - - [1.8,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -Xdoclint:none - - - - org.apache.maven.plugins - maven-site-plugin - - - - org.apache.maven.plugins - maven-javadoc-plugin - - -Xdoclint:none - - - - - - - - - - with-java8-tests - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.8 - 1.8 - - - - org.codehaus.mojo - build-helper-maven-plugin - 1.10 - - - add-java8-test-source - generate-test-sources - - add-test-source - - - - ${basedir}/src/test/java8/ - - - - - - - - - - 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.2 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.5 - - - - - - - org.apache.maven.plugins - maven-jxr-plugin - 2.5 - - - org.codehaus.mojo - findbugs-maven-plugin - 3.0.0 - - - org.apache.maven.plugins - maven-pmd-plugin - 3.4 - - true - utf-8 - 100 - 1.5 - - **/external/*.java - - - - - - - - android - - ${project.build.directory}/android/src/ - ${project.build.directory}/android/classes/ - ${project.build.directory}/android/test-classes/ - - - - - maven-resources-plugin - 2.7 - - - copy-src-for-android - generate-sources - - copy-resources - - - ${android.src} - - - ${basedir}/src/main/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 - - - - - - - - - org.apache.maven.plugins - maven-patch-plugin - 1.2 - - ${basedir}/src/patches/android/ - ${android.src} - false - 4 - - - - 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.17/snakeyaml-1.17.pom.sha1 b/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom.sha1 deleted file mode 100644 index f865167295cfd556efbc88df1153ed4bc1646c0e..0000000000000000000000000000000000000000 --- a/artifacts/m2/org/yaml/snakeyaml/1.17/snakeyaml-1.17.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -93e6d192f94124d739a3a6ef9d184e0d599758a1 \ No newline at end of file diff --git a/artifacts/m2/oro/oro/2.0.8/_remote.repositories b/artifacts/m2/oro/oro/2.0.8/_remote.repositories deleted file mode 100644 index f3f686bf695f598f0b62a8dbdb8ef02c2668d488..0000000000000000000000000000000000000000 --- a/artifacts/m2/oro/oro/2.0.8/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -oro-2.0.8.jar>repo.jenkins-ci.org= -oro-2.0.8.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.jar b/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.jar deleted file mode 100644 index 23488d2600f5f4784c0ba2be5baa4c41f396f616..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.jar and /dev/null differ diff --git a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.jar.sha1 b/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.jar.sha1 deleted file mode 100644 index 95a1d3118551708cbe92e9d755167f51ef40eeac..0000000000000000000000000000000000000000 --- a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -5592374f834645c4ae250f4c9fbb314c9369d698 \ No newline at end of file diff --git a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.pom b/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.pom deleted file mode 100644 index abdd237992da7e0877f697ab4fda6b19847e73f7..0000000000000000000000000000000000000000 --- a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.pom +++ /dev/null @@ -1,6 +0,0 @@ - - 4.0.0 - oro - oro - 2.0.8 - \ No newline at end of file diff --git a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.pom.sha1 b/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.pom.sha1 deleted file mode 100644 index c9fa6c5e51fcaceb79c778bf3f343747b77a934f..0000000000000000000000000000000000000000 --- a/artifacts/m2/oro/oro/2.0.8/oro-2.0.8.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -6d10956ccdb32138560928ba9501648e430c34bb \ No newline at end of file diff --git a/artifacts/m2/sslext/sslext/1.2-0/_remote.repositories b/artifacts/m2/sslext/sslext/1.2-0/_remote.repositories deleted file mode 100644 index 7c008c38cacc93e1f0d858c7a6021e804c0bfea1..0000000000000000000000000000000000000000 --- a/artifacts/m2/sslext/sslext/1.2-0/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -sslext-1.2-0.jar>repo.jenkins-ci.org= -sslext-1.2-0.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.jar b/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.jar deleted file mode 100644 index 5d7175f7546c6d350d6f7cb054229706cc00ccd6..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.jar and /dev/null differ diff --git a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 b/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 deleted file mode 100644 index 32a0f5f9902636089133ce1a3805d6e5ebf5a647..0000000000000000000000000000000000000000 --- a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -c86a7db4ac0bc450e675f3d44b3d64cdc934361b \ No newline at end of file diff --git a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.pom b/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.pom deleted file mode 100644 index 08d4d04c5814213d48a6b65a65d3341d6b3707c9..0000000000000000000000000000000000000000 --- a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.pom +++ /dev/null @@ -1,25 +0,0 @@ - - 4.0.0 - sslext - sslext - sslext - 1.2-0 - - - Apache Software License, Version 1.1 - http://www.apache.org/licenses/LICENSE-1.1 - - - - - Steve Ditlinger - http://sslext.sourceforge.net/ - - - - struts - struts - 1.2.7 - - - \ No newline at end of file diff --git a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 b/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 deleted file mode 100644 index 6faec2f8328792acd8aed83c51a8e183011c9f8b..0000000000000000000000000000000000000000 --- a/artifacts/m2/sslext/sslext/1.2-0/sslext-1.2-0.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -69e2c447f2c424d95c4a818463d58da1723fce2c \ No newline at end of file diff --git a/artifacts/m2/xerces/xercesImpl/2.8.1/_remote.repositories b/artifacts/m2/xerces/xercesImpl/2.8.1/_remote.repositories deleted file mode 100644 index 9e69abbf7719b5ce85743a7bdda231e69f207d3f..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.8.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -xercesImpl-2.8.1.jar>repo.jenkins-ci.org= -xercesImpl-2.8.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar b/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar deleted file mode 100644 index 3b351f6e2b566f73b742510738a52b866b4ffd0d..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar and /dev/null differ diff --git a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar.sha1 b/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar.sha1 deleted file mode 100644 index 280149761c02310a658f167ecc89aec887824be5..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -25101e37ec0c907db6f0612cbf106ee519c1aef1 \ No newline at end of file diff --git a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom b/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom deleted file mode 100644 index 1e4c07a0069b8931dca13880c4f73e286a0de38d..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom +++ /dev/null @@ -1,58 +0,0 @@ - - - apache - org.apache - 3 - - 4.0.0 - xerces - xercesImpl - Xerces2 Java Parser - 2.8.1 - Xerces2 is the next generation of high performance, fully - compliant XML parsers in the Apache Xerces family. This new - version of Xerces introduces the Xerces Native Interface (XNI), - a complete framework for building parser components and - configurations that is extremely modular and easy to program. - http://xerces.apache.org/xerces2-j/ - - JIRA - http://issues.apache.org/jira/browse/XERCESJ - - - - Xerces Java User's List - j-users-subscribe@xerces.apache.org - j-users-unsubscribe@xerces.apache.org - j-users@xerces.apache.org - http://mail-archives.apache.org/mod_mbox/xerces-j-users/ - - - Xerces Java Developer's List - j-dev-subscribe@xerces.apache.org - j-dev-unsubscribe@xerces.apache.org - j-dev@xerces.apache.org - http://mail-archives.apache.org/mod_mbox/xerces-j-dev/ - - - - scm:svn:http://svn.apache.org/repos/asf/xerces/java/tags/Xerces-J_2_8_1/ - http://svn.apache.org/viewvc/xerces/java/tags/Xerces-J_2_8_1/ - - - - xml-apis - xml-apis - 1.3.03 - - - xml-resolver - xml-resolver - 1.1 - true - - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom.sha1 b/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom.sha1 deleted file mode 100644 index 9fa3f32383d03db73dc2adca284e3bf8a26e0678..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -abda46c0359b0e2dcf7a31359128a0c6cecd4dca \ No newline at end of file diff --git a/artifacts/m2/xerces/xercesImpl/2.9.1/_remote.repositories b/artifacts/m2/xerces/xercesImpl/2.9.1/_remote.repositories deleted file mode 100644 index 1b339f9e7618246b965e6daf43c60383b553a6df..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.9.1/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -xercesImpl-2.9.1.jar>repo.jenkins-ci.org= -xercesImpl-2.9.1.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar b/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar deleted file mode 100644 index 547f56300d93fe36587910739e095f03e287d47e..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar and /dev/null differ diff --git a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 b/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 deleted file mode 100644 index 91eff4b7b96286865ff62312f294ddf6b94c6eb9..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -7bc7e49ddfe4fb5f193ed37ecc96c12292c8ceb6 \ No newline at end of file diff --git a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom b/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom deleted file mode 100644 index fb13c9de3fb56b4f1bac500553f28ccec240605c..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom +++ /dev/null @@ -1,44 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 4 - - xerces - xercesImpl - 2.9.1 - Xerces2 Java Parser - - Xerces2 is the next generation of high performance, fully compliant XML parsers in the - Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), - a complete framework for building parser components and configurations that is extremely - modular and easy to program. - - http://xerces.apache.org/xerces2-j - - - - xml-apis - xml-apis - 1.3.04 - - - xml-resolver - xml-resolver - 1.2 - true - - - - - - src - - - \ No newline at end of file diff --git a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 b/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 deleted file mode 100644 index ad5aa52443ef2e6bac98d9a728eb4814633db514..0000000000000000000000000000000000000000 --- a/artifacts/m2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -55a24b0cdefdf6002c3d3f9bb400e55a12d2482e \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/1.0.b2/_remote.repositories b/artifacts/m2/xml-apis/xml-apis/1.0.b2/_remote.repositories deleted file mode 100644 index 81b21abd8a149885b23683f30dc9704d03e38626..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.0.b2/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:22:31 CST 2019 -xml-apis-1.0.b2.jar>repo.jenkins-ci.org= -xml-apis-1.0.b2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar b/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar deleted file mode 100644 index ad33a5afa6ddae02f3ed0b42b1c7fcbf22a7d2ab..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar and /dev/null differ diff --git a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 b/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 deleted file mode 100644 index 875bc6f49ab2cabbac90a489c63a66ae445d9036..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3136ca936f64c9d68529f048c2618bd356bf85c9 \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom b/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom deleted file mode 100644 index cbb7fea089a77a50ac1ca4c674bc55ae0848d028..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +++ /dev/null @@ -1,56 +0,0 @@ - - 4.0.0 - xml-apis - xml-apis - XML Commons External Components XML APIs - 1.0.b2 - http://xml.apache.org/commons/#external - - xml-commons provides an Apache-hosted set of DOM, SAX, and - JAXP interfaces for use in other xml-based projects. Our hope is that we - can standardize on both a common version and packaging scheme for these - critical XML standards interfaces to make the lives of both our developers - and users easier. The External Components portion of xml-commons contains - interfaces that are defined by external standards organizations. For DOM, - that's the W3C; for SAX it's David Megginson and sax.sourceforge.net; for - JAXP it's Sun. - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - Apache Software Foundation - http://www.apache.org/ - - - - bugzilla - http://issues.apache.org/bugzilla/ - - - - - XML Commons Developer's List - commons-dev-subscribe@xml.apache.org - commons-dev-unsubscribe@xml.apache.org - commons-dev@xml.apache.org - http://mail-archives.apache.org/mod_mbox/xml-commons-dev/ - - - - - scm:svn:http://svn.apache.org/repos/asf/xml/commons/tags/xml-commons-1_0_b2 - http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-1_0_b2 - - - - http://www.apache.org/dist/xml/commons/binaries/xml-commons-1.0.b2.tar.gz - - diff --git a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 b/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 deleted file mode 100644 index f64621d4bd90e8b282e9d8aa572b0fe0679d442d..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -2289016f8b8f6a600ce45a199426fe0f6b2be4b0 \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.03/_remote.repositories b/artifacts/m2/xml-apis/xml-apis/1.3.03/_remote.repositories deleted file mode 100644 index 05414773df9b12f715d9d6bdc9e736ad06e2b543..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.03/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:10 CST 2019 -xml-apis-1.3.03.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom b/artifacts/m2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom deleted file mode 100644 index 675a0b91a4fe6cdf1256a12be8fd861fb4f4ccaf..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom +++ /dev/null @@ -1,21 +0,0 @@ - - - - 4.0.0 - - org.apache - apache - 1 - - - xml-apis - xml-apis - 1.3.03 - http://xml.apache.org/commons/#external - - http://www.apache.org/dist/xml/xerces-j/Xerces-J-bin.2.8.0.tar.gz - - diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom.sha1 b/artifacts/m2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom.sha1 deleted file mode 100644 index 2ee1c2c4b1a58623921fb378bd07a29e630c2b9b..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -b3ba55077dae1297654bb74200fe01a9fe02944c \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.04/_remote.repositories b/artifacts/m2/xml-apis/xml-apis/1.3.04/_remote.repositories deleted file mode 100644 index 25143978555799026223fc357392d9cdcc3852db..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.04/_remote.repositories +++ /dev/null @@ -1,4 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:14:25 CST 2019 -xml-apis-1.3.04.jar>repo.jenkins-ci.org= -xml-apis-1.3.04.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar b/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar deleted file mode 100644 index d42c0ea6cfd17ed6b444b8337febbc0bdb55ed83..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar and /dev/null differ diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 b/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 deleted file mode 100644 index 6b27a73115cdc90ee8c64164e106b0b8bf50d4ec..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -90b215f48fe42776c8c7f6e3509ec54e84fd65ef \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom b/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom deleted file mode 100644 index ee22e7546393abb5087139cf05bb55f5fa9294f0..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom +++ /dev/null @@ -1,41 +0,0 @@ - - - apache - org.apache - 3 - - 4.0.0 - xml-apis - xml-apis - XML Commons External Components XML APIs - 1.3.04 - xml-commons provides an Apache-hosted set of DOM, SAX, and - JAXP interfaces for use in other xml-based projects. Our hope is that we - can standardize on both a common version and packaging scheme for these - critical XML standards interfaces to make the lives of both our developers - and users easier. The External Components portion of xml-commons contains - interfaces that are defined by external standards organizations. For DOM, - that's the W3C; for SAX it's David Megginson and sax.sourceforge.net; for - JAXP it's Sun. - http://xml.apache.org/commons/components/external/ - - bugzilla - http://issues.apache.org/bugzilla/ - - - - XML Commons Developer's List - commons-dev-subscribe@xml.apache.org - commons-dev-unsubscribe@xml.apache.org - commons-dev@xml.apache.org - http://mail-archives.apache.org/mod_mbox/xml-commons-dev/ - - - - scm:svn:http://svn.apache.org/repos/asf/xml/commons/tags/xml-commons-external-1_3_04/ - http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-external-1_3_04/ - - - deployed - - \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 b/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 deleted file mode 100644 index 8030c27477c6bb9aa5d6f6430ef797de4bfd49fe..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -d6174a9fd44cd14ff8dd486d6ac2e64f831db57c \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/2.0.2/_remote.repositories b/artifacts/m2/xml-apis/xml-apis/2.0.2/_remote.repositories deleted file mode 100644 index 5a98481cc91110eb40a53b0f62bd123e91f16e5a..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/2.0.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Thu Apr 04 14:21:26 CST 2019 -xml-apis-2.0.2.pom>repo.jenkins-ci.org= diff --git a/artifacts/m2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom b/artifacts/m2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom deleted file mode 100644 index 664f0dfcb14d825b54ab38e9123b35a4b04fbf85..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom +++ /dev/null @@ -1,13 +0,0 @@ - - 4.0.0 - xml-apis - xml-apis - 2.0.2 - - - xml-apis - xml-apis - 1.0.b2 - - - \ No newline at end of file diff --git a/artifacts/m2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 b/artifacts/m2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 deleted file mode 100644 index dddec01a594addc0e5aaecfd125349b174743458..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom.sha1 +++ /dev/null @@ -1 +0,0 @@ -bf2e4baaea312f54f2934c6eb9bbde0a2a4afb07 \ No newline at end of file diff --git a/artifacts/m2/xml-resolver/xml-resolver/1.2/_remote.repositories b/artifacts/m2/xml-resolver/xml-resolver/1.2/_remote.repositories deleted file mode 100644 index 5f380195a9e1d5daf02e9d8d576caf8009f09b2b..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-resolver/xml-resolver/1.2/_remote.repositories +++ /dev/null @@ -1,3 +0,0 @@ -#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. -#Wed Mar 27 14:15:41 CST 2019 -xml-resolver-1.2.jar>repo.jenkins-ci.org= diff --git a/artifacts/m2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar b/artifacts/m2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar deleted file mode 100644 index e535bdc073355b300614041be473988c3a6c8624..0000000000000000000000000000000000000000 Binary files a/artifacts/m2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar and /dev/null differ diff --git a/artifacts/m2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar.sha1 b/artifacts/m2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar.sha1 deleted file mode 100644 index b7b8a06b47451e5e38a4322f0a3b866a41a2d89f..0000000000000000000000000000000000000000 --- a/artifacts/m2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar.sha1 +++ /dev/null @@ -1 +0,0 @@ -3d0f97750b3a03e0971831566067754ba4bfd68c \ No newline at end of file diff --git a/deploy/dev/devops-sample-svc.yaml b/deploy/dev/devops-sample-svc.yaml deleted file mode 100644 index 24fff6f318c8865d76a87c4542c9cec61dfc4875..0000000000000000000000000000000000000000 --- a/deploy/dev/devops-sample-svc.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - labels: - app: kubesphere - component: ks-sample-dev - name: ks-sample-dev - namespace: kubesphere-sample-dev -spec: - ports: - - name: http - port: 8080 - protocol: TCP - targetPort: 8080 - nodePort: 30861 - selector: - app: kubesphere - component: ks-sample-dev - tier: backend - sessionAffinity: None - type: NodePort \ No newline at end of file diff --git a/deploy/dev/devops-sample.yaml b/deploy/dev/devops-sample.yaml deleted file mode 100644 index 9d8e18f7cae57840ad7693ca7a88cf912f76b56c..0000000000000000000000000000000000000000 --- a/deploy/dev/devops-sample.yaml +++ /dev/null @@ -1,55 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - labels: - app: kubesphere - component: ks-sample-dev - tier: backend - name: ks-sample-dev - namespace: kubesphere-sample-dev -spec: - progressDeadlineSeconds: 600 - replicas: 1 - selector: - matchLabels: - app: kubesphere - component: ks-sample-dev - tier: backend - template: - metadata: - labels: - app: kubesphere - component: ks-sample-dev - tier: backend - spec: - containers: - - env: - - name: CACHE_IGNORE - value: js|html - - name: CACHE_PUBLIC_EXPIRATION - value: 3d - image: $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:SNAPSHOT-$BRANCH_NAME-$BUILD_NUMBER - readinessProbe: - httpGet: - path: / - port: 8080 - timeoutSeconds: 10 - failureThreshold: 30 - periodSeconds: 5 - imagePullPolicy: Always - name: ks-sample - ports: - - containerPort: 8080 - protocol: TCP - resources: - limits: - cpu: 200m - memory: 500Mi - requests: - cpu: 100m - memory: 100Mi - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - dnsPolicy: ClusterFirst - restartPolicy: Always - terminationGracePeriodSeconds: 30 \ No newline at end of file diff --git a/deploy/prod/devops-sample-svc.yaml b/deploy/prod/devops-sample-svc.yaml deleted file mode 100644 index 6211066c6607830c1ca9861d228155baee5f9cb9..0000000000000000000000000000000000000000 --- a/deploy/prod/devops-sample-svc.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - labels: - app: kubesphere - component: ks-sample - name: ks-sample - namespace: kubesphere-sample-prod -spec: - ports: - - name: http - port: 8080 - protocol: TCP - targetPort: 8080 - nodePort: 30961 - selector: - app: kubesphere - component: ks-sample - tier: backend - sessionAffinity: None - type: NodePort \ No newline at end of file diff --git a/deploy/prod/devops-sample.yaml b/deploy/prod/devops-sample.yaml deleted file mode 100644 index 1058cb41b3f0a40c518f934a47528f3bff805f37..0000000000000000000000000000000000000000 --- a/deploy/prod/devops-sample.yaml +++ /dev/null @@ -1,60 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - labels: - app: kubesphere - component: ks-sample - tier: backend - name: ks-sample - namespace: kubesphere-sample-prod -spec: - progressDeadlineSeconds: 600 - replicas: 2 - selector: - matchLabels: - app: kubesphere - component: ks-sample - tier: backend - strategy: - rollingUpdate: - maxSurge: 1 - maxUnavailable: 1 - type: RollingUpdate - template: - metadata: - labels: - app: kubesphere - component: ks-sample - tier: backend - spec: - containers: - - env: - - name: CACHE_IGNORE - value: js|html - - name: CACHE_PUBLIC_EXPIRATION - value: 3d - image: $REGISTRY/$HARBOR_NAMESPACE/$APP_NAME:$TAG_NAME - readinessProbe: - httpGet: - path: / - port: 8080 - timeoutSeconds: 10 - failureThreshold: 30 - periodSeconds: 5 - imagePullPolicy: Always - name: ks - ports: - - containerPort: 8080 - protocol: TCP - resources: - limits: - cpu: 200m - memory: 500Mi - requests: - cpu: 100m - memory: 100Mi - terminationMessagePath: /dev/termination-log - terminationMessagePolicy: File - dnsPolicy: ClusterFirst - restartPolicy: Always - terminationGracePeriodSeconds: 30 \ No newline at end of file diff --git a/pom.xml b/pom.xml index 69717e7ec3e276f1ee5fc63f84c9276102d42824..b0eaa8a21ffbbffe7c5ffa577b179d620162238f 100644 --- a/pom.xml +++ b/pom.xml @@ -27,28 +27,6 @@ 1.4.1.BUILD-SNAPSHOT - - - spring-snapshots - http://repo.spring.io/snapshot - true - - - spring-milestones - http://repo.spring.io/milestone - - - - - spring-snapshots - http://repo.spring.io/snapshot - - - spring-milestones - http://repo.spring.io/milestone - - - org.springframework.boot