Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 268406
Collapse All | Expand All

(-)h2/src/tools/org/h2/build/Build.java (-5 / +5 lines)
Lines 145-153 public class Build extends BuildBase { Link Here
145
        mkdir("temp");
145
        mkdir("temp");
146
        download();
146
        download();
147
        String classpath = "temp" +
147
        String classpath = "temp" +
148
                File.pathSeparator + "ext/servlet-api-2.4.jar" +
148
                File.pathSeparator + "ext/servlet-api.jar" +
149
                File.pathSeparator + "ext/" + getLuceneJar() +
149
                File.pathSeparator + "ext/" + "lucene.jar" +
150
                File.pathSeparator + "ext/slf4j-api-1.5.0.jar" +
150
                File.pathSeparator + "ext/slf4j-api.jar" +
151
                File.pathSeparator + "ext/org.osgi.core-1.2.0.jar" +
151
                File.pathSeparator + "ext/org.osgi.core-1.2.0.jar" +
152
                File.pathSeparator + System.getProperty("java.home") + "/../lib/tools.jar";
152
                File.pathSeparator + System.getProperty("java.home") + "/../lib/tools.jar";
153
        FileList files;
153
        FileList files;
Lines 222-228 public class Build extends BuildBase { Link Here
222
     * dependencies. The database can be used without any dependencies.
222
     * dependencies. The database can be used without any dependencies.
223
     */
223
     */
224
    public void download() {
224
    public void download() {
225
        download("ext/servlet-api-2.4.jar",
225
        /*download("ext/servlet-api-2.4.jar",
226
                "http://repo1.maven.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar",
226
                "http://repo1.maven.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar",
227
                "3fc542fe8bb8164e8d3e840fe7403bc0518053c0");
227
                "3fc542fe8bb8164e8d3e840fe7403bc0518053c0");
228
        if (getLuceneVersion() == 3) {
228
        if (getLuceneVersion() == 3) {
Lines 236-242 public class Build extends BuildBase { Link Here
236
        }
236
        }
237
        download("ext/slf4j-api-1.5.0.jar",
237
        download("ext/slf4j-api-1.5.0.jar",
238
                "http://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.5.0/slf4j-api-1.5.0.jar",
238
                "http://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.5.0/slf4j-api-1.5.0.jar",
239
                "b2df265d02350ecfe87b6c1773c7c4fab2b33505");
239
                "b2df265d02350ecfe87b6c1773c7c4fab2b33505");*/
240
        download("ext/org.osgi.core-1.2.0.jar",
240
        download("ext/org.osgi.core-1.2.0.jar",
241
                "http://repo1.maven.org/maven2/org/apache/felix/org.osgi.core/1.2.0/org.osgi.core-1.2.0.jar",
241
                "http://repo1.maven.org/maven2/org/apache/felix/org.osgi.core/1.2.0/org.osgi.core-1.2.0.jar",
242
                "3006beb1ca6a83449def6127dad3c060148a0209");
242
                "3006beb1ca6a83449def6127dad3c060148a0209");

Return to bug 268406