Library Dependency with Maven 1

Hello,
I am trying to compile a java application using Maven1.
My local repository for the needed libraries is in a folder named lib, like this:
lib/ (some non java libraries used by other apps)
java/ (.jars used by java apps, mine and others, I cannot change this)
- mylibrary.jar
- other.jar
My project.xml:
<dependency>
     <groupId>java</groupId>
     <artifactId>mylibrary</artifactId>
     <version>1</version>
     <jar>mylibrary.jar</jar>
</dependency>When Maven begins to compile it looks for the libreries in the path lib/java/jars/milibrary.jar,
and it is not there because I don't have the folder named jars. Is there any way to configure the project.xml for Maven 1 to look just in lib/java?
Any way to establish the absolute path of the jar?

Desiree wrote:
I can't change the structure of the folder because another apps uses that libreries in that specific path.You're mis-using the tool, then. Your deployment shouldn't be dependent on the build tool's layout, nor vice-versa. The Maven repo is where Maven puts dependencies for its own use it's not where your app should be getting them from. I've seen all sorts of odd errors because of that with Maven2. There will be a task, or some other way, for you to ask Maven to put the necessary dependencies somewhere else. Find out what that is, and use it. Don't go reaching straight into the repo for them.

Similar Messages

  • How team should work with maven

    Could somebody to explain how the team should work with maven.
    For example.
    10 developers and 1 team lead are working together.
    Everyones has the own module in development.
    Next, one made the changes in his module and marked it like
    <version>1.3</version>? And say to neighbor whous modul is depend on his: "will be make your modul to point version 1.3 for my
    <artifactId>his-app</artifactId>
    <version>1.3</version> ? Or how?
    If he to point the unexisting version the maven will swear.
    And next. There's something pom.xml for team lead on top level of another modules of developers which team lead to use for assebling?
    Help please to understand how to use this framework

    It sounds like the functionality you are looking for is what maven calls snapshots. This allows developers to build and deploy the latest code base on the fly and maven can grab the latest releases without having to continually update the pom.

  • My PC has broken, if I buy a Mac, can I transfer my entire library over with ease?

    My PC has broken, if I buy a Mac, can I transfer my entire library over with ease?

    That depends. What is broken on the PC? If the hard drive has failed and you do not have a backup, you will need to look into data recovery services.
    It's easy to move stuff over from a working PC. One that is not functioning is a bit more difficult.
    Take a look at this Apple article about data migration from a PC, it may be useful.
    Best of luck.

  • Build problem with Maven

    Hi.
    I have upgraded from 1.5 APT to the 1.6 method of doing compile time annotations, and I am runing into a problem trying to build a jar containing my annotations processor.
    I get the error from maven (mvn package)
    [INFO] Compilation failure
    error: Bad service configuration file, or exception thrown while constructing Processor object: javax.annotation.processing.Processor: Provider annotations.processing.processors.CodeAnnotationProcessor not found
    I have the following directory structure
    src
    --main
    ----java
    ------annotations
    --------processing
    ----------processors
    ------------CodeAnnotationProcessor.java
    ----------annotations
    ------------CodeAnnotation.java
    ----resources
    ------META-INF
    --------service
    ----------javax.annotation.processing.Processor
    I build this with the following with maven
    <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>
        <groupId>mygroup</groupId>
        <artifactId>annotations-processor</artifactId>
        <packaging>jar</packaging>
        <version>1.0.0</version>
        <name>annotations-processor</name>
        <url>http://maven.apache.org</url>
        <dependencies>
            <dependency>
                <groupId>com.sun</groupId>
                <artifactId>tools</artifactId>
                <version>1.4.2</version>
                <scope>system</scope>
                <systemPath>C:/Java/jdk1.6.0_10/lib/tools.jar</systemPath>
            </dependency>
        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </project>The javax.annotation.processing.Processor file contains
    annotations.processing.processors.CodeAnnotationProcessorAny my
    package annotations.processing.processors;
    import javax.annotation.processing.AbstractProcessor;
    import javax.annotation.processing.RoundEnvironment;
    import javax.annotation.processing.SupportedSourceVersion;
    import javax.annotation.processing.SupportedAnnotationTypes;
    import javax.lang.model.element.TypeElement;
    import javax.lang.model.SourceVersion;
    import java.util.Set;
    @SupportedAnnotationTypes(
            "annotations.processing.annotations.CodeAnnotation")
    @SupportedSourceVersion(SourceVersion.RELEASE_6)
    public class CodeAnnotationProcessor extends AbstractProcessor {
        public boolean process(Set<? extends TypeElement> annotations,
                               RoundEnvironment roundEnv) {
            return true;
    }And my CodeAnnotation is as follows
    package annotations.processing.annotations;
    import java.lang.annotation.Target;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.SOURCE)
    public @interface CodeAnnotation {
    }

    Milesy wrote:
    Hi.
    I have upgraded from 1.5 APT to the 1.6 method of doing compile time annotations, and I am runing into a problem trying to build a jar containing my annotations processor.
    I get the error from maven (mvn package)
    [INFO] Compilation failure
    error: Bad service configuration file, or exception thrown while constructing Processor object: javax.annotation.processing.Processor: Provider annotations.processing.processors.CodeAnnotationProcessor not foundFor me it worked when I used the settings
    <plugins>
      <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.6</source>
            <target>1.6</target>
            <fork>true</fork>
            <executable>${java.home}/../bin/javac</executable>
            <compilerArgument>-proc:none</compilerArgument>
          </configuration>
        </plugin>
    </plugins>
    ...Forking the compiler is perhaps not the best option, but its just for the annotation processor.

  • Jdeveloper with maven dependencies

    hello all,
    I'm starting with jdeveloper did the integration with maven, but the dependencies are not downloaded to the project trying to add the dependency. Can someone help me?

    If you wish to add a dependency from maven's local repository you can always modify the pom file directly.
    Have you done this? is it not working for you?
    Have you tried adding something like
    <dependencies>
    <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>3.8.1</version>
    <scope>test</scope>
    </dependency>
    </dependencies>
    to your projects pom file?

  • JDeveloper with maven.

    hello all,
    I'm starting with jdeveloper did the integration with maven, but the dependencies are not downloaded to the project, and when run the application does not find the dependency. Can someone help me?

    Not sure how this is related to the forum topic. Pl post in the JDeveloper forum (JDeveloper and ADF for a better/faster response.
    Srini

  • I was trying to add an itunes library to my computer, and now my itunes library can not be found. An ipod can be synced with only one iTunes library at a time. How can I find my Itunes library, complete with playlists ?

    I was trying to add an itunes library to my computer, and now my itunes library can not be found. An ipod can be synced with only one iTunes library at a time. How can I find my Itunes library, complete with playlists ?

    I have the same problem too and tried alot of things like time zone , restarting or changing DNS of wifi connection to 8.8.8.8 still nothing happens .. !!
    iPhone 5s, iOS 8.3

  • How can I use a shared library made with the application builder?

    Hi,
    I am using LabVIEW 7.1 running on Slackware 10.1 (kernel 2.4.29) and I am trying to call a graph display from a C program that I use for debugging VME access from a VMIVME controler. So using the application builder I built the VI as a shared library (graph.vi -> graph.so) containing a function called "graph". In my main program the call to the dlopen fails with the error: "graph.so: undefined symbol: UninitLVClient". When I examin graph.so with nm I see that UninitLVClient and other LabVIEW functions are indeed undefined and using ldd shows that graph.so has dependencies only on libc.so.* and *linux*.so.* but not on LabVIEW related stuff. Those functions are defined in the liblv.so that's in the cintools directory but I have no idea if the user is supposed to use that.
    So I think I am missing an important concept here. Can somebody help or direct me to some documentation (I found lots of information about how to link external code to LabVIEW but nothing about how to link LabVIEW code to an external program)?

    Thanks Watermann,
    your message has been very useful so now I am linking to the proper library but I still have problems when trying to load dynamically the shared library produced with LabVIEW. It is strange that I could successfully load the lvrt library at loading time but it does not work when I am loading the library at execution time.
    I made a small LabVIEW program that prints a hello window and I am calling it from a C program. In the first program main.c I am linking to the lvrt library at loading time and it works but in the second one I am linking dynamically at execution time and it does not work. For my work I need to be able to load code done in LabVIEW at execution time. Any help is appreciated!
    Program main.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include "hello.h" // got this from the LabVIEW builder, i.e. when I made the hello.so
    int main(void)
    printf("Hello from C!\nLets call LabVIEW now\n");
    hello();
    printf("Bye ... \n");
    return 0;
    The command to compile main.c, i.e. linking shared library lvrt when loading main program:
    gcc -Wall -I /usr/local/lv71/cintools/ -o main main.c hello.so -l lvrt
    The LD_LIBRARY_PATH has been defined and exported:
    $ LD_LIBRARY_PATH=$PWD
    $ export LD_LIBRARY_PATH
    IT WORKS!
    Program main2.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include
    int main(void)
    void * h_lvrt;
    void * h_hello;
    void (* hello)(void);
    char * error;
    printf("Hello from C!\nLets call LabVIEW now\n");
    // open LabVIEW RunTime shared library
    // in my computer located at /usr/local/lib/liblvrt.so
    h_lvrt = dlopen("/usr/local/lib/liblvrt.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    printf("error : could not open LabVIEW RunTime library\n");
    printf("%s\n", error);
    return 1;
    // open hello shared library
    // in my computer located at /home/darss/lv_call/hello.so
    h_hello = dlopen("hello.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not open hello library\n");
    printf("%s\n", error);
    return 1;
    // get function hello from library hello.so
    hello = dlsym(h_hello, "hello");
    // check for error
    error = dlerror();
    if (error) {
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not get the hello function\n");
    printf("%s\n", error);
    return 1;
    // call hello function
    hello();
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("Bye ... \n");
    return 0;
    The command to compile main2.c, i.e. dynamically linking library lvrt at execution of main2 program:
    gcc -Wall -o main2 main2.c -l dl
    The LD_LIBRARY_PATH still defined and exported.
    IT DOES NOT WORK!
    Program output:
    Hello from C!
    Lets call LabVIEW now
    error : could not open hello library
    /home/darss/lv_call/hello.so: undefined symbol: WaitLVDLLReady

  • Can I share music library's with different apple ID accounts

    I would like to share music library's with my daughter. However, she has a differet User ID then myself. Is this still possible?
    So far I have set up home sharing and auhorized her computer.
    I can see and play the music in her library.
    However, I am not able to copy any of her purchased music into my library.

    It's ok to share the same AppleID for iTunes.  Use Separate ID's for iCloud, iMessage, and Facetime. 

  • FlexPMD maven plugin no longer useable with Maven due to imcompatible binaries?

    I am using Maven 2.2.1 with FlexPMD 1.2 and Flexmojos 3.7.1, with the maven-site-plugin 3.0
    I get the following error:
    [INFO] [site:site {execution: default-site}]
    [FATAL ERROR] org.apache.maven.plugins.site.SiteMojo#execute() caused a linkage
    error (java.lang.AbstractMethodError) and may be out-of-date. Check the realms:
    [FATAL ERROR] Plugin realm = app0.child-container[org.apache.maven.plugins:maven
    -site-plugin:3.0]
    urls[0] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/plugins/mav
    en-site-plugin/3.0/maven-site-plugin-3.0.jar
    urls[1] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/reporting/m
    aven-reporting-exec/1.0.1/maven-reporting-exec-1.0.1.jar
    urls[2] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus/plexus-u
    tils/1.5.10/plexus-utils-1.5.10.jar
    urls[3] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/maven-setti
    ngs-builder/3.0/maven-settings-builder-3.0.jar
    urls[4] = file:/C:/dreammachine/cache/m2/repository/org/apache/velocity/velocity
    /1.5/velocity-1.5.jar
    urls[5] = file:/C:/dreammachine/cache/m2/repository/commons-collections/commons-
    collections/3.2.1/commons-collections-3.2.1.jar
    urls[6] = file:/C:/dreammachine/cache/m2/repository/commons-lang/commons-lang/2.
    5/commons-lang-2.5.jar
    urls[7] = file:/C:/dreammachine/cache/m2/repository/oro/oro/2.0.8/oro-2.0.8.jar
    urls[8] = file:/C:/dreammachine/cache/m2/repository/velocity/velocity/1.5/veloci
    ty-1.5.jar
    urls[9] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxia
    -core/1.2/doxia-core-1.2.jar
    urls[10] = file:/C:/dreammachine/cache/m2/repository/xerces/xercesImpl/2.9.1/xer
    cesImpl-2.9.1.jar
    urls[11] = file:/C:/dreammachine/cache/m2/repository/xml-apis/xml-apis/1.3.04/xm
    l-apis-1.3.04.jar
    urls[12] = file:/C:/dreammachine/cache/m2/repository/org/apache/httpcomponents/h
    ttpclient/4.0.2/httpclient-4.0.2.jar
    urls[13] = file:/C:/dreammachine/cache/m2/repository/org/apache/httpcomponents/h
    ttpcore/4.0.1/httpcore-4.0.1.jar
    urls[14] = file:/C:/dreammachine/cache/m2/repository/commons-codec/commons-codec
    /1.3/commons-codec-1.3.jar
    urls[15] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxi
    a-module-xhtml/1.2/doxia-module-xhtml-1.2.jar
    urls[16] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxi
    a-module-apt/1.2/doxia-module-apt-1.2.jar
    urls[17] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxi
    a-module-xdoc/1.2/doxia-module-xdoc-1.2.jar
    urls[18] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxi
    a-module-fml/1.2/doxia-module-fml-1.2.jar
    urls[19] = file:/C:/dreammachine/cache/m2/repository/javax/servlet/servlet-api/2
    .5/servlet-api-2.5.jar
    urls[20] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxi
    a-decoration-model/1.2/doxia-decoration-model-1.2.jar
    urls[21] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/doxia/doxi
    a-site-renderer/1.2/doxia-site-renderer-1.2.jar
    urls[22] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus/plexus-
    i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar
    urls[23] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus/plexus-
    velocity/1.1.8/plexus-velocity-1.1.8.jar
    urls[24] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/shared/mav
    en-doxia-tools/1.4/maven-doxia-tools-1.4.jar
    urls[25] = file:/C:/dreammachine/cache/m2/repository/commons-io/commons-io/1.4/c
    ommons-io-1.4.jar
    urls[26] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus/plexus-
    archiver/1.0/plexus-archiver-1.0.jar
    urls[27] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus/plexus-
    io/1.0/plexus-io-1.0.jar
    urls[28] = file:/C:/dreammachine/cache/m2/repository/org/mortbay/jetty/jetty/6.1
    .25/jetty-6.1.25.jar
    urls[29] = file:/C:/dreammachine/cache/m2/repository/org/mortbay/jetty/jetty-uti
    l/6.1.25/jetty-util-6.1.25.jar
    urls[30] = file:/C:/dreammachine/cache/m2/repository/org/mortbay/jetty/servlet-a
    pi/2.5-20081211/servlet-api-2.5-20081211.jar
    [FATAL ERROR] Container realm = plexus.core
    urls[0] = file:/C:/dreammachine/tools/m2/lib/maven-2.2.1-uber.jar
    [INFO] ------------------------------------------------------------------------
    [ERROR] FATAL ERROR
    [INFO] ------------------------------------------------------------------------
    [INFO] null
    [INFO] ------------------------------------------------------------------------
    [INFO] Trace
    java.lang.AbstractMethodError
            at org.apache.maven.plugins.site.AbstractSiteRenderingMojo.getReports(Ab
    stractSiteRenderingMojo.java:246)
            at org.apache.maven.plugins.site.SiteMojo.execute(SiteMojo.java:121)
            at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPlugi
    nManager.java:490)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Defa
    ultLifecycleExecutor.java:694)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLi
    fecycle(DefaultLifecycleExecutor.java:556)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(Defau
    ltLifecycleExecutor.java:535)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHan
    dleFailures(DefaultLifecycleExecutor.java:387)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmen
    ts(DefaultLifecycleExecutor.java:348)
            at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLi
    If I revert to maven-site-plugin 2.1 this issue disappears, but I then get the error reported here:
    https://issues.sonatype.org/browse/FLEXMOJOS-310?page=com.atlassian.jira.plugin.system.iss uetabpanels:comment-tabpanel#issue-tabs
    If I migrate to maven 3.0.3 with maven-site-plugin 3.0 I get the following error:
    [INFO] configuring report plugin com.adobe.ac:flex-pmd-maven-plugin:1.2
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 1:31.730s
    [INFO] Finished at: Tue Sep 27 17:21:49 BST 2011
    [INFO] Final Memory: 21M/243M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.0:si
    te (default-site) on project cafe-parsley: Execution default-site of goal org.ap
    ache.maven.plugins:maven-site-plugin:3.0:site failed: An API incompatibility was
    encountered while executing org.apache.maven.plugins:maven-site-plugin:3.0:site
    : java.lang.AbstractMethodError: null
    [ERROR] -----------------------------------------------------
    [ERROR] realm =    plugin>org.apache.maven.plugins:maven-site-plugin:3.0
    [ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
    [ERROR] urls[0] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/plu
    gins/maven-site-plugin/3.0/maven-site-plugin-3.0.jar
    [ERROR] urls[1] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/rep
    orting/maven-reporting-exec/1.0.1/maven-reporting-exec-1.0.1.jar
    [ERROR] urls[2] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/rep
    orting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar
    [ERROR] urls[3] = file:/C:/dreammachine/cache/m2/repository/org/apache/velocity/
    velocity/1.5/velocity-1.5.jar
    [ERROR] urls[4] = file:/C:/dreammachine/cache/m2/repository/oro/oro/2.0.8/oro-2.
    0.8.jar
    [ERROR] urls[5] = file:/C:/dreammachine/cache/m2/repository/velocity/velocity/1.
    5/velocity-1.5.jar
    [ERROR] urls[6] = file:/C:/dreammachine/cache/m2/repository/org/sonatype/aether/
    aether-util/1.7/aether-util-1.7.jar
    [ERROR] urls[7] = file:/C:/dreammachine/cache/m2/repository/org/sonatype/sisu/si
    su-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
    [ERROR] urls[8] = file:/C:/dreammachine/cache/m2/repository/org/sonatype/sisu/si
    su-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
    [ERROR] urls[9] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus/
    plexus-interpolation/1.14/plexus-interpolation-1.14.jar
    [ERROR] urls[10] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus
    /plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
    [ERROR] urls[11] = file:/C:/dreammachine/cache/m2/repository/org/sonatype/plexus
    /plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar
    [ERROR] urls[12] = file:/C:/dreammachine/cache/m2/repository/org/sonatype/plexus
    /plexus-cipher/1.4/plexus-cipher-1.4.jar
    [ERROR] urls[13] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-sink-api/1.2/doxia-sink-api-1.2.jar
    [ERROR] urls[14] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-logging-api/1.2/doxia-logging-api-1.2.jar
    [ERROR] urls[15] = file:/C:/dreammachine/cache/m2/repository/junit/junit/3.8.1/j
    unit-3.8.1.jar
    [ERROR] urls[16] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-core/1.2/doxia-core-1.2.jar
    [ERROR] urls[17] = file:/C:/dreammachine/cache/m2/repository/xerces/xercesImpl/2
    .9.1/xercesImpl-2.9.1.jar
    [ERROR] urls[18] = file:/C:/dreammachine/cache/m2/repository/xml-apis/xml-apis/1
    .3.04/xml-apis-1.3.04.jar
    [ERROR] urls[19] = file:/C:/dreammachine/cache/m2/repository/org/apache/httpcomp
    onents/httpclient/4.0.2/httpclient-4.0.2.jar
    [ERROR] urls[20] = file:/C:/dreammachine/cache/m2/repository/org/apache/httpcomp
    onents/httpcore/4.0.1/httpcore-4.0.1.jar
    [ERROR] urls[21] = file:/C:/dreammachine/cache/m2/repository/commons-codec/commo
    ns-codec/1.3/commons-codec-1.3.jar
    [ERROR] urls[22] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-module-xhtml/1.2/doxia-module-xhtml-1.2.jar
    [ERROR] urls[23] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-module-apt/1.2/doxia-module-apt-1.2.jar
    [ERROR] urls[24] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-module-xdoc/1.2/doxia-module-xdoc-1.2.jar
    [ERROR] urls[25] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-module-fml/1.2/doxia-module-fml-1.2.jar
    [ERROR] urls[26] = file:/C:/dreammachine/cache/m2/repository/javax/servlet/servl
    et-api/2.5/servlet-api-2.5.jar
    [ERROR] urls[27] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-decoration-model/1.2/doxia-decoration-model-1.2.jar
    [ERROR] urls[28] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/do
    xia/doxia-site-renderer/1.2/doxia-site-renderer-1.2.jar
    [ERROR] urls[29] = file:/C:/dreammachine/cache/m2/repository/commons-collections
    /commons-collections/3.2.1/commons-collections-3.2.1.jar
    [ERROR] urls[30] = file:/C:/dreammachine/cache/m2/repository/org/apache/maven/sh
    ared/maven-doxia-tools/1.4/maven-doxia-tools-1.4.jar
    [ERROR] urls[31] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus
    /plexus-archiver/1.0/plexus-archiver-1.0.jar
    [ERROR] urls[32] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus
    /plexus-io/1.0/plexus-io-1.0.jar
    [ERROR] urls[33] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus
    /plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar
    [ERROR] urls[34] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus
    /plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar
    [ERROR] urls[35] = file:/C:/dreammachine/cache/m2/repository/org/codehaus/plexus
    /plexus-utils/1.5.10/plexus-utils-1.5.10.jar
    [ERROR] urls[36] = file:/C:/dreammachine/cache/m2/repository/org/mortbay/jetty/j
    etty/6.1.25/jetty-6.1.25.jar
    [ERROR] urls[37] = file:/C:/dreammachine/cache/m2/repository/org/mortbay/jetty/s
    ervlet-api/2.5-20081211/servlet-api-2.5-20081211.jar
    [ERROR] urls[38] = file:/C:/dreammachine/cache/m2/repository/org/mortbay/jetty/j
    etty-util/6.1.25/jetty-util-6.1.25.jar
    [ERROR] urls[39] = file:/C:/dreammachine/cache/m2/repository/commons-lang/common
    s-lang/2.5/commons-lang-2.5.jar
    [ERROR] urls[40] = file:/C:/dreammachine/cache/m2/repository/commons-io/commons-
    io/1.4/commons-io-1.4.jar
    [ERROR] Number of foreign imports: 1
    [ERROR] import: Entry[import  from realm ClassRealm[project>com.jpmorgan.ib.arch
    itecture.deia.app:cafe-parsley:1.0-SNAPSHOT, parent: ClassRealm[maven.api, paren
    t: null]]]
    [ERROR]
    [ERROR] -----------------------------------------------------
    [ERROR] -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
    ch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please rea
    d the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginContaine
    Thus it seems FlexPMD can no longer be used with Maven due to some sort of binary incompatibility issue...
    Does anyone know how to resolve this issue?

    Hooray, I got to the bottom of issue.
    Basically the flex PMD maven plugin is broken at version 1.2 with more recent version of  maven-site-plugin.  This is because of a new abstract method introduced to the class AbstractMavenReport - canGenerateReport(); 
    This method isn't implemented in the FlexPmdMojo and FlexPmdReportMojo classes on the SVN trunk or in flexPMD 1.2 and was causing >mvn site to fail as outlined above. Add implementations of this method, returning true in both classes and the plugin works again!
    Note the method also needs to be added to the relevant Mojo and ReportMojo classes for the FlexMetrics and CPD maven plugins to get them working too.
    Flex PMD commiters - please release a new version of the project to resolve this showstopper!

  • After installing latest update Realplayer recording no longer works, I think Mozila is using a library file with the same name

    After installing the latest update to Firefox onto Vista operating system the record part of real player no longer works, I think Mozila and Real are using a library file with the same name and the Mozila update is overwriting a Realplayer library file.

    I was giong to say, "Help me, Adobe Joe Kenobi", but it looks like you're growing a beard waiting for an answer, too.
    The same thing happened to me today. I trusted the "update" message since it was from Adobe, and apprently did so at my own peril. Now I get the "failed to load Core dll" message with a secondary reference to a memory address.
    Just an observation, but what good are these forums when there are no answers? I see this problem as "Caused by Adobe Update", and would expect them to troublshoot and offer up a remedy. Since you've been waiting over two months with no response, I suppose it's time to trek off wasting more of my precious time to fix their problem. If I find the solution, I'll post it back to you.
    May the Force be with you.
    Mark

  • Can I use Time Capsule 1TB as an external hard drive tos tore my music library(but with cable connection,not WI-FI)

    Can I use my Time Capsule 1TB as an external hard drive to store my music library but with a cable connection(Ethernet or USB) and not Wi-Fi.

    Yes, with the following warnings.
    1. A 1TB TC is a Gen3 or earlier and can die at a moments notice.. So backup is essential.
    2. A Gen1 or 2 is slow.. even over ethernet they were processor bound and so transfer speeds are not great.. a USB2 plugged into the computer will be faster. Gen3 is about 50% better as the processor was upgraded by 50% speed.
    3. TC has no built in backup.. TM cannot backup network drives.
    4. TC is designed to spin up slowly and spin down quickly.. you will have issues with itunes constantly losing the library.
    5. You cannot use USB to the TC.. it is a network drive. If you want to use USB directly on the computer buy a USB drive.. but buy as fast a drive as your Mac supports.. Thunderbolt>USB3>FW800>USB2
    USB3 is cheap and very good.. but the port is only from 2012 so check your Mac specs.
    Thunderbolt whilst being super fantastic and around since 2011, has a bank account clearing price although there are Thunderbolt to esata converters.. for around $160. esata falls between usb3 and fw800.
    FW800 from WD is no better than USB2 but other brands it can be twice the speed of usb2.
    USB2 is the worst. But still faster than a TC.

  • A  project on iMovie 09 that  Freezes(only the project)  the viwer window blocked in gray ... .. After editing that  took me a year I'm stuck . All my finished projects that are in the Library infected with the same symptoms and it happens only after I w

    a  project on iMovie 09 that  Freezes(only the project)  the viwer window blocked in gray ... .. After editing that  took me a year I'm stuck .
    All my finished projects that are in the Library infected with the same symptoms and it happens only after I went into the problematic project.  
    I tried to open a new project and everything works
    ...I also tried throwing Recent Files, in the past It solved the problem ,not this time ...
    the problem is that this project will take me a long, long time to rebuild
    imovie 09
    Model Name:          iMac 
      Model Identifier:          iMac10,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          3.06 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          3 MB
      Memory:          4 GB
      Bus Speed:          1.07 GHz

    This recently happened to me.  I am a novice, but it seemed like that project got corrupted some how.
    I deleted it.
    Went to time machine and picked it up again when I knew it was working ok.
    I lost a few hours of work, but not the entire project.
    Once I had the project back from time machine, it worked fine (but like I said, I lost a little bit of work).

  • How to recover a deleted document library webpart with files in it?

    Hi, 
    I accidentally deleted a document library webpart with folders and files in it. Can someone help how to recover it? What do you think happens to the files? I checked the recycle bin, there is no any deleted file related to the missing files. When I checked
    the Site Content and Structure, I can find the folders yet cant see the files in it. It gives a message that says "Object reference not set to an instance of an object". 
    Please guide. 
    thanks alot,

    Albert, 
    Follow these steps:
    1) open page: https://your_pormal/Lists/YOUR_LIST_NAME/AllItems.aspx
    2) open page in edit mode -> add webpart -> find your list in available webparts -> add
    3) click on the ribbon Stop Editing (Page tab)
    4) Now you try open library from Site Content. 
    But your webpart will looks not like a when a library was created:
    Now follow these steps:
    1) Open library settings
    2) click Create View
    3) Select Standard View (don't select All Items from view templates)
    4) Name it (for example MyAllItems)
    4) Check: Make this the default view
    5) Check: Title (linked to item with edit menu)
    6) Click Save button
    7) Now you have new View (with new address)
    8) Open page https://your_pormal/Lists/YOUR_LIST_NAME/AllItems.aspx
    9) Open it in edit mode
    10) Open list webpart in edit mode
    11) Set Selected View to MyAllItems
    12) Toolbar Type to Full Toolbar
    13) Click OK (after this step it may still showed in "wrong" style)
    14) Click on the Page tap - Stop Editing
    15) Check result ;)
    [custom.development]

  • Creating library file with ejb

    Can anyone suggest me the process by which we can create a library file with ejb? I am new to the ejb environment and i need some guidance regarding this.

    Could you be more specific about what you mean by library file? Are you asking about how to package classes used by ejb components outside of the ejb-jar itself?
    --ken                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for