java - Atlassian bamboo .Net plugins dependencies installation -
i wish modify existing atlassian bamboo .net plugin: https://bitbucket.org/atlassian/bamboo-dotnet-plugin mstest parser include stacktrace information.
i've downloaded repository locally, , have tried install of project dependencies using maven command: mvn clean install -u
.
unfortunately not jars downloaded, i've searched online , found using atlassian sdk build project , let handle maven stuff because has configured in settings.xml file.
problem still build failure after using it. here's cmd output:
[info] --------------------------------------------------------------------- --- [info] build failure [info] ------------------------------------------------------------------------ [info] total time: 04:43 min [info] finished at: 2016-07-12t14:22:23+02:00 [info] final memory: 11m/29m [info] ------------------------------------------------------------------------ [error] failed execute goal on project atlassian-bamboo-plugin-dotnet: not resolve dependencies project com.atlassian.bamboo.plugins.dotnet:atlassian-bamboo-plugin-dotn et:atlassian-plugin:5.11.2-snapshot: following artifacts not resolved: com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bam boo-core:jar:5.12.0-snapshot, com.atlassian.bamboo.plugins.scripttask:atlassian-bamboo-plugin-scripttask:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-test-utils:jar:5. 12.0-snapshot: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) -> [help 1] [error] [error] see full stack trace of errors, re-run maven -e switch. [error] re-run maven using -x switch enable full debug logging. [error] [error] more information errors , possible solutions, please read following articles: [error] [help 1] http://cwiki.apache.org/confluence/display/maven/dependencyresolutionexception
after i've tried additional mvn install
, got output:
[info] scanning projects... [warning] pom org.sonatype.plugins:nexus-staging-maven-plugin:jar:1.6.5-atlassian-2 missing, no dependency information available [error] [error] problems encountered while processing poms: [error] unresolveable build extension: plugin org.sonatype.plugins:nexus-staging-maven-plugin:1.6.5-atlassian-2 or 1 of dependencies not resolved: failure find org .sonatype.plugins:nexus-staging-maven-plugin:jar:1.6.5-atlassian-2 in https://repo.maven.apache.org/maven2 cached in local repository, resolution not reattempted unt il update interval of central has elapsed or updates forced @ [error] unknown packaging: atlassian-plugin @ line 14, column 14 @ [error] build not read 1 project -> [help 1] [error] [error] project com.atlassian.bamboo.plugins.dotnet:atlassian-bamboo-plugin-dotnet:5.11.2-snapshot (c:\users\roy\desktop\atlassian-bamboo-dotnet-plugin-7d0bf7a4f611\pom.xml) h 2 errors [error] unresolveable build extension: plugin org.sonatype.plugins:nexus-staging-maven-plugin:1.6.5-atlassian-2 or 1 of dependencies not resolved: failure find org.sonatype.plugins:nexus-staging-maven-plugin:jar:1.6.5-atlassian-2 in https://repo.maven.apache.org/maven2 cached in local repository, resolution not reattempted until update interval of central has elapsed or updates forced -> [help 2] [error] unknown packaging: atlassian-plugin @ line 14, column 14 [error] [error] see full stack trace of errors, re-run maven -e switch. [error] re-run maven using -x switch enable full debug logging. [error] [error] more information errors , possible solutions, please read following articles: [error] [help 1] http://cwiki.apache.org/confluence/display/maven/projectbuildingexception [error] [help 2] http://cwiki.apache.org/confluence/display/maven/pluginmanagerexception
can me figure out? here's pom.xml file:
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelversion>4.0.0</modelversion> <parent> <groupid>com.atlassian.pom</groupid> <artifactid>public-pom</artifactid> <version>4.0.8</version> </parent> <groupid>com.atlassian.bamboo.plugins.dotnet</groupid> <artifactid>atlassian-bamboo-plugin-dotnet</artifactid> <version>5.11.2-snapshot</version> <packaging>atlassian-plugin</packaging> <name>atlassian bamboo .net plugin</name> <description>plugin bamboo provides .net support</description> <properties> <bamboo.version>5.12.0-snapshot</bamboo.version> <bamboo.data.version>5.10.0</bamboo.data.version> <amps.version>5.0.4</amps.version> <failonmilestoneorreleasecandidatedeps>false</failonmilestoneorreleasecandidatedeps> </properties> <scm> <connection>scm:hg:ssh://hg@bitbucket.org/atlassian/bamboo-dotnet-plugin</connection> <developerconnection>scm:hg:ssh://hg@bitbucket.org/atlassian/bamboo-dotnet-plugin</developerconnection> <url>https://bitbucket.org/atlassian/bamboo-dotnet-plugin/src</url> <tag>head</tag> </scm> <issuemanagement> <system>jira</system> <url>https://jira.atlassian.com/browse/bam</url> </issuemanagement> <licenses> <license> <name>bsd license</name> <url>https://bitbucket.org/atlassian/bamboo-dotnet-plugin</url> </license> </licenses> <developers> <developer> <name>ross rowe</name> </developer> <developer> <name>james william dumay</name> <email>james@atlassian.com</email> </developer> </developers> <contributors> <contributor> <name>marko lahma</name> </contributor> <contributor> <name>krystian brazulewicz</name> <email>kbrazulewicz@atlassian.com</email> </contributor> <contributor> <name>joseph clark</name> <email>jclark@atlassian.com</email> </contributor> </contributors> <repositories> <repository> <id>atlassian-public</id> <url>https://maven.atlassian.com/repository/public</url> <snapshots> <enabled>true</enabled> <updatepolicy>always</updatepolicy> <checksumpolicy>warn</checksumpolicy> </snapshots> <releases> <enabled>true</enabled> <checksumpolicy>warn</checksumpolicy> </releases> </repository> </repositories> <dependencies> <dependency> <groupid>com.atlassian.bamboo</groupid> <artifactid>atlassian-bamboo-api</artifactid> <version>${bamboo.version}</version> <scope>provided</scope> </dependency> <dependency> <groupid>com.atlassian.bamboo</groupid> <artifactid>atlassian-bamboo-core</artifactid> <version>${bamboo.version}</version> <scope>provided</scope> </dependency> <dependency> <groupid>org.apache.commons</groupid> <artifactid>commons-lang3</artifactid> <version>3.4</version> <scope>provided</scope> </dependency> <!-- used .net script , command converters --> <dependency> <groupid>com.atlassian.bamboo.plugins.scripttask</groupid> <artifactid>atlassian-bamboo-plugin-scripttask</artifactid> <version>${bamboo.version}</version> <scope>provided</scope> </dependency> <!-- required accessing windows registry --> <dependency> <groupid>net.java.dev.jna</groupid> <artifactid>jna-platform</artifactid> <version>3.2.7</version> <scope>compile</scope> </dependency> <!-- test dependencies --> <dependency> <groupid>com.atlassian.bamboo</groupid> <artifactid>atlassian-bamboo-test-utils</artifactid> <version>${bamboo.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupid>com.atlassian.bamboo</groupid> <artifactid>atlassian-bamboo-api</artifactid> </exclusion> <exclusion> <groupid>com.google.collections</groupid> <artifactid>google-collections</artifactid> </exclusion> </exclusions> </dependency> <dependency> <groupid>junit</groupid> <artifactid>junit</artifactid> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupid>com.github.stefanbirkner</groupid> <artifactid>system-rules</artifactid> <version>1.5.0</version> <scope>test</scope> </dependency> <dependency> <groupid>org.easymock</groupid> <artifactid>easymock</artifactid> <version>2.4</version> <scope>test</scope> </dependency> <dependency> <groupid>org.easymock</groupid> <artifactid>easymockclassextension</artifactid> <version>2.4</version> <scope>test</scope> </dependency> <dependency> <groupid>org.mockito</groupid> <artifactid>mockito-core</artifactid> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupid>pl.pragmatists</groupid> <artifactid>junitparams</artifactid> <version>1.0.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginmanagement> <plugins> <plugin> <groupid>com.atlassian.maven.plugins</groupid> <artifactid>maven-amps-dispatcher-plugin</artifactid> <version>${amps.version}</version> </plugin> <plugin> <groupid>org.codehaus.mojo</groupid> <artifactid>build-helper-maven-plugin</artifactid> <version>1.8</version> </plugin> </plugins> </pluginmanagement> <plugins> <plugin> <groupid>com.atlassian.maven.plugins</groupid> <artifactid>maven-bamboo-plugin</artifactid> <version>${amps.version}</version> <extensions>true</extensions> <configuration> <productversion>${bamboo.version}</productversion> <productdataversion>${bamboo.data.version}</productdataversion> <extractdependencies>true</extractdependencies> </configuration> </plugin> </plugins> </build> </project>
(this not answer update, couldn't fit inside original question, keep intact post here) update:
i've places following setitngs.xml file in local .m2
directory:
<?xml version="1.0" encoding="utf-8"?> <!-- licensed apache software foundation (asf) under 1 or more contributor license agreements. see notice file distributed work additional information regarding copyright ownership. asf licenses file under apache license, version 2.0 (the "license"); may not use file except in compliance license. may obtain copy of license @ http://www.apache.org/licenses/license-2.0 unless required applicable law or agreed in writing, software distributed under license distributed on "as is" basis, without warranties or conditions of kind, either express or implied. see license specific language governing permissions , limitations under license. --> <!-- | configuration file maven. can specified @ 2 levels: | | 1. user level. settings.xml file provides configuration single user, | , provided in ${user.home}/.m2/settings.xml. | | note: location can overridden cli option: | | -s /path/to/user/settings.xml | | 2. global level. settings.xml file provides configuration maven | users on machine (assuming they're using same maven | installation). it's provided in | ${maven.home}/conf/settings.xml. | | note: location can overridden cli option: | | -gs /path/to/global/settings.xml | | sections in sample file intended give running start @ | getting out of maven installation. appropriate, default | values (values used when setting not specified) provided. | |--> <settings xmlns="http://maven.apache.org/settings/1.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://maven.apache.org/settings/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <!-- localrepository | path local repository maven use store artifacts. | | default: ${user.home}/.m2/repository <localrepository>/path/to/local/repo</localrepository> --> <!-- interactivemode | determine whether maven prompts when needs input. if set false, | maven use sensible default value, perhaps based on other setting, | parameter in question. | | default: true <interactivemode>true</interactivemode> --> <!-- offline | determines whether maven should attempt connect network when executing build. | have effect on artifact downloads, artifact deployment, , others. | | default: false <offline>false</offline> --> <!-- plugingroups | list of additional group identifiers searched when resolving plugins prefix, i.e. | when invoking command line "mvn prefix:goal". maven automatically add group identifiers | "org.apache.maven.plugins" , "org.codehaus.mojo" if these not contained in list. |--> <plugingroups> <!-- plugingroup | specifies further group identifier use plugin lookup. <plugingroup>com.your.plugins</plugingroup> --> <!-- atlassian maven plugins group used atlassian maven plugins --> <plugingroup>com.atlassian.maven.plugins</plugingroup> </plugingroups> <!-- proxies | list of proxies can used on machine connect network. | unless otherwise specified (by system property or command-line switch), first proxy | specification in list marked active used. |--> <proxies> <!-- proxy | specification 1 proxy, used in connecting network. | <proxy> <id>optional</id> <active>true</active> <protocol>http</protocol> <username>proxyuser</username> <password>proxypass</password> <host>proxy.host.net</host> <port>80</port> <nonproxyhosts>local.net|some.host.com</nonproxyhosts> </proxy> --> </proxies> <!-- servers | list of authentication profiles, keyed server-id used within system. | authentication profiles can used whenever maven must make connection remote server. |--> <servers> <!-- server | specifies authentication information use when connecting particular server, identified | unique name within system (referred 'id' attribute below). | | note: should either specify username/password or privatekey/passphrase, since these pairings | used together. | <server> <id>deploymentrepo</id> <username>repouser</username> <password>repopwd</password> </server> --> <!-- sample, using keys authenticate. <server> <id>siteserver</id> <privatekey>/path/to/private/key</privatekey> <passphrase>optional; leave empty if not used.</passphrase> </server> --> </servers> <!-- mirrors | list of mirrors used in downloading artifacts remote repositories. | | works this: pom may declare repository use in resolving artifacts. | however, repository may have problems heavy traffic @ times, people have mirrored | several places. | | repository definition have unique id, can create mirror reference | repository, used alternate download site. mirror site preferred | server repository. |--> <mirrors> <!-- mirror | specifies repository mirror site use instead of given repository. repository | mirror serves has id matches mirrorof element of mirror. ids used | inheritance , direct lookup purposes, , must unique across set of mirrors. | <mirror> <id>mirrorid</id> <mirrorof>repositoryid</mirrorof> <name>human readable name mirror.</name> <url>http://my.repository.com/repo/path</url> </mirror> --> </mirrors> <!-- profiles | list of profiles can activated in variety of ways, , can modify | build process. profiles provided in settings.xml intended provide local machine- | specific paths , repository locations allow build work in local environment. | | example, if have integration testing plugin - cactus - needs know | tomcat instance installed, can provide variable here such variable | dereferenced during build process configure cactus plugin. | | noted above, profiles can activated in variety of ways. 1 way - activeprofiles | section of document (settings.xml) - discussed later. way | relies on detection of system property, either matching particular value property, | or merely testing existence. profiles can activated jdk version prefix, | value of '1.4' might activate profile when build executed on jdk version of '1.4.2_07'. | finally, list of active profiles can specified directly command line. | | note: profiles defined in settings.xml, restricted specifying artifact | repositories, plugin repositories, , free-form properties used configuration | variables plugins in pom. | |--> <profiles> <!-- profile | specifies set of introductions build process, activated using 1 or more of | mechanisms described above. inheritance purposes, , activate profiles via <activatedprofiles/> | or command line, profiles have have id unique. | | encouraged best practice profile identification use consistent naming convention | profiles, such 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc. | make more intuitive understand set of introduced profiles attempting | accomplish, particularly when have list of profile id's debug. | | profile example uses jdk version trigger activation, , provides jdk-specific repo. <profile> <id>jdk-1.4</id> <activation> <jdk>1.4</jdk> </activation> <repositories> <repository> <id>jdk14</id> <name>repository jdk 1.4 builds</name> <url>http://www.myhost.com/maven/jdk14</url> <layout>default</layout> <snapshotpolicy>always</snapshotpolicy> </repository> </repositories> </profile> --> <!-- | here profile, activated system property 'target-env' value of 'dev', | provides specific path tomcat instance. use this, plugin configuration | might hypothetically like: | | ... | <plugin> | <groupid>org.myco.myplugins</groupid> | <artifactid>myplugin</artifactid> | | <configuration> | <tomcatlocation>${tomcatpath}</tomcatlocation> | </configuration> | </plugin> | ... | | note: if wanted inject configuration whenever set 'target-env' | anything, leave off <value/> inside activation-property. | <profile> <id>env-dev</id> <activation> <property> <name>target-env</name> <value>dev</value> </property> </activation> <properties> <tomcatpath>/path/to/tomcat/instance</tomcatpath> </properties> </profile> --> <!-- default profile containing atlassian servers --> <profile> <id>defaultprofile</id> <activation> <activebydefault>true</activebydefault> </activation> <repositories> <repository> <id>atlassian-public</id> <url>https://maven.atlassian.com/repository/public</url> <snapshots> <enabled>true</enabled> <updatepolicy>never</updatepolicy> <checksumpolicy>warn</checksumpolicy> </snapshots> <releases> <enabled>true</enabled> <checksumpolicy>warn</checksumpolicy> </releases> </repository> <repository> <id>atlassian-plugin-sdk</id> <url>file://${env.atlas_home}/repository</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> <checksumpolicy>warn</checksumpolicy> </releases> </repository> </repositories> <pluginrepositories> <pluginrepository> <id>atlassian-public</id> <url>https://maven.atlassian.com/repository/public</url> <releases> <enabled>true</enabled> <checksumpolicy>warn</checksumpolicy> </releases> <snapshots> <updatepolicy>never</updatepolicy> <checksumpolicy>warn</checksumpolicy> </snapshots> </pluginrepository> <pluginrepository> <id>atlassian-plugin-sdk</id> <url>file://${env.atlas_home}/repository</url> <releases> <enabled>true</enabled> <checksumpolicy>warn</checksumpolicy> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginrepository> </pluginrepositories> <properties> <downloadsources>true</downloadsources> <downloadjavadocs>true</downloadjavadocs> </properties> </profile> </profiles> <!-- activeprofiles | list of profiles active builds. | <activeprofiles> <activeprofile>alwaysactiveprofile</activeprofile> <activeprofile>anotheralwaysactiveprofile</activeprofile> </activeprofiles> --> </settings>
this settings.xml file atlassian sdk. able download way nexus-staging-maven-plugin:jar:1.6.5-atlassian-2
package. following i've run mvn install
after clearing local .m2\repository\com\atlassian\bamboo
directory because of errors regarding these packages, , run mvn install
again , maven threw following errors:
[info] ------------------------------------------------------------------------ [info] build failure [info] ------------------------------------------------------------------------ [info] total time: 12.857 s [info] finished at: 2016-07-12t15:27:13+03:00 [info] final memory: 14m/34m [info] ------------------------------------------------------------------------ [error] failed execute goal on project atlassian-bamboo-plugin-dotnet: not resolve dependencies project com.atlassian.bamboo.plugins.dotnet:atlassian-bamboo-plugin-dotnet:atlassian-plugin:5.11.2-snapshot: following artifacts not resolved: com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-core:jar:5.12.0-snapshot, com.atlassian.bamboo.plugins.scripttask:atlassian-bamboo-plugin-scripttask:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-test-utils:jar:5.12.0-snapshot: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) -> [help 1] org.apache.maven.lifecycle.lifecycleexecutionexception: failed execute goal on project atlassian-bamboo-plugin-dotnet: not resolve dependencies project com.atlassian.bamboo.plugins.dotnet:atlassian-bamboo-plugin-dotnet:atlassian-plugin:5.11.2-snapshot: following artifacts not resolved: com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-core:jar:5.12.0-snapshot, com.atlassian.bamboo.plugins.scripttask:atlassian-bamboo-plugin-scripttask:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-test-utils:jar:5.12.0-snapshot: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) @ org.apache.maven.lifecycle.internal.lifecycledependencyresolver.getdependencies(lifecycledependencyresolver.java:221) @ org.apache.maven.lifecycle.internal.lifecycledependencyresolver.resolveprojectdependencies(lifecycledependencyresolver.java:127) @ org.apache.maven.lifecycle.internal.mojoexecutor.ensuredependenciesareresolved(mojoexecutor.java:245) @ org.apache.maven.lifecycle.internal.mojoexecutor.execute(mojoexecutor.java:199) @ org.apache.maven.lifecycle.internal.mojoexecutor.execute(mojoexecutor.java:153) @ org.apache.maven.lifecycle.internal.mojoexecutor.execute(mojoexecutor.java:145) @ org.apache.maven.lifecycle.internal.lifecyclemodulebuilder.buildproject(lifecyclemodulebuilder.java:116) @ org.apache.maven.lifecycle.internal.lifecyclemodulebuilder.buildproject(lifecyclemodulebuilder.java:80) @ org.apache.maven.lifecycle.internal.builder.singlethreaded.singlethreadedbuilder.build(singlethreadedbuilder.java:51) @ org.apache.maven.lifecycle.internal.lifecyclestarter.execute(lifecyclestarter.java:128) @ org.apache.maven.defaultmaven.doexecute(defaultmaven.java:307) @ org.apache.maven.defaultmaven.doexecute(defaultmaven.java:193) @ org.apache.maven.defaultmaven.execute(defaultmaven.java:106) @ org.apache.maven.cli.mavencli.execute(mavencli.java:863) @ org.apache.maven.cli.mavencli.domain(mavencli.java:288) @ org.apache.maven.cli.mavencli.main(mavencli.java:199) @ sun.reflect.nativemethodaccessorimpl.invoke0(native method) @ sun.reflect.nativemethodaccessorimpl.invoke(unknown source) @ sun.reflect.delegatingmethodaccessorimpl.invoke(unknown source) @ java.lang.reflect.method.invoke(unknown source) @ org.codehaus.plexus.classworlds.launcher.launcher.launchenhanced(launcher.java:289) @ org.codehaus.plexus.classworlds.launcher.launcher.launch(launcher.java:229) @ org.codehaus.plexus.classworlds.launcher.launcher.mainwithexitcode(launcher.java:415) @ org.codehaus.plexus.classworlds.launcher.launcher.main(launcher.java:356) caused by: org.apache.maven.project.dependencyresolutionexception: not resolve dependencies project com.atlassian.bamboo.plugins.dotnet:atlassian-bamboo-plugin-dotnet:atlassian-plugin:5.11.2-snapshot: following artifacts not resolved: com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-core:jar:5.12.0-snapshot, com.atlassian.bamboo.plugins.scripttask:atlassian-bamboo-plugin-scripttask:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-test-utils:jar:5.12.0-snapshot: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) @ org.apache.maven.project.defaultprojectdependenciesresolver.resolve(defaultprojectdependenciesresolver.java:211) @ org.apache.maven.lifecycle.internal.lifecycledependencyresolver.getdependencies(lifecycledependencyresolver.java:195) ... 23 more caused by: org.eclipse.aether.resolution.dependencyresolutionexception: following artifacts not resolved: com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-core:jar:5.12.0-snapshot, com.atlassian.bamboo.plugins.scripttask:atlassian-bamboo-plugin-scripttask:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-test-utils:jar:5.12.0-snapshot: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) @ org.eclipse.aether.internal.impl.defaultrepositorysystem.resolvedependencies(defaultrepositorysystem.java:384) @ org.apache.maven.project.defaultprojectdependenciesresolver.resolve(defaultprojectdependenciesresolver.java:205) ... 24 more caused by: org.eclipse.aether.resolution.artifactresolutionexception: following artifacts not resolved: com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-core:jar:5.12.0-snapshot, com.atlassian.bamboo.plugins.scripttask:atlassian-bamboo-plugin-scripttask:jar:5.12.0-snapshot, com.atlassian.bamboo:atlassian-bamboo-test-utils:jar:5.12.0-snapshot: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) @ org.eclipse.aether.internal.impl.defaultartifactresolver.resolve(defaultartifactresolver.java:444) @ org.eclipse.aether.internal.impl.defaultartifactresolver.resolveartifacts(defaultartifactresolver.java:246) @ org.eclipse.aether.internal.impl.defaultrepositorysystem.resolvedependencies(defaultrepositorysystem.java:367) ... 25 more caused by: org.eclipse.aether.transfer.artifactnotfoundexception: not find artifact com.atlassian.bamboo:atlassian-bamboo-api:jar:5.12.0-snapshot in atlassian-public (https://maven.atlassian.com/repository/public) @ org.eclipse.aether.connector.basic.artifacttransportlistener.transferfailed(artifacttransportlistener.java:39) @ org.eclipse.aether.connector.basic.basicrepositoryconnector$taskrunner.run(basicrepositoryconnector.java:355) @ org.eclipse.aether.util.concurrency.runnableerrorforwarder$1.run(runnableerrorforwarder.java:67) @ java.util.concurrent.threadpoolexecutor.runworker(unknown source) @ java.util.concurrent.threadpoolexecutor$worker.run(unknown source) @ java.lang.thread.run(unknown source) [error] [error] [error] more information errors , possible solutions, please read following articles: [error] [help 1] http://cwiki.apache.org/confluence/display/maven/dependencyresolutionexception
Comments
Post a Comment