Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6974933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:18:06+00:00 2026-05-27T17:18:06+00:00

is there JRE 1.6 available in some public Maven repository we could proxy in

  • 0

is there JRE 1.6 available in some public Maven repository we could proxy in our Nexus?

if not, can somebody please provide a hint on how to deploy JRE to a Maven repository?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:18:07+00:00Added an answer on May 27, 2026 at 5:18 pm

    here’s the solution I found:

    • Zip the JREs (jre-linux32-1.6.0.23.zip and jre-jre-win32-1.6.0.zip in
      my case).
    • Upload them to your Nexus repository through web UI (or deploy manually with “mvn”), set the artifact parameters: groupid=”oracle” artifactid=”jre-win32″ / “jre-linux32”, set the
      right version and packaging type “zip”.
    • modify your pom.xml to download and unzip the dependency during the build (I bound it to “prepare-package” phase).

      <build>
          <plugins>
              <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-dependency-plugin</artifactId>
                  <version>2.4</version>
                  <executions>
                      <execution>
                          <id>copy</id>
                          <phase>prepare-package</phase>
                          <goals>
                              <goal>unpack</goal>
                          </goals>
                          <configuration>
                              <artifactItems>
                                  <artifactItem>
                                      <groupId>oracle</groupId>
                                      <artifactId>jre-win32</artifactId>
                                      <version>1.6.0.23</version>
                                      <type>zip</type>
                                      <overWrite>false</overWrite>
                                      <outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
                                      <!--<destFileName>optional-new-name.jar</destFileName>-->
                                  </artifactItem>
                                  <artifactItem>
                                      <groupId>oracle</groupId>
                                      <artifactId>jre-linux32</artifactId>
                                      <version>1.6.0.23</version>
                                      <type>zip</type>
                                      <overWrite>false</overWrite>
                                      <outputDirectory>${project.build.directory}/alternateLocation</outputDirectory>
                                      <!--<destFileName>optional-new-name.jar</destFileName>-->
                                  </artifactItem>
                              </artifactItems>
                              <outputDirectory>${project.build.directory}/wars</outputDirectory>
                              <overWriteReleases>false</overWriteReleases>
                              <overWriteSnapshots>true</overWriteSnapshots>
                          </configuration>
                      </execution>
                  </executions>
              </plugin>
          </plugins>
      </build>
      

    that’s it. The JRE will be downloaded and extracted to
    target\alternateLocation folder.

    you can use “copy” goal instead of “unpack” if you want to only copy the ZIP files without extracting them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I downloaded Liferay Tomcat bundle and I can see that there is a JRE
There are two varieties of JRE available. Java VM: IBM vs. Sun . Is
I would like to make some request-wide data available in my app engine application.
There are a lot of jdk and jre in my program files . I
Is there an option to build java code to run on JRE 1.5 when
Is there any way that I can run my war file in jetty-runner using
We have been having issues with our ColdFusion server and getting the JRE configured
Suppose I want to write an application that is targeting some JRE version (e.g.
Is there a way to run an applet in a browser without JRE or
i need to use tools.jar in my project, but there is not much sense

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.