Il 26/09/2013 21:32, Tim St Clair ha scritto:
Any takers?  https://bugzilla.redhat.com/show_bug.cgi?id=1010512
Depends on: https://bugzilla.redhat.com/show_bug.cgi?id=994152

yes when available rhbz#994152 at least in rawhide
but you should install java lubraries manually in javadir with proper pom and depmap

src/Makefile.am
maven-install: $(MESOS_JAR) $(MESOS_SOURCES_JAR) java/mesos.pom
mvn install:install-file -Dfile=$(MESOS_JAR) \
          -Dsources=$(MESOS_SOURCES_JAR) -DpomFile=java/mesos.pom

for Fedora only should be removed or changed with the proper mvn bin file (mvn-rpmbuild)
but for this pb ask to mizdebsk

jenkins/Makefile.am
# Defines a target to build the Jenkins plugin for Mesos.
# This will create ./target/mesos.hpi that you can deploy to Jenkins.
jenkins: $(MESOS_LIBRARY) $(MESOS_JAR)
if test "$(top_srcdir)" != "$(top_builddir)"; then \
          cp -rp $(srcdir)/src .; \
        fi
mkdir -p $(TARGET_LIBS_DIR) && \
cp $(abs_top_builddir)/src/.libs/$(MESOS_LIBRARY) $(TARGET_LIBS_DIR) && \
mvn package
should be mvn-build (without 'package' parameter)
regards
gil