Maven plugin for managing CQ5 packages

Hi,
Here's some new documentation that explains how to use the Content Package Maven plugin. You can package and install content from your maven build...for example, in your POM, add goals for package creation and installation to automatically deploy the OSGi bundle that was built. You can perform other package management tasks on remote servers, like rebuild packages,  and list, uninstall, and remove them.
http://dev.day.com/docs/en/cq/current/core/how_to/how_to_use_the_vlttool/vlt-mavenplugin.h tml
scott

Thank you so much for prompt reply!!
I am new to this so I am bit confused.
Would it be possible for you to check my pom file? And let me know if the configuration looks Ok?
Command used: mvn clean package content-package:install -P felix-deploy
Setting.xml
<?xml version="1.0" encoding="UTF-8"?>
<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">
    <pluginGroups>
        <pluginGroup>content-package-maven-plugin</pluginGroup>
    </pluginGroups>
    <proxies />
    <servers>
        <server>
            <id>snapshots</id>
            <username>cqadmin</username>
            <password>internal1</password>
        </server>
        <server>
            <id>internal</id>
            <username>cqadmin</username>
            <password>internal1</password>
        </server>
    </servers>
    <mirrors>
        <mirror>
            <id>internal</id>
            <url>http://localhost:9090/archiva/repository/internal/</url>
            <mirrorOf>*</mirrorOf>
        </mirror>
    </mirrors>
    <profiles>
        <profile>
            <id>adobe-public</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <properties>
                <releaseRepository-Id>adobe-public-releases</releaseRepository-Id>
                <releaseRepository-Name>Adobe Public Releases</releaseRepository-Name>
                <releaseRepository-URL>
                    http://repo.adobe.com/nexus/content/groups/public/com/day/cq/wcm/cq-content/</releaseRepository-URL>
            </properties>
            <repositories>
                <repository>
                    <id>adobe-public-releases</id>
                    <name>Adobe Public Repository</name>
                    <url>http://repo.adobe.com/nexus/content/groups/public</url>
                    <releases>
                        <enabled>true</enabled>
                        <updatePolicy>never</updatePolicy>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>adobe-public-releases</id>
                    <name>Adobe Public Repository</name>
                    <url> http://repo.adobe.com/nexus/content/groups/public/com/day/cq/wcm/cq-content/</url>
                    <releases>
                        <enabled>true</enabled>
                        <updatePolicy>never</updatePolicy>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>
</settings>
POM.xml
<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>common</groupId>
    <artifactId>common-ui</artifactId>
    <version>0.0.1</version>
    <name>common-ui</name>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!-- timestamp property used when filtering files from META-INF path -->
        <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss.SZ</maven.build.timestamp.format>
        <timestamp>${maven.build.timestamp}</timestamp>
        <cq5.package.group>Common UI</cq5.package.group>
        <cq5.app.name>common-ui</cq5.app.name>
    </properties>
    <profiles>
        <profile>
            <id>felix-deploy</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>com.day.jcr.vault</groupId>
                        <artifactId>content-package-maven-plugin</artifactId>
                        <version>0.0.19</version>
                        <configuration>
                            <name>common-ui</name>
                            <failOnError>true</failOnError>
                            <packageFile>
                                ${project.artifactId}-${project.version}-cq5-package.zip
                            </packageFile>
                            <targetURL>http://localhost:4502/crx/packmgr/service.jsp</targetURL>
                        </configuration>
                        <executions>
                            <execution>
                                <goals>
                                    <goal>package</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
    <build>
        <plugins>
            <plugin>
                <!-- Assembly plugin used to make cq5 package zip file -->
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <builtContentDirectory>jcr_root</builtContentDirectory>
                    <targetURL>http://localhost:4502/crx/packmgr/service.jsp</targetURL>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
        <resources>
            <resource>
                <directory>src/main/content</directory>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
        </resources>
    </build>
