Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[dash-dev] Athena CBI not seeing javax* classes

First off, I want to say thanks for adding "repositoryURLs" as an option to Athena. That's what I'm talking about.

Ok, now here's my problem. I'm trying to build and get javax* import related errors:

 [build]     [mkdir] Created dir: /private/tmp/build/N201001141505/eclipse/plugins/org.eclipse.jgit/@dot
    [build]     [javac] Compiling 300 source files to /private/tmp/build/N201001141505/eclipse/plugins/org.eclipse.jgit/@dot
    [build]     [javac] ----------
    [build]     [javac] 1. ERROR in /private/tmp/build/N201001141505/eclipse/plugins/org.eclipse.jgit/src/org/eclipse/jgit/transport/AmazonS3.java (at line 72)
    [build]     [javac]     import javax.crypto.Mac;
    [build]     [javac]            ^^^^^^^^^^^^
    [build]     [javac] The import javax.crypto cannot be resolved
    [build]     [javac] ----------
    [build]     [javac] 2. ERROR in /private/tmp/build/N201001141505/eclipse/plugins/org.eclipse.jgit/src/org/eclipse/jgit/transport/AmazonS3.java (at line 73)
    [build]     [javac]     import javax.crypto.spec.SecretKeySpec;
    [build]     [javac]            ^^^^^^^^^^^^
    [build]     [javac] The import javax.crypto cannot be resolved

These generally are provided by the system bundle that exports these packages which come from the VM.

Any special way Athena is kicking off PDE Build that I should know about?

--
Cheers,

Chris Aniszczyk
http://aniszczyk.org

Back to the top