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 7637751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T08:00:57+00:00 2026-05-31T08:00:57+00:00

I have a simple Jenkins build that pulls down my project from github, builds

  • 0

I have a simple Jenkins build that pulls down my project from github, builds it and reports the status of the build.

I want to have configure Jenkins to publish the resulting JAR file to a TARGET-SNAPSHOTS branch in my project.

Currently my project .gitignore’s /target/*

I was looking at GitPublisher but this appears to push the entire build out, rather than just the jar file.

Thoughts on the best way to do this/if this is possible?

Thanks

  • 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-31T08:00:58+00:00Added an answer on May 31, 2026 at 8:00 am

    Since you’re using maven and you said the github downloads section is acceptable, you can use the github downloads plugin – https://github.com/github/maven-plugins. I use this for deploying the Riak java client to our downloads section as part of the build.

    In your ~/.m2/settings.xml you need:

    <settings>
      <profiles>
        <profile>
          <id>github</id>
          <properties>
            <github.global.userName>YourGithubUser</github.global.userName>
            <github.global.password>YourGithubPass</github.global.password>
          </properties>
        </profile>
      </profiles>
      <activeProfiles>
        <activeProfile>github</activeProfile>
      </activeProfiles>
    </settings>
    

    Then in your project’s .pom something like:

    <profile>
      <id>githubUpload</id>
      <activation>
        <property>
          <name>github.downloads</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>com.github.github</groupId>
            <artifactId>downloads-maven-plugin</artifactId>
            <version>0.4</version>
            <configuration>
              <description>${project.version} release of ${project.name}</description>
              <override>false</override>               
              <includeAttached>true</includeAttached>
            </configuration>
            <executions>
              <execution>
                <goals>
                  <goal>upload</goal>
                </goals>
                <phase>install</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
    

    (I’m doing it as part of the install phase – you can do however you’d like)

    Then simply add -Dgithub.downloads=true to your maven build –

    mvn install -Dgithub.downloads=true

    The web page for the plugin lists all the options for including/excluding files, etc.

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

Sidebar

Related Questions

I have Jenkins installed in Linux and I want to run the build(s) under
I have simple models with generic relations from this example at the Django Project
I have simple win service, that executes few tasks periodically. How should I pass
I have simple SSIS package which reads data from flat file and insert into
I have simple SSIS package where I import data from flat file into SQL
I have simple WinForms application where modifying Windows Registry. The problem is that in
I have a table that lists people and all their contact info. I want
Trying to run a simple svn list svn+ssh://... from within jenkins on os X,
I have simple CI (CodeIgniter) code. what I want to do is: when I
i have simple QStandardItemModel that holds the date to show in QTreeview when i

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.