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

  • SEARCH
  • Home
  • 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 989573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:48:53+00:00 2026-05-16T05:48:53+00:00

I want to add to a jar file some resources. I profiled it and

  • 0

I want to add to a jar file some resources. I “profiled” it and added them in the build section.

But the resources aren’t in the final jar file.

Here it goes the profile section of my pom.xml:

<profile>
  <id>myProfile</id>
  <build>
    <finalName>name</finalName>
    <resources>
      <resource>
        <targetPath>.</targetPath>
        <filtering>false</filtering>
        <directory>${basedir}/profiles/myFolder</directory>
        <includes>
          <include>file.txt</include>
          <include>file.xml</include>
        </includes>
      </resource>
    </resources>
  </build>
</profile>

And here the command I issue:

mvn clean install -PmyProfile

What’s wrong?

  • 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-16T05:48:53+00:00Added an answer on May 16, 2026 at 5:48 am

    Your POM snippet looks globally fine and I cannot reproduce your problem. Here is the pom.xml I used:

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.stackoverflow</groupId>
      <artifactId>Q3459013</artifactId>
      <version>1.0-SNAPSHOT</version>
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      <profiles>
        <profile>
          <id>myProfile</id>
          <build>
            <finalName>name</finalName>
            <resources>
              <resource>
                <directory>${basedir}/profiles/myFolder</directory>
                <filtering>false</filtering>
                <includes>
                  <include>file.txt</include>
                  <include>file.xml</include>
                </includes>
              </resource>
            </resources>
          </build>
        </profile>
      </profiles>
    </project>
    

    With the following project structure:

    $ tree .
    .
    ├── pom.xml
    ├── profiles
    │   └── myFolder
    │       ├── file.txt
    │       └── file.xml
    └── src
        ├── main
        │   └── java
        │       └── com
        │           └── stackoverflow
        │               └── App.java
        └── test
            └── java
                └── com
                    └── stackoverflow
                        └── AppTest.java
    
    11 directories, 5 files
    

    And here is what I get:

    $ mvn clean install -PmyProfile
    ...
    $ cd target
    $ tree .
    .
    ├── classes
    │   ├── com
    │   │   └── stackoverflow
    │   │       └── App.class
    │   ├── file.txt
    │   └── file.xml
    ├── maven-archiver
    │   └── pom.properties
    ├── name.jar
    ├── surefire-reports
    │   ├── com.stackoverflow.AppTest.txt
    │   └── TEST-com.stackoverflow.AppTest.xml
    └── test-classes
        └── com
            └── stackoverflow
                └── AppTest.class
    $ jar xvf name.jar 
      created: META-INF/
     inflated: META-INF/MANIFEST.MF
      created: com/
      created: com/stackoverflow/
     inflated: file.xml
     inflated: com/stackoverflow/App.class
     inflated: file.txt
      created: META-INF/maven/
      created: META-INF/maven/com.stackoverflow/
      created: META-INF/maven/com.stackoverflow/Q3459013/
     inflated: META-INF/maven/com.stackoverflow/Q3459013/pom.xml
     inflated: META-INF/maven/com.stackoverflow/Q3459013/pom.properties
    

    Works as expected.

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

Sidebar

Related Questions

I have a java application (jar file) and I want to add some sort
I want add some resource files (non-code text-based files) to the jar file in
I want to add a external third party jar file in the inbuilt android
I want to create registry key through java program to add the jar file
I want to add some compiled classes (.class files) to directories(packages) in current Jar
I want to add a jar file through the systemPath from the local file-system
I want to build a .jar file with dependencies in maven. Unfortunately I have
I want add UIGestureRecognizerDelegate to UIWebView,but failed. if [self.view addsubView:webView]; So UIWebView is ok,but
I have a website built with ASP.NET (3.5) and want add some level of
I want to add a new feature, move2SDcard available only on API8 (Android2.2) but

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.