</project>
ERROR:
C:\workspace-aaa-eris\wms-cms-common-ui>mvn clean package content-package:install -P felix-deploy
[INFO] Scanning for projects...
[WARNING] Failed to retrieve plugin descriptor for com.day.jcr.vault:content-package-maven-plugin:0.0.19: Invalid plugin descriptor for com.day.jcr.vault:content-package-maven-plug
in:0.0.19  (C:\Users\gxoshre\.m2\repository\com\day\jcr\vault\content-package-maven-plugin\0.0.19\co ntent-package-maven-plugin-0.0.19.jar), Plugin's descriptor contains the wrong ve
rsion: 0.0.16
Downloading: http://localhost:9090/archiva/repository/internal/org/codehaus/mojo/maven-metadata.xml
Downloading: http://localhost:9090/archiva/repository/internal/content-package-maven-plugin/maven-metad ata.xml
Downloading: http://localhost:9090/archiva/repository/internal/org/apache/maven/plugins/maven-metadata. xml
Downloaded: http://localhost:9090/archiva/repository/internal/org/apache/maven/plugins/maven-metadata. xml (11 KB at 0.7 KB/sec)
Downloaded: http://localhost:9090/archiva/repository/internal/org/codehaus/mojo/maven-metadata.xml (21 KB at 1.4 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 15.148s
[INFO] Finished at: Wed Oct 03 12:34:25 MST 2012
[INFO] Final Memory: 4M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] No plugin found for prefix 'content-package' in the current project and in the plugin groups [content-package-maven-plugin, org.apache.maven.plugins, org.codehaus.mojo] ava
ilable from the repositories [local (C:\Users\gxoshre\.m2\repository), internal (http://localhost:9090/archiva/repository/internal/)] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[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 read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
C:\workspace-aaa-eris\wms-cms-common-ui

Similar Messages

  • How to configure wls-maven-plugin for support remote actions ?

    hi,
    currently I installed weblogic 12.1.1.0 .
    also using wls-maven-plugin for deployment .
    in documentation specified that
    middlewareHome ,weblogicHome ,domainHome has defaults values .
    so when you are not set them explicitly plugin use defaults values
    [http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585|http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585]
    whats happened if I want to do remote deployment meaning packaging my artifacts in machine A and deploy it to a server on target machine B .
    some limitations
    1. I cant use share folder between A and B
    2. Installation location on B is not on the default path - "D:\weblogic\wlserver_12.1"
    how plugin should know those require values on machine B , where the execution of the maven goal take place on machine A?
    does any body knows if the plugin support this case of remote deployment or does this plugin support only local deployment ?
    what is the best way to do remote action like start-server , stop-server, deploy , undeploy with weblogic app-server
    Thanks
    Nir
    Edited by: lukass77 on Nov 13, 2012 3:36 PM

    hi,
    currently I installed weblogic 12.1.1.0 .
    also using wls-maven-plugin for deployment .
    in documentation specified that
    middlewareHome ,weblogicHome ,domainHome has defaults values .
    so when you are not set them explicitly plugin use defaults values
    [http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585|http://docs.oracle.com/cd/E24329_01/web.1211/e24368/maven.htm#WLPRG585]
    whats happened if I want to do remote deployment meaning packaging my artifacts in machine A and deploy it to a server on target machine B .
    some limitations
    1. I cant use share folder between A and B
    2. Installation location on B is not on the default path - "D:\weblogic\wlserver_12.1"
    how plugin should know those require values on machine B , where the execution of the maven goal take place on machine A?
    does any body knows if the plugin support this case of remote deployment or does this plugin support only local deployment ?
    what is the best way to do remote action like start-server , stop-server, deploy , undeploy with weblogic app-server
    Thanks
    Nir
    Edited by: lukass77 on Nov 13, 2012 3:36 PM

  • Maven plugin for flex

    Hello All,
    I have developed a Maven Plugin for Flex , hope someone will find it useful.

    flexmojos is fine, I'm working with a client using it in their automated deployments that uses all the tech you listed and then some. It takes a little bit to get configured but it does the job quite nice.

  • Maven plugins for SDA / SCA creation

    Hi all,
    we are currently evaluating in moving our build from ANT to Maven. We therefore would like to know, if there are any maven plugins out there to create SDA and/or SCA files.
    Additionally we are also interested in automatic deployment to Netweaver, so in general any pointers are very very welcome.
    Greetings
    -Sascha-

    Hi,
    pls. use the nwpacktool as I suggested in the other thread.
    See SAP note: 1223957
    regards,
    Jozsef

  • Maven plugin for Deploy/undeploy tasks

    Hi all,
    Have anybody an experience in automating the deployment/undeployment tasks using apache maven 1?
    If so, give me some examples and plugins links please!
    Thanks in advance.

    Thanks. I had seen the link before I post this. The page doesn't really answer my question though and is far from being complete. For instance, it won't tell you anything about plugin's behavior (e.g.: if you configure it in Parent project, would it deploy all modules defined in its POM or not?).
    Anyway, I finally found a post somewhere else that helped me to make some real progress.
    http://maven.40175.n5.nabble.com/WebLogic-Deployment-ok-from-child-fails-from-parent-td91659.html

  • Cannot find maven plugin

    I'm trying to install the maven plugin for jdeveloper 10.1.3.4. for some reason, all the sites on the apache sites for the plugin are down.
    http://maven.apache.org/maven-1.x/plugins/jdeveloper/downloads.html
    Can anyone provide me with a valid link for download?
    Many thanks,
    Wes

    Wes,
    its an Apache plugin and I suggest you ping them for another download link. On the Apache site you see help listst that you can send the request to
    Frank

  • Maven plugin

    hi,
    while mvn compile following error is ocuring.can anyone give me any clue.
    [INFO] The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exist or no valid version could be found
    Thanks&Regards
    Nirmal kumar Ghosh

    Andy-
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]This is dependant on the type of class mapping you are using:
    http://solarmetric.com/Software/Documentation/3.0.0RC1/docs/manual.html#ref_guide_mapping_classmapping
    In article <bl72ca$pjc$[email protected]>, Andy Jefferson wrote:
    Abe White wrote:
    I've put a version 1.0.0 of the Maven plugin for Kodo (works with Kodo
    v2.5.2) up on the maven plugins site (http://maven-plugins.sf.net).
    Thanks! I just realized I still have an email from you in my inbox...
    did I ever respond?No ... I thought you were ignoring me :-)
    Anyway, now that Kodo 3 is at RC status it should be
    stable enought o build Maven plugins for, if you're so inclined... :) If
    not I'm sure we'll get around to it eventually.I've actually got the "enhance" and "version" goals working for 3.0.
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Maven plugin v1.0.0

    I've put a version 1.0.0 of the Maven plugin for Kodo (works with Kodo
    v2.5.2) up on the maven plugins site (http://maven-plugins.sf.net).
    Andy

    Andy-
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]This is dependant on the type of class mapping you are using:
    http://solarmetric.com/Software/Documentation/3.0.0RC1/docs/manual.html#ref_guide_mapping_classmapping
    In article <bl72ca$pjc$[email protected]>, Andy Jefferson wrote:
    Abe White wrote:
    I've put a version 1.0.0 of the Maven plugin for Kodo (works with Kodo
    v2.5.2) up on the maven plugins site (http://maven-plugins.sf.net).
    Thanks! I just realized I still have an email from you in my inbox...
    did I ever respond?No ... I thought you were ignoring me :-)
    Anyway, now that Kodo 3 is at RC status it should be
    stable enought o build Maven plugins for, if you're so inclined... :) If
    not I'm sure we'll get around to it eventually.I've actually got the "enhance" and "version" goals working for 3.0.
    The "schematool" goal is not yet working (I think not anyway!) ... the Kodo
    2.5 "schematool" process seems to have been renamed "mappingtool" in 3.0,
    and with what I came up with using "mappingtool", Kodo was mapping 2
    classes (base class, and a derived class) into a single DB table for some
    reason ... is this to be expected in 3.0 ? [I was kind of expecting it to
    represent my tables as it did in 2.5 ... one for base class and one for
    derived class]--
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Content-package-maven-plugin use filter.xml

    Is there a way to get the Maven plugin (content-package-maven-plugin) to use the filter.xml used by VLT for the filtering for the content package. At the moment I need to specifiy the filtering again in the POM.
    <plugin>
    <groupId>com.day.jcr.vault</groupId>
    <artifactId>content-package-maven-plugin</artifactId>
    <extensions>true</extensions>
    <configuration>
    <group>geometrixx</group>
    <filters>
    <filter><root>/apps/geometrixx</root></filter>               
    <filter><root>/etc/designs/geometrixx</root></filter> 
    <filter><root>/content/geometrixx</root></filter> 
    </filters>
    <embeddeds>
    <embedded>
    <groupId>${project.groupId}</groupId>
    <artifactId>geometrixx-bundle</artifactId>
    <target>/apps/geometrixx/install</target>
    </embedded>
    </embeddeds>
    <targetURL>http://${crx.host}:${crx.port}/crx/packmgr/service.jsp</targetURL>
    </configuration>
    </plugin>
    Filter.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <workspaceFilter version="1.0">
    <filter root="/apps/geometrixx">
    <include pattern="/apps/geometrixx(/.*)?" />
    </filter>   
    <filter root="/etc/designs/geometrixx"/>
    <filter root="/content/geometrixx"/>
    <filter root="/apps/geometrixx/install">
    <exclude pattern="/apps/geometrixx/install/.*"/>
    </filter>
    </workspaceFilter>

    Dan-
    Rather than having a filters element within the configuration, put
    <filterSource>src/main/content/META-INF/vault/filter.xml</filterSource>
    (correcting the path as necessary).
    Regards,
    Justin

  • Available APIs for process and package management

    Hello All and welcome to my Hello All:
    Welcome to my inaugural post. I am a complete noob to Solaris (although I have been using Linux for 5+ years) and am in the process of trying to get a handle on what local C/C++ APIs (if any) are available for management. Specifically, I am looking to find out about process and package management.
    For process management, basically I would like to know is there some kind of interface to the the prstat application (ie. Memory and CPU utilization). Does something like this exist?
    For package management, I am looking for the ability to add, remove, and query the package �database�. Correct me if I am wrong, but the Solaris package �database� seems similar to that of a Debian system (at least from the perspective that the informational files are stored as plain text in a well-defined directory [ie /var/sadm/pkg/]).
    I have installed Solaris 10 on an x86 machine with a full installation; however, of the installed development kits (listed below) nothing jumped out at me.
    -bash-3.00# ls -1d /var/sadm/pkg/*devel
    /var/sadm/pkg/SUNWaspell-devel
    /var/sadm/pkg/SUNWevolution-devel
    /var/sadm/pkg/SUNWevolution-libs-devel
    /var/sadm/pkg/SUNWgnome-a11y-base-devel
    /var/sadm/pkg/SUNWgnome-a11y-libs-devel
    /var/sadm/pkg/SUNWgnome-a11y-reader-devel
    /var/sadm/pkg/SUNWgnome-a11y-speech-devel
    /var/sadm/pkg/SUNWgnome-audio-devel
    /var/sadm/pkg/SUNWgnome-base-libs-devel
    /var/sadm/pkg/SUNWgnome-camera-devel
    /var/sadm/pkg/SUNWgnome-common-devel
    /var/sadm/pkg/SUNWgnome-component-devel
    /var/sadm/pkg/SUNWgnome-config-devel
    /var/sadm/pkg/SUNWgnome-desktop-prefs-devel
    /var/sadm/pkg/SUNWgnome-file-mgr-devel
    /var/sadm/pkg/SUNWgnome-hex-editor-devel
    /var/sadm/pkg/SUNWgnome-img-editor-devel
    /var/sadm/pkg/SUNWgnome-libs-devel
    /var/sadm/pkg/SUNWgnome-media-devel
    /var/sadm/pkg/SUNWgnome-panel-devel
    /var/sadm/pkg/SUNWgnome-pilot-devel
    /var/sadm/pkg/SUNWgnome-print-devel
    /var/sadm/pkg/SUNWgnome-project-devel
    /var/sadm/pkg/SUNWgnome-terminal-devel
    /var/sadm/pkg/SUNWgnome-text-editor-devel
    /var/sadm/pkg/SUNWgnome-vfs-devel
    /var/sadm/pkg/SUNWgnome-wm-devel
    /var/sadm/pkg/SUNWgnutls-devel
    /var/sadm/pkg/SUNWjpg-devel
    /var/sadm/pkg/SUNWlibexif-devel
    /var/sadm/pkg/SUNWlibgcrypt-devel
    /var/sadm/pkg/SUNWlibpopt-devel
    /var/sadm/pkg/SUNWmozilla-devel
    /var/sadm/pkg/SUNWmoznspr-devel
    /var/sadm/pkg/SUNWmoznss-devel
    /var/sadm/pkg/SUNWogg-vorbis-devel
    /var/sadm/pkg/SUNWopenjade-devel
    /var/sadm/pkg/SUNWopensp-devel
    /var/sadm/pkg/SUNWpcsclite-devel
    /var/sadm/pkg/SUNWpng-devel
    /var/sadm/pkg/SUNWpostgr-devel
    /var/sadm/pkg/SUNWPython-devel
    /var/sadm/pkg/SUNWTiff-devel
    I've placed orders for Solaris Internals and Solaris Performance & Tuning (that should arrive tomorrow), but I was hoping that someone could give me a gentle push (or perhaps a swift kick) in a general direction. :)
    Thanks.

    For process management, basically I would like to
    know is there some kind of interface to the the
    prstat application (ie. Memory and CPU utilization).
    Does something like this exist?Not prstat (although you could 'truss' it and see some of what it's doing to collect the information). kstat is available with a C interface and through perl/shell. It has several CPU fields. It's certainly useful for monitoring, but read-only. I'm not sure what you're looking for in terms of "management".
    Also 'dtrace' can provide tons of dynamic information, but that's not necessarily what you're looking for.
    For package management, I am looking for the ability
    to add, remove, and query the package �database�.
    Correct me if I am wrong, but the Solaris package
    �database� seems similar to that of a Debian system
    (at least from the perspective that the
    informational files are stored as plain text in a
    well-defined directory [ie /var/sadm/pkg/]).Yes, although it's based on the SysV packaging system. I don't believe there's any API for it outside of the 'pkg*' utilities.
    Darren

  • Time/LEave approval in Business Package for Manager Self-Service 60.1

    Hi all,
    Currently implementing ESS MSS on 4.7 system with EP 6.0 SP19.
    The BP we plan to use is Business Package for Manager Self-Service 60.1.
    My basic question is, we approve leave requests in BP for my SAP ERP (2004s) in the Universal worklist. How do we do the same in  Business Package for Manager Self-Service 60.1. There i sno mention on time approval and leave requests approval in the MSS standard documentation ( or probably i missed it).
    Any inputs in this regards are highly appreciated.
    regards
    Sam

    Balaji,
    in mySAP we had the opition to lauunch the applications in web dynpro. like launch leave approval in web dynpro. do we have this kind of optiion where the manager can approve the work item on the portal application or will it call a transaction based iview to open the work item in the R/3
    regards
    Sam

  • "manage nuget packages for solution" is missing in the drop down for NuGet Package Manager

    Hi,
    I have VS2013 Ultimate on windows 7 PC and that Nuget Option does show in the dropdown.  Today, I setup a vm in Azure, from image I select VS2013 Ultimate, just like the one on my PC.  However, when I click on the Tools, Nuget, there is only 2
    drop down option, "package manager console" and "package manager settings" are the only 2 available.  How can I get the ""manage nuget packages for solution"?
    I want to install the xamarin.forms extension and I need this.
    thank you
    Thank you

    Hi laJasmine,
    Based on your issue, generally, I know that there have two ways to see the "manage nuget packages for solution" option after we install the VS2013 Ultimate.
    One way is that it is default that we can see the "manage nuget packages for solution" option by right click this Solution->Manage NuGet Packages for Solution option like the following screen shot.
    Another way is that we can see the "manage nuget packages for solution" option by clicking the Tools->Library Package Manager-> manage nuget packages for solution like the following screen shot.
    So please check if you can get the "manage nuget packages for solution" option from this above two way again.
    If you still could not the "manage nuget packages for solution" option in this VS2013 Ultimate, to check if this issue is related to the VS2013 Ultimate set up file. I suggest you could try to copy this setup file and then install it on other machine
    and then check if you still get the issue.
    If you have any updated message about this issue, please tell me.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to install the "Maven Integration for Eclipse" plugin

    I am having trouble trying to install the "Maven Integration for Eclipse" plugin.
    The tab Installed list the plugin with an Install button activated.
    Then when I click on Install, I get the following log:
    Your original request has been modified.
      "m2e - slf4j over logback logging (Optional)" is already installed, so an update will be performed instead.
      "m2e - Maven Integration for Eclipse" is already installed, so an update will be performed instead.
    Cannot complete the install because one or more required items could not be found.
      Software being installed: m2e - slf4j over logback logging (Optional) 1.4.0.20130601-0317 (org.eclipse.m2e.logback.feature.feature.group 1.4.0.20130601-0317)
      Missing requirement: m2e logback configuration 1.4.0.20130601-0317 (org.eclipse.m2e.logback.configuration 1.4.0.20130601-0317) requires 'bundle org.slf4j.api 1.6.2' but it could not be found
      Cannot satisfy dependency:
        From: m2e - slf4j over logback logging (Optional) 1.4.0.20130601-0317 (org.eclipse.m2e.logback.feature.feature.group 1.4.0.20130601-0317)
        To: org.eclipse.m2e.logback.configuration [1.4.0.20130601-0317]
    I am running FlashBuilder 4.6.
    I have Eclipse Juno also installed.
    I am running on Windows7.
    I tried to uninstall both Eclipse and FB and just reinstall FB but still I have the same problem.
    Any help would be greatly appreciated?

    Â Hi Senthil
    The only way for you to get CR4E is to download it from our web site.
    I just made a try, just to check if our web site was having any troubles today, and it worked fine, so I assume you might be experiencing some troubles on your side with your internet connexion.
    I have successfully downloaded the All-In-One zip file of CR4E, that you can find there :
    Â http://diamond.businessobjects.com/node/433
    I suggest you give it some more tries.
    Thank you for using CR4E.
    Thierry (Business Objects)

  • Maven kodo plugin for 3.1.2

    Hi, I'm trying to use Kodo 3.1.2 with Maven.
    I'm new to maven plugins, and i got some difficulties with a classloader
    problem .
    I want to enhance some classes which are using commons logging
    facilities, but i got a error :
    Class org.apache.commons.logging.impl.SimpleLog does not implement Log
    But the enhancer seems to do his job (see the log below).
    Can someone help me ?
    Stephane.
    Maven log :
    [INFO] Tool - -JDO enhancer running on type "class
    fr.emn.bn.collections.metier.CollectionBN".
    [INFO] MetaData - -Parsing metadata resource
    "file:/C:/eclipse/workspace/BN/target/classes/system.jdo".
    [INFO] Enhance - -Enhancing type "class
    fr.emn.bn.collections.metier.CollectionBN".
    [WARN] Enhance - -The type "class
    fr.emn.bn.collections.metier.CollectionBN" must have a no-args
    constructor. Adding a protected no-args constructor.
    java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at fr.emn.bn.collections.metier.CollectionBN.class$(CollectionBN.java:55)
         at fr.emn.bn.collections.metier.CollectionBN.<clinit>(CollectionBN.java:55)
         at java.io.ObjectStreamClass.hasStaticInitializer(Native Method)
         at
    java.io.ObjectStreamClass.computeDefaultSUID(ObjectStreamClass.java:1557)
         at java.io.ObjectStreamClass.access$100(ObjectStreamClass.java:47)
         at java.io.ObjectStreamClass$1.run(ObjectStreamClass.java:173)
         at java.security.AccessController.doPrivileged(Native Method)
         at
    java.io.ObjectStreamClass.getSerialVersionUID(ObjectStreamClass.java:170)
         at kodo.enhance.JDOEnhancer.addSerializationCode(JDOEnhancer.java:1841)
         at kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:262)
         at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2186)
         at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2122)
         at kodo.enhance.JDOEnhancer.main(JDOEnhancer.java:2094)
    Caused by: org.apache.commons.logging.LogConfigurationException:
    org.apache.commons.logging.LogConfigurationException:
    org.apache.commons.logging.LogConfigurationException: Class
    org.apache.commons.logging.impl.SimpleLog does not implement Log

    my kodo.properties looks like that :
    javax.jdo.PersistenceManagerFactoryClass:
    kodo.jdbc.runtime.JDBCPersistenceManagerFactory
    javax.jdo.option.ConnectionUserName: sa
    javax.jdo.option.ConnectionPassword:
    javax.jdo.option.ConnectionURL: jdbc\:hsqldb\:/Temp/test_database
    javax.jdo.option.ConnectionDriverName: org.hsqldb.jdbcDriver
    javax.jdo.option.Multithreaded: false
    javax.jdo.option.NontransactionalWrite: false
    kodo.jdbc.ForeignKeyConstraints: false
    kodo.jdbc.Schemas:
    kodo.jdbc.AutoIncrementConstraints: false
    kodo.jdbc.SynchronizeMappings: refresh
    kodo.WriteLockLevel: write
    kodo.FetchGroups:
    kodo.PersistentClasses:
    kodo.CopyObjectIds: false
    kodo.RestoreMutableValues: false
    kodo.Log: commons
    Stephane
    Patrick Linskey a __crit :
    How are you configuring Kodo's logging (the kodo.Log property)?
    -Patrick
    Stephane Bouchet wrote:
    Hi, I'm trying to use Kodo 3.1.2 with Maven.
    I'm new to maven plugins, and i got some difficulties with a
    classloader problem .
    I want to enhance some classes which are using commons logging
    facilities, but i got a error :
    Class org.apache.commons.logging.impl.SimpleLog does not implement Log
    But the enhancer seems to do his job (see the log below).
    Can someone help me ?
    Stephane.
    Maven log :
    [INFO] Tool - -JDO enhancer running on type "class
    fr.emn.bn.collections.metier.CollectionBN".
    [INFO] MetaData - -Parsing metadata resource
    "file:/C:/eclipse/workspace/BN/target/classes/system.jdo".
    [INFO] Enhance - -Enhancing type "class
    fr.emn.bn.collections.metier.CollectionBN".
    [WARN] Enhance - -The type "class
    fr.emn.bn.collections.metier.CollectionBN" must have a no-args
    constructor. Adding a protected no-args constructor.
    java.lang.ExceptionInInitializerError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:141)
    at
    fr.emn.bn.collections.metier.CollectionBN.class$(CollectionBN.java:55)
    at
    fr.emn.bn.collections.metier.CollectionBN.<clinit>(CollectionBN.java:55)
    at java.io.ObjectStreamClass.hasStaticInitializer(Native Method)
    at
    java.io.ObjectStreamClass.computeDefaultSUID(ObjectStreamClass.java:1557)
    at java.io.ObjectStreamClass.access$100(ObjectStreamClass.java:47)
    at java.io.ObjectStreamClass$1.run(ObjectStreamClass.java:173)
    at java.security.AccessController.doPrivileged(Native Method)
    at
    java.io.ObjectStreamClass.getSerialVersionUID(ObjectStreamClass.java:170)
    at
    kodo.enhance.JDOEnhancer.addSerializationCode(JDOEnhancer.java:1841)
    at kodo.enhance.JDOEnhancer.enhance(JDOEnhancer.java:262)
    at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2186)
    at kodo.enhance.JDOEnhancer.run(JDOEnhancer.java:2122)
    at kodo.enhance.JDOEnhancer.main(JDOEnhancer.java:2094)
    Caused by: org.apache.commons.logging.LogConfigurationException:
    org.apache.commons.logging.LogConfigurationException:
    org.apache.commons.logging.LogConfigurationException: Class
    org.apache.commons.logging.impl.SimpleLog does not implement Log

  • TableLayout manager Plugin for Netbeans... Mattise...

    Hi,
    Im looking for a TableLaout plugin for Netbeans... one that will hopefully work with Mattise, anyone got an idea of where I could get one from?
    Thanks
    Chris.

    The plugin has been updated a few minutes ago.
    New Features:
    * browse store by primary key and secondary keys
    Improvements:
    * secondary keys are now displayed with cardinality and related entity information
    * all entity fields are now displayed

