[
https://issues.jboss.org/browse/JBDS-3598?page=com.atlassian.jira.plugin....
]
Nick Boldt commented on JBDS-3598:
----------------------------------
Have tried to disable a number of the build-time mojos:
{code}
<profile>
<id>local-sources</id>
<properties>
<skipBaselineComparison>true</skipBaselineComparison>
<mavanagaiata.skip>true</mavanagaiata.skip>
</properties>
<build>
<plugins>
<!-- disable git-based source reference generation in MANIFEST.MF -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
<version>${tychoVersion}</version>
<configuration>
<sourceReferences>
<generate>false</generate>
</sourceReferences>
</configuration>
</plugin>
<!-- disable this from the site/pom.xml -->
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.13</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.tools.tycho-plugins</groupId>
<artifactId>repository-utils</artifactId>
<version>${jbossTychoPluginsVersion}</version>
<executions>
<execution>
<id>generate-facade</id>
<phase>package</phase>
<goals>
<goal>generate-repository-facade</goal>
</goals>
<configuration>
<skip>true</skip>
<skipBuildInfo>true</skipBuildInfo>
<skipWebContentGeneration>true</skipWebContentGeneration>
</configuration>
</execution>
<execution>
<id>fetch-sources</id>
<phase>package</phase>
<goals>
<goal>fetch-sources-from-manifests</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
{code}
However...
{code}
mvn clean install
-Djbosstools-site=jar:file:///home/nboldt/tmp/jbosstools-4.3.1.Beta2-updatesite-core.zip\!/
-Plocal-sources
...
[ERROR] Failed to execute goal
org.jboss.tools.tycho-plugins:repository-utils:0.23.3-SNAPSHOT:fetch-sources-from-manifests
(fetch-sources) on project product: Error loading
/home/nboldt/tmp/jboss-devstudio-9.1.0.Beta2-src/jboss-devstudio-9.1.0.Beta2-src/jbdevstudio-product-e313a21b1694f8635fa056390641aeef6d44f198/target/git.properties:
/home/nboldt/tmp/jboss-devstudio-9.1.0.Beta2-src/jboss-devstudio-9.1.0.Beta2-src/jbdevstudio-product-e313a21b1694f8635fa056390641aeef6d44f198/target/git.properties
(No such file or directory) -> [Help 1]
{code}
So... need to add a proper skip flag to fetch-sources-from-manifests to support disabling
it, or else generate an empty git.properties file.
Error while building Jboss developer studio 9.1.0 Beta 2 from source
--------------------------------------------------------------------
Key: JBDS-3598
URL:
https://issues.jboss.org/browse/JBDS-3598
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Components: build
Affects Versions: 9.1.0.Beta2
Environment: RHEL 7.1 PPC64le and Ubuntu x86_64
Maven - 3.3.9
JDK - 1.8
Reporter: Deepali Chourasia
Assignee: Nick Boldt
Fix For: 9.1.0.CR1, 10.0.0.Alpha1
Attachments: Jboss_devstudio_9.1.0_Beta2_buildlog.txt
I have downloaded jboss-devstudio-9.1.0.Beta2-src.zip and am building it from source.
The build fails with the following error:
[ERROR] Failed to execute goal
org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin (default-package-plugin) on
project com.jboss.devstudio.core: Execution default-package-plugin of goal
org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin failed: One of setGitDir or
setWorkTree must be called. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal
org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin (default-package-plugin) on
project com.jboss.devstudio.core: Execution default-package-plugin of goal
org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin failed: One of setGitDir or
setWorkTree must be called.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at
org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution
default-package-plugin of goal
org.eclipse.tycho:tycho-packaging-plugin:0.24.0:package-plugin failed: One of setGitDir or
setWorkTree must be called.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)