Closed abhishekmaity closed 8 months ago
ci.jenkins.io
Getting the following maven error(s) at pom.xml when trying to build backend-extension-indexer locally
Project 'org.jenkins-ci:jenkins:1.102' not found from
Project 'org.jenkins-ci:jenkins:1.102' not found
<groupId>org.jenkins-ci</groupId> <artifactId>jenkins</artifactId> <version>1.102</version>
Plugin 'maven-jar-plugin:' not found from
Plugin 'maven-jar-plugin:' not found
<plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>org.jenkinsci.extension_indexer.ExtensionPointListGenerator</mainClass> </manifest> </archive> </configuration> </plugin>
Plugin 'maven-assembly-plugin:' not found from
Plugin 'maven-assembly-plugin:' not found
<plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <!-- this is used for inheritance merges --> <id>make-assembly</id> <goals> <goal>single</goal> </goals> <!-- bind to the packaging phase --> <phase>package</phase> <configuration> <descriptors> <descriptor>src/assembly.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin>
Observation: I have found out that the target bytecode version for this [extention-indicator] is 11
Step 1: fork the project Step 2: clone the project locally (I am using IntelliJ IDE) Step 3: Perform Maven update and mvn clean install
mvn clean install
Please find below the screen I am getting
Transferred from jenkins-infra/helpdesk as it isn't an infrastructure issue.
I re-ran mvn clean install. The issue got resolved.
Service(s)
ci.jenkins.io
Summary
Getting the following maven error(s) at pom.xml when trying to build backend-extension-indexer locally
Project 'org.jenkins-ci:jenkins:1.102' not found
fromPlugin 'maven-jar-plugin:' not found
fromPlugin 'maven-assembly-plugin:' not found
fromObservation: I have found out that the target bytecode version for this [extention-indicator] is 11
Reproduction steps
Step 1: fork the project Step 2: clone the project locally (I am using IntelliJ IDE) Step 3: Perform Maven update and
mvn clean install
Please find below the screen I am getting