Deliverables on Maven Repo - M2Eclipse integration

Hi.
Does anyone know how to put the url provided by jnakata user in post "Deliverables on Maven Repo" to work in M2Eclipse plugin?
I declared a piece of url (http://download.java.net/maven/2/) as a Maven Index, but the console shows me the following error:
17-09-2008 8:18:37 BST: Missing artifact com.sun.messaging.mq:fscontext:jar:4.2:compile
17-09-2008 8:18:37 BST: Missing artifact com.sun.messaging.mq:imq:jar:4.2:compile
I would like to thank you all in advance.
Best regards and sorry for my poor english,
Fox

Not at this time. We've heard this would be useful. We'll post a notice to the [Open MQ project|https://mq.dev.java.net] when we start doing this. (I'll try to remember to post a followup here, but you might want to consider joining the project, or subscribing to [email protected] e-mail list.)
Out of curiosity, are you looking at embedding MQ (so you'd need all the packages)? Or, do you just want the JMS API?
-- Ed Bratt

Similar Messages

  • Does current Oracle Maven Repo supports 11.1.1.7 ADF JDeveloper ?

    Hi All
    Does current Oracle Maven Repo (OMP) supports 11.1.1.7 ADF JDeveloper ?
    What's the minimum JDeveloper version that OMP currently support ?
    Thanks

    Right now, the Oracle Maven Repository only contains artifacts to support ADF 12.1.3.  We will be adding newer versions as they become available but there are currently no plans to add support for 11g-based releases.

  • Howto browse in Oracle-Maven-Repo

    Hi,
    is there any posibility to browse in the Oracle-Maven-Repo? ([http://download.oracle.com/maven])
    I try to find out, what java-files are available, but if I access the repo the server automaticaly redirects me to [http://www.oracle.com/technology/software/index.html].
    Only direct downloads are possible (e.g. [http://download.oracle.com/maven/com/sleepycat/je/3.3.75/je-3.3.75.pom]).
    Thanks for help.
    Denis

    This turned out to be a problem with our ISP. The problem has been resolved.

  • Flex sdk 4.6 maven repo

    Hi
    there wasa blog post last October (http://justinjmoses.wordpress.com/2011/10/) saying that Adobe was getting invovled in
    getting the flex 4.6 sdk into a maven repository.
    There is still no mention of this either here or in the flexmojos google group.
    Anyone know what is happening?
    James

    Anything regarding Flex is pretty much at Apache these days.  There is no plan to distribute a Maven compatible Flex 4.6.  I hope Apache will make future Apache Flex builds work with Maven.

  • Missing flex-pmd-1.0.RC3.pom in Maven repo

    Unlike for RC2, there is no pom in
    http://opensource.adobe.com/svn/opensource/flexpmd/maven-repository/release/com/adobe/ac/f lex-pmd/1.0.RC3/
    Thi smake RC3 unsable with Maven, could you publish it please ?

    Thanks, but there is another issue : http://opensource.adobe.com/svn/opensource/flexpmd/maven-repository/release/com/adobe/ac/a s3-plugin-utils/1.0.RC3/as3-plugin-utils-1.0.RC3.pom depends on flex-pmd 1.0.RC4 instead of RC3.
    Could you fix this too ?

  • Maven 2 Plugin

    Is Maven 2 Plugin for JDeveloper 10.1.3 under development? If not, does Oracle or any third party have a plan to develop one?

    Hi, I use the "trinidad-build-plugin" and I don't find the "problems" mentioned in the article much annoying. I have my maven repo in $HOME/.m2 and other developers can have their repo whereever they want. However, we do not share the jws/jpr files that the plugin generate.
    I have to define the build command as an external tool in jdev, and it'd be nice to have the maven output (errors and warnings) hotlinked to the source. So some support inside Jdev would be nice.
    Netbeans has a nice plugin that actually lets you open pom files directly and has maven integrated. Something similar for JDev would be really nice. Until then the existing plugin works just fine. It produces 10.1.3 files, but I have 11.1.1 migrate them and that works just fine.
    The really nice stuff here is that you have maven manage all deps and libs/jars for you. That's definitely worth it.

  • Class mx.collections.ISort missing from latest framework Maven release

    Following migration from Flex 3.3, I had to modify one of my class that implements ICollectionView. This interface had changes in its API that require to replace:
            public function get sort():Sort
                return null;
            public function set sort(value:Sort):void
                //No Impl
    by:
            public function get sort():ISort
                return null;
            public function set sort(value:ISort):void
                //No Impl   
    Using FLex SDK 4.5 bundled with FlashBuilder 4.5, my code is compiling just fine. However, when I build my project using Maven, I have the following errors:
    D:\dev\vanguard\trubk.eclipse37.flex45\core\src\main\flex\com\taleo\vanguard\controls\diag ram\HierarchicalCollectionView.as(147): col: 30 Error: Type was not found or was not a compile-time constant: ISort.
            public function get sort():ISort
                                       ^
    D:\dev\vanguard\trubk.eclipse37.flex45\core\src\main\flex\com\taleo\vanguard\controls\diag ram\HierarchicalCollectionView.as(153): col: 34 Error: Type was not found or was not a compile-time constant: ISort.
            public function set sort(value:ISort):void
    I'm using the latest flex framework release in the Maven Repository:
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>framework</artifactId>
      <version>4.5.0.18623</version>
      <type>pom</type>
    </dependency>
    mx.collections.ISort interface is missing from the release and definition of mx.collections.ICollectionView is different from SDK bundled and Maven Repo ...
    What can I do ?
    EDIT: There are a lot of other differences between SDK available in Maven Repository and downloadable SDK ...

    Yup. The source files are simply missing from the 4.5 source releases....I'm hitting the same issue when trying to rebuild the SDK with flexcover changes applied.

  • 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.

  • Cairngorm Persistence library - not on wiki/in Maven?

    Hi,
    The Cairngorm Persistence library's download link on the wiki is broken, and I believe the library is not in the Maven repository.
    The Persistence library's download link on the Cairngorm Libraries wiki page is broken.
    Download link: https://sourceforge.net/adobe/cairngorm/wiki/CairngormLibraries/attachment/Persistence-0.9 .swc
    Cairngorm Libraries wiki page: https://sourceforge.net/adobe/cairngorm/wiki/CairngormLibraries/
    Also, I cannot find the Persistence Library in the Maven repository list.
    Maven repo: http://opensource.adobe.com/svn/opensource/cairngorm3/maven-repository/com/adobe/cairngorm /
    To work around the broken link, I can build from the source here: http://opensource.adobe.com/svn/opensource/cairngorm3/trunk/libraries/Persistence/.
    Not a show stopper, just wanted to make sure the persistence library wasn't going away.
    Thanks!

    Hello,
    Link fixed. It seems that an update on SourceForge deleted the attachments from the Wiki pages.

  • SOA 12c Composite Build using Maven

    Hi,
    I'm trying to build SOA 12c Composites using Maven 3.
    using command mvn install , so that i can build my composites and place jars in local maven repository. But it is doing the following things:
    1. Compile 2. Build 3. Deploy to application server 4. Run Tests .
    Which is not expected.
    I Just wanted to build my composites and place the Jar's in Maven Repo.
    Can anyone comment on this.
    Thanks,
    Chandra_

    You could try Edwins comment.
    "You can use the normal soa deploy plugin, just zip the mds artifacts and deploy it just like a SOA Composite sar."
    You need to create the zip first.
    Content of zip schould look like:
    /apps
      /your-mds-files

  • Jmx-1_2_1-ri.zip & maven

    I downloaded jmx-1_2_1-ri.zip and ran this command:
    mvn install:install-file -DgroupId=com.sun.jmx -DartifactId=jmxri -Dversion=1.2.1 -Dpackaging=jar -Dfile=./jmx-1_2_1-ri.zip
    so it is now in my local maven repo (C:\Documents and Settings\<user>\.m2\repository
    (before you point me to the error messsages in maven that show me where to go to download jars, please note that I have already gone to the URL and there is nothing to download except documentation (pdf files). You can go to the URL's and see there is no reference implementation, just docs.
    It would be great if Sun ran their own maven repo where we could get jars (and actually kept it up to date).
    URL's (nothing here except docs - no jars no ri
    http://java.sun.com/products/JavaManagement/download.html
    http://java.sun.com/products/jms/docs.html
    (there is an ri here and I downloaded it and it is in my rep (see below) but I still get maven compile errors)
    Details when I do:
    $mvn install
    I get
    [INFO] ------------------------------------------------------------------------
    [ERROR] BUILD ERROR
    [INFO] ------------------------------------------------------------------------
    [INFO] Failed to resolve artifact.
    Missing:
    1) javax.jms:jms:jar:1.1
    Try downloading the file manually from:
    http://java.sun.com/products/jms/docs.html
    Then, install it using the command:
    mvn install:install-file -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar -Dfile=/path/to/file
    Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=javax.jms -DartifactId=jms -Dversion=1.1 -Dpackaging=jar -Dfile=/path/to/file -Durl=url -DrepositoryId=[id]
    Path to dependency:
    1) shift:sample:jar:1.0-SNAPSHOT
    2) log4j:log4j:jar:1.2.15
    3) javax.jms:jms:jar:1.1
    2) com.sun.jdmk:jmxtools:jar:1.2.1
    Try downloading the file manually from:
    http://java.sun.com/products/JavaManagement/download.html
    Then, install it using the command:
    mvn install:install-file -DgroupId=com.sun.jdmk -DartifactId=jmxtools -Dversion=1.2.1 -Dpackaging=jar -Dfile=/path/to/file
    Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=com.sun.jdmk -DartifactId=jmxtools -Dversion=1.2.1 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
    Path to dependency:
    1) shift:sample:jar:1.0-SNAPSHOT
    2) com.sun.jdmk:jmxtools:jar:1.2.1
    3) javax.management:jmxri:jar:1.2.1
    Try downloading the file manually from:
    http://java.sun.com/products/JavaManagement/download.html
    Then, install it using the command:
    mvn install:install-file -DgroupId=javax.management -DartifactId=jmxri -Dversion=1.2.1 -Dpackaging=jar -Dfile=/path/to/file
    Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=javax.management -DartifactId=jmxri -Dversion=1.2.1 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
    Path to dependency:
    1) shift:sample:jar:1.0-SNAPSHOT
    2) javax.management:jmxri:jar:1.2.1
    3 required artifacts are missing.
    for artifact:
    shift:sample:jar:1.0-SNAPSHOT
    from the specified remote repositories:
    maven2-repository.dev.java.net (http://download.java.net/maven/2/),
    central (http://repo1.maven.org/maven2)
    -- this is what is in my maven repo
    $ ls -alR jmx
    jmx:
    total 0
    drwx------+ 3 roger None 0 Feb 20 01:20 .
    drwx------+ 4 roger None 0 Feb 20 01:20 ..
    drwx------+ 3 roger None 0 Feb 28 22:25 jmxri
    jmx/jmxri:
    total 1
    drwx------+ 3 roger None 0 Feb 28 22:25 .
    drwx------+ 3 roger None 0 Feb 20 01:20 ..
    drwx------+ 2 roger None 0 Feb 28 22:25 1.2.1
    -rwx------+ 1 roger None 292 Feb 28 22:25 maven-metadata-local.xml
    jmx/jmxri/1.2.1:
    total 18
    drwx------+ 2 roger None 0 Feb 28 22:25 .
    drwx------+ 3 roger None 0 Feb 28 22:25 ..
    -rwx------+ 1 roger None 13236 Feb 28 22:25 jmxri-1.2.1.jar
    -rwx------+ 1 roger None 155 Feb 20 01:20 jmxri-1.2.1.pom
    -rwx------+ 1 roger None 40 Feb 20 01:20 jmxri-1.2.1.pom.sha1

    I am very puzzled at what you write. If I go to http://java.sun.com/products/JavaManagement/download.html I see a section titled SPECIFICATIONS and a later section titled BINARY DOWNLOAD. In this second section I can download the implementations of the JMX and JMX Remote APIs.
    What you write might be true of the JMS API, but the JMS and JMX APIs are completely unrelated (despite their similar names).
    &Eacute;amonn McManus -- JMX Spec Lead -- http://weblogs.java.net/blog/emcmanus

  • Checksum validation failed for some Xtext Maven artifacts and corresponding problems

    Hi
    I've been noticing some Checksum validation warnings during the build
    for some Xtext Maven artifacts, e.g.,
    [INFO] Downloading:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [INFO] Downloading:
    https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [WARNING] Checksum validation failed: Checksum validation failed,
    expected 872cc77705d19d8f59e22b784036430356246697 but is
    56dfb41a5a16e797f052660debc509bd44d10880 for
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    [INFO] Downloaded:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    (649 B at 3.2 KB/sec)
    [INFO] Downloaded:
    https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/xtext/org.eclipse.xtext.util/maven-metadata.xml
    (380 B at 0.9 KB/sec)
    [INFO] Downloading:
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/2.8.3/org.eclipse.xtext.util-2.8.3.pom
    [WARNING] Checksum validation failed: Checksum validation failed,
    expected 25d651226b11727df3b99a6325e989f4e08c82ee but is
    453418e3e74ace9b69e7c34094ee712f81c55991 for
    https://repo.maven.apache.org/maven2/org/eclipse/xtext/org.eclipse.xtext.util/2.8.3/org.eclipse.xtext.util-2.8.3.pom
    similar for org.eclipse.xtext.dependencies, org.eclipse.xtext.xbase.lib
    This hasn't prevented the build from completing so far; but now that I
    started to play with some mwe2 custom generator fragments in my DSL,
    when running the mwe2 workflow during the build it fails with such
    exception, which I guess might be related:
    java.lang.SecurityException: class
    "org.eclipse.xtext.util.XtextSwitch"'s signer information does not match
    signer information of other classes in the same package
    can it be related?
    thanks in advance
    Lorenzo
    Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
    HOME: http://www.lorenzobettini.it
    Xtext Book:
    http://www.packtpub.com/implementing-domain-specific-languages-with-xtext-and-xtend/book

    We have the same problem for weeks now. Seems, that there is really a wrong checksum in the maven repo.

  • Docs on integration testing

    please send me docs on integration testing with atleast one complete scenerio

    Hi Karunakar,
    Integration testing - It is the phase of software testing in which individual software modules are combined and tested as a group. It follows unit testing and precedes system testing.
    Integration testing takes as its input modules that have been checked out by unit testing, groups them in larger aggregates, applies tests defined in an Integration test plan to those aggregates, and delivers as its output the integrated system ready for system testing.
    Unit testing - One part or the whole part of transfer rules , update rules, etc..
    Integration testing - The whole data flow cycle to be tested
    This link will give u detailed description
    http://en.wikipedia.org/wiki/Software_testing
    Stress testing in BI..
    /people/mike.curl/blog/2006/12/05/how-to-stress-test-bw-the-easy-way
    REFER THIS REG CATT
    http://help.sap.com/saphelp_erp2005/helpdata/en/d7/e21221408e11d1896b0000e8322d00/frameset.htm
    Check this doc on Unit Testing
    unit testing
    Look at the threads below :
    Testing Methods in BW
    Unit Testing in BW
    How to do testing in BW
    Hi...BW testing
    Re: Hi...BW testing
    Hi...BW testing
    Pls refer following links...
    http://help.sap.com/saphelp_nw04/helpdata/en/d7/e210c8408e11d1896b0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/aba235413911d1893d0000e8323c4f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2123b408e11d1896b0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/d7/e2123b408e11d1896b0000e8322d00/frameset.htm
    Hope it helps you!
    ****Assign Points If Helpful****
    Regards,
    Ravikanth

  • Patch Release: Berkeley DB Java Edition 4.0.117

    Berkeley DB Java Edition 4.0.117
    http://www.oracle.com/us/products/database/berkeley-db/index.html
    http://www.oracle.com/technetwork/database/berkeleydb/overview/index.html
    http://www.oracle.com/technetwork/database/berkeleydb/overview/persistence-160890.html
    http://www.oracle.com/technetwork/database/berkeleydb/overview/index-093405.html
    Berkeley DB Java Edition 4.0.117 is a patch release consisting of many important fixes. We strongly recommend that users of the 4.0.x upgrade to this release. Those using 4.1.x need not be concerned with this patch release.
    The critical patch fixes:
    [#19422] - Fixes a bug that prevents recovery if CacheMode.EVICT_BIN is used.
    The complete list of changes is in the change log page.
    http://download.oracle.com/otndocs/products/berkeleydb/html/je/je-40117-changelog.html
    Product documentation can be found at:
    http://download.oracle.com/docs/cd/E17277_02/html/index.html
    Download the source code including the pre-compiled JAR, complete documentation, and the entire test suite as a single package.
    http://download.oracle.com/berkeley-db/je-4.0.117.zip
    http://download.oracle.com/berkeley-db/je-4.0.117.tar.gz
    Common questions are addressed in our FAQ that you can find here:
    http://www.oracle.com/technetwork/database/berkeleydb/je-faq-096044.html
    Then join OTN and participate in the Berkeley DB JE Support Forum discussions. Our engineering and support staff are highly active on these forums, if you have questions please ask them there first.
    Berkeley DB Java Edition
    For further information, or questions about licensing and sales of JE, please contact us at:
    mailto:[email protected]
    Thank you for your support of Berkeley DB Java Edition.

    Hi Kristoffer,
    We have never updated Maven central -- I think someone else, perhaps who is reading the forum, did that for 5.0.73.  We should update it, but we don't quite have our act together on that.  Hopefully we'll have more info on that soon, but for now you'll need to just copy the jar file or use the Oracle maven repo.
    You should definitely read the release notes and the change log, and decide whether to upgrade.
    BDB has both a commercial and an OSS license.  Due to Oracle policy BDB does not have some of the things you might expect from an OSS project:
    - bug system is not exposed
    - roadmap is not published
    - code contributions are fairly rare, mostly due to the nature of the code -- it's a database engine, and is fairly difficult to change casually.
    What other questions about the process do you have?  I wasn't sure exactly what you wanted to know.
    --mark

  • Berkeley DB Java Edition 6.0.11

    Hi
    I have used the je 5.0.73 dependency from Maven Central but just noticed that there is a 6.0.11 version provided from Oracle that is not available from Maven Central: http://download.oracle.com/maven/com/sleepycat/je/6.0.11/je-6.0.11.pom.
    This pom lacks a source jar that I could only find in the tar.gz distribution on the Download page. Is there a reason why version 6 is not available in Maven Central?
    What are the changes between 5 and 6? Should I upgrade?
    Also can someone shed some light on the development process for je, i.e. releases, commercial, open source, similar concerns?
    Cheers,
    -Kristoffer

    Hi Kristoffer,
    We have never updated Maven central -- I think someone else, perhaps who is reading the forum, did that for 5.0.73.  We should update it, but we don't quite have our act together on that.  Hopefully we'll have more info on that soon, but for now you'll need to just copy the jar file or use the Oracle maven repo.
    You should definitely read the release notes and the change log, and decide whether to upgrade.
    BDB has both a commercial and an OSS license.  Due to Oracle policy BDB does not have some of the things you might expect from an OSS project:
    - bug system is not exposed
    - roadmap is not published
    - code contributions are fairly rare, mostly due to the nature of the code -- it's a database engine, and is fairly difficult to change casually.
    What other questions about the process do you have?  I wasn't sure exactly what you wanted to know.
    --mark

Maybe you are looking for

  • Query on PlaceHolder column

    Hi everyone, I am pretty new to oracle reports, if you think this question is too basic, please bear with me.I also tried searching the forum and looked into documentation. Why should we use a formula column to assign value to a placeholder column, w

  • EPM 11.1.2 - epmsystem Configuration Manager service fails to start

    OracleEpmSystemc_oracle_middleware_user_projects_epmsystem1ConfigurationManager fails to start. I do not know how I am getting affected because everything else works fine. I have Essbase , Studio, Planning, EAS installed and all of them work fine. Do

  • OSB- Any Soap type Proxy service URL issue.

    Hi, There is an issue which i am facing and stuggling with it for sometime :( Requirement - Using OSB 11g i had created 12 different services based on WSDLs provided by the client and all of them are working fine.However the client wanted a OSB route

  • MAXL Disk Volume

    "display disk volume 'application'.'database';<BR><BR>What are the preconditions that need to exist for this MAXL statment to return rows? There are no predefined volumes in my essbase installations. I want to get the same results as you do when you

  • Storage location value in Tcode VA01

    Hello experts,                        I have done the enhancement for 'VA01'. According to my requirement i have to give some values to storage location for a particular order type. e.g if my order type is 'zwxl' my storage location should be '0001'.