Maybe you are looking for

  • How do I setup multiple user accounts on my iPad2?

    I would like to have two users on iMessages on my iPad2.  When I attempt to enter the second user email address it errors-out with 'email already in use'?

  • How to avoid "DBIF_RSQL_SQL_ERROR" while updating data to a ztable?

    Hi Friends, I am in urgent need of solution to reduce or come out DBIF_RSQL_SQL_ERROR at time of updating a Z table. the code are below mentioned. There is no inconsistency b/w table and internal table strcture.I also used commit work.Buat everthing

  • UCCE 7.5(8) CAD 7.5.1.59 got blocked in Working Ready state

    Hi all, We're using UCCE 7.5(8) with CAD 7.5.1.59. From time to time, we remarked some CAD get blocked in the Working Ready state after ending a call. Our wrap up time is currently configured to 2 hours (as requested by client) so the CAD wont turn b

  • JNDI name is not displayed in server console JNDI tree

    Hi. I have two objects with similar JNDI names. Object 1 has JNDI name "abc.test1". Object 2 has JNDI name "Abc.test2". Here is difference in first char size: 'a' and 'A'. The issue is that in JNDI tree weblogic server console displays only Object 1.

  • Swedish characters....

    I am having serious problems with swedish characters under Oracle 8.0.5 for Linux. I have selected the WE8DEC charset for my ORCL instance and the NLS_TERRITORY AND NLS_LANGUAGE are properly set in the initORCL.ora file, but i just cant get the